@charset "UTF-8";

/* =========================
   RECRUIT – rc- prefix
========================= */

/* ---- Hero ---- */

.rc-hero {
  padding: 56px 0 80px;
}

.rc-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.rc-hero__copy {
  display: grid;
  gap: 24px;
}

.rc-hero__copy h1 {
  font-size: clamp(26px, 4vw, 56px);
}

.rc-hero__copy p {
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--muted);
  max-width: 52ch;
}

.rc-hero__visual {
  min-height: 520px;
  border-radius: 32px;
  box-shadow: var(--shadow);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(33,29,26,.03), rgba(33,29,26,.10)),
    url("./../recruit/images/recruit.jpg") center/cover;
}

/* ---- Points ---- */

.rc-points__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.rc-point {
  display: grid;
  gap: 14px;
}

.rc-point__num {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  color: var(--accent-deep);
  opacity: .55;
}

.rc-point h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.rc-point p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
}

/* ---- Jobs section bg ---- */

.rc-jobs {
  background:
    radial-gradient(circle at 80% 10%, rgba(205,184,166,.13), transparent 38%),
    var(--bg-soft);
}

/* ---- Tab buttons ---- */

.rc-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 2px;
}

.rc-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 32px;
  border: 1px solid var(--line);
  border-bottom: none;
  border-radius: 14px 14px 0 0;
  background: rgba(255,255,255,.5);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--muted);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.rc-tab:hover {
  background: rgba(255,255,255,.82);
  color: var(--text);
}

.rc-tab--active {
  background: rgba(255,255,255,.92);
  color: var(--text);
  border-color: var(--line-strong);
  z-index: 1;
}

.rc-tab--active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,.92);
}

/* ---- Tab panel ---- */

.rc-tab-panel {
  border: 1px solid var(--line-strong);
  border-radius: 0 18px 18px 18px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: none;
}

.rc-tab-panel--active {
  display: block;
}

/* ---- Accordion ---- */

.rc-accordion {
  border-bottom: 1px solid var(--line);
}

.rc-accordion:last-child {
  border-bottom: none;
}

.rc-accordion__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .2s ease;
}

.rc-accordion__head:hover {
  background: rgba(205,184,166,.08);
}

.rc-accordion__head[aria-expanded="true"] {
  background: rgba(205,184,166,.12);
}

.rc-accordion__title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  flex: 1;
  min-width: 0;
}

.rc-accordion__tags {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.rc-accordion__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.rc-accordion__salary {
  font-size: 15px;
  color: var(--accent-deep);
  white-space: nowrap;
  margin-left: auto;
  padding-right: 8px;
	font-weight: 600;
}

/* + / × icon */

.rc-accordion__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.7);
  position: relative;
  transition: background .2s ease, transform .3s ease;
}

.rc-accordion__icon::before,
.rc-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--text);
  transform: translate(-50%, -50%);
  transition: transform .3s ease, opacity .3s ease;
}

.rc-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.rc-accordion__head[aria-expanded="true"] .rc-accordion__icon {
  background: var(--accent);
  transform: rotate(45deg);
}

/* body */

.rc-accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}

/* ---- Detail content inside accordion ---- */

.rc-detail {
  padding: 0 28px 32px;
  display: grid;
  gap: 24px;
}

.rc-detail__lead {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  padding: 18px 20px;
  background: rgba(205,184,166,.10);
  border-left: 3px solid var(--accent-deep);
  border-radius: 0 8px 8px 0;
}

.rc-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}

.rc-dl {
  display: grid;
  gap: 0;
}

.rc-dl div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 8px 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  font-size: 14px;
}

.rc-dl div:first-child {
  border-top: 1px solid var(--line);
}

.rc-dl dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 2px;
}

.rc-dl dd {
  margin: 0;
  color: var(--text);
  line-height: 1.75;
}

.rc-dl dd small {
  font-size: 12px;
  color: var(--muted);
}

.rc-dl dd strong {
  color: var(--accent-deep);
}

/* voice */

.rc-detail__voice {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  background: rgba(255,255,255,.6);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.rc-voice__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.rc-detail__voice p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  margin: 0;
}

/* CTA inside detail */

.rc-detail__cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.rc-tel-note {
  font-size: 13px;
  color: var(--muted);
}

.rc-tel-note a {
  color: var(--text);
  font-weight: 500;
}

/* tags */

.rc-tag {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--muted);
  white-space: nowrap;
}

.rc-tag--role {
  background: rgba(205,184,166,.22);
  color: var(--accent-deep);
  border-color: rgba(170,143,122,.28);
}

.rc-tag--mid {
  background: rgba(190,220,190,.32);
  color: #3d7a3d;
  border-color: rgba(90,160,90,.25);
}

.rc-tag--new {
  background: rgba(190,205,240,.32);
  color: #3a5aaa;
  border-color: rgba(90,120,200,.25);
}

.rc-tag--part {
  background: rgba(230,210,175,.32);
  color: #8a6020;
  border-color: rgba(180,140,70,.25);
}

/* ---- Contact ---- */

.rc-contact__ttl {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 400;
  margin-top: 14px;
}

.rc-tel-grid {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.rc-tel-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.rc-tel-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 60px;
}

.rc-tel-big {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text);
  text-decoration: none;
  transition: color .2s ease;
}

.rc-tel-big:hover {
  color: var(--accent-deep);
}

.rc-hours {
  margin-top: 14px !important;
  font-size: 13px;
  color: var(--muted);
}

/* ---- Responsive ---- */

@media (max-width: 1080px) {
  .rc-hero__inner {
    grid-template-columns: 1fr;
  }

  .rc-points__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .rc-accordion__head {
    padding: 18px 20px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .rc-accordion__title {
    gap: 8px 10px;
  }

  .rc-accordion__salary {
    margin-left: 0;
    font-size: 15px;
  }

  .rc-detail {
    padding: 0 20px 24px;
  }

  .rc-detail__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .rc-dl:last-child div:first-child {
    border-top: none;
  }

  .rc-detail__cta .btn {
    width: 100%;
  }

  .rc-tab {
    padding: 0 20px;
    font-size: 17px;
  }
}

@media (max-width: 640px) {
  .rc-hero__visual {
    min-height: 300px;
  }

  .rc-accordion__name {
    font-size: 14px;
    white-space: normal;
  }

  .rc-tab {
    padding: 0 14px;
    font-size: 15px;
    height: 42px;
  }
	
	.rc-tel-big {
	  font-size: 20px;
	}

}
