/* ============================================================
   DWS — sections (concept, experience, next-dinner, faq, cta, footer, apply overlay)
   ============================================================ */

/* ---------- CONCEPT ---------- */
.concept {
  background: var(--paper);
  overflow: hidden;
}
.concept-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.concept-quote {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: 0;
  margin-bottom: 56px;
}
.concept-quote .lead {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  vertical-align: super;
  color: var(--z-orange);
  margin-right: 8px;
  text-transform: uppercase;
  font-style: normal;
}
.concept-body p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 22px;
  max-width: 480px;
}
.concept-body p:last-child { margin-bottom: 0; }

.concept-photo {
  position: relative;
  z-index: 3;
  aspect-ratio: 4/5;
  overflow: hidden;
  transition: transform 1.2s var(--ease-soft);
}
.concept-photo .ph {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: transform 1.6s var(--ease-soft);
  will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  .concept-photo:hover .ph { transform: scale(1.0); }
}
.concept-photo .stamp {
  position: absolute;
  bottom: 18px; left: 18px;
  width: 112px; height: 112px;
  border-radius: 50%;
  background: rgba(253, 250, 243, 0.9);
  border: 1px solid rgba(21, 17, 13, 0.16);
  box-shadow: 0 16px 34px rgba(21, 17, 13, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ink);
  display: grid;
  place-items: center;
  text-align: center;
  z-index: 2;
}
.concept-photo .stamp::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(200, 74, 38, 0.42);
  border-radius: inherit;
}
.concept-photo .stamp img {
  position: absolute;
  top: 21px;
  left: 50%;
  z-index: 1;
  width: 30px;
  transform: translateX(-50%);
  filter: drop-shadow(0 7px 10px rgba(200, 74, 38, 0.18));
}
.concept-photo .stamp span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 18px;
  z-index: 1;
  font-family: var(--f-mono);
  font-size: 7px;
  letter-spacing: 0.18em;
  line-height: 1.25;
  text-transform: uppercase;
  color: rgba(21, 17, 13, 0.72);
}

@media (min-width: 901px) {
  .concept {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 80px;
    row-gap: 56px;
    align-items: center;
    align-content: center;
    min-height: min(980px, calc(100svh - 40px));
  }
  .concept .chapter-head {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    margin-bottom: 0;
  }
  .concept-body {
    display: contents;
  }
  .concept-body > div:first-child {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
  }
  .concept-photo {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }
}

@media (max-width: 768px) {
  .concept-body { grid-template-columns: 1fr; gap: 48px; }
  .concept-photo .stamp {
    bottom: 14px;
    left: 14px;
    width: 96px;
    height: 96px;
  }
  .concept-photo .stamp img { top: 18px; width: 26px; }
  .concept-photo .stamp span { font-size: 6px; bottom: 15px; }
}

/* ---------- EXPERIENCE PILLARS ---------- */
.experience {
  background: var(--ivory);
  border-top: 1px solid var(--hairline);
}
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline);
}
.pillar {
  padding: 56px 32px 64px;
  position: relative;
  border-right: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 18px;
  cursor: default;
  transition: background .5s var(--ease-soft);
}
.pillar:last-child { border-right: none; }
@media (hover: hover) and (pointer: fine) {
  .pillar:hover { background: var(--paper-2); }
}
.pillar .num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--z-orange);
}
.pillar .name {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-top: 36px;
  position: relative;
}
.pillar .name::after {
  content: "";
  position: absolute;
  left: 0; bottom: -14px;
  width: 24px; height: 1px;
  background: var(--ink);
  transition: width .5s var(--ease-soft);
}
@media (hover: hover) and (pointer: fine) {
  .pillar:hover .name::after { width: 56px; }
}
.pillar .body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-top: 24px;
}

@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar:nth-child(2) { border-right: none; }
  .pillar:nth-child(1), .pillar:nth-child(2) { border-bottom: 1px solid var(--hairline); }
}
@media (max-width: 560px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--hairline); }
}

/* ---------- EXPERIENCE PHOTO STRIP ---------- */
.experience-photo-strip {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  height: 320px;
  border-top: 1px solid var(--hairline);
  overflow: hidden;
}
.exp-ph {
  background-size: cover;
  background-position: center;
  transition: transform 1.4s var(--ease-soft);
}
@media (hover: hover) and (pointer: fine) {
  .exp-ph:hover { transform: scale(1.03); }
}

@media (max-width: 720px) {
  .experience-photo-strip { height: 220px; }
}
@media (max-width: 480px) {
  .experience-photo-strip {
    grid-template-columns: 1fr;
    height: auto;
  }
  .exp-ph {
    min-height: 220px;
  }
}

/* ---------- SHARING BOARDS ---------- */
.boards {
  background:
    radial-gradient(circle at 14% 22%, rgba(200, 74, 38, 0.08), transparent 28%),
    linear-gradient(180deg, var(--paper) 0%, var(--ivory) 100%);
  border-top: 1px solid var(--hairline);
  overflow: hidden;
}
.boards-head {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 72px;
  align-items: end;
}
.boards-head .kicker {
  align-self: start;
}
.boards-head p {
  max-width: 520px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}
.boards-stage {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--hairline-strong);
  border-bottom: 1px solid var(--hairline);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-editorial), transform 1s var(--ease-editorial);
}
.boards-stage.in {
  opacity: 1;
  transform: translateY(0);
}
.board-visual {
  position: relative;
  z-index: 3;
  margin: 0;
  aspect-ratio: 16 / 7;
  min-height: 420px;
  max-height: 620px;
  overflow: hidden;
  background: var(--ink);
}
.board-visual::before {
  display: none;
}
.board-visual::after {
  display: none;
}
.board-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 58%;
  filter: none;
  transform: scale(1.02);
  transition: transform 1.8s var(--ease-editorial);
}
@media (hover: hover) and (pointer: fine) {
  .board-visual:hover img {
    transform: scale(1.055);
  }
}
.board-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--hairline);
}
.board-item {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 28px;
  min-height: 252px;
  padding: 38px 34px 42px;
  border-right: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}
.board-item:last-child {
  border-right: none;
}
.board-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateX(-101%);
  transition: transform .75s var(--ease-editorial);
  z-index: 0;
}
.board-item > * {
  position: relative;
  z-index: 1;
}
.board-index {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--z-orange);
  transition: color .5s var(--ease-soft);
}
.board-item h3 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 0.94;
  color: var(--ink);
  transition: color .5s var(--ease-soft), transform .7s var(--ease-editorial);
}
.board-item p {
  max-width: 620px;
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  transition: color .5s var(--ease-soft), transform .7s var(--ease-editorial);
}
@media (hover: hover) and (pointer: fine) {
  .board-item:hover::before {
    transform: translateX(0);
  }
  .board-item:hover h3,
  .board-item:hover p {
    color: var(--linen);
    transform: translateX(10px);
  }
  .board-item:hover .board-index {
    color: var(--brass-soft);
  }
}
.reserve-strip {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 48px;
  align-items: center;
  padding: 34px 0 0;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1s var(--ease-editorial), transform 1s var(--ease-editorial);
}
.reserve-strip.in {
  opacity: 1;
  transform: translateY(0);
}
.reserve-strip > div {
  display: grid;
  gap: 10px;
}
.reserve-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--z-orange);
}
.reserve-strip strong {
  font-family: var(--f-display);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
}
.reserve-strip p {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 980px) {
  .boards-head,
  .reserve-strip {
    grid-template-columns: 1fr;
  }
  .boards-head {
    gap: 24px;
  }
  .board-list {
    grid-template-columns: 1fr;
  }
  .board-item {
    min-height: auto;
    border-right: none;
    border-bottom: 1px solid var(--hairline);
  }
  .board-item:last-child {
    border-bottom: none;
  }
}
@media (max-width: 880px) {
  .boards {
    display: flex;
    flex-direction: column;
  }
  .boards-head {
    order: 2;
  }
  .boards-stage {
    display: contents;
  }
  .board-visual {
    order: 1;
    margin-left: -22px;
    margin-right: -22px;
  }
  .board-list {
    order: 3;
  }
  .reserve-strip {
    order: 4;
  }
}
@media (max-width: 620px) {
  .board-visual {
    aspect-ratio: 4 / 5;
    min-height: 0;
    max-height: none;
  }
  .board-visual img {
    object-position: 54% 64%;
  }
  .board-item {
    gap: 18px;
    padding: 30px 0;
  }
  .board-item h3 {
    font-size: clamp(34px, 12vw, 52px);
  }
  .reserve-strip {
    gap: 22px;
  }
}

/* ---------- NEXT DINNER ---------- */
.next-dinner {
  background: var(--ink);
  color: var(--linen);
  overflow: hidden;
}
.next-dinner .chapter-num { color: var(--brass-soft); border-color: var(--brass-soft); }
.next-dinner .chapter-title { color: var(--linen); }

.dinner-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: stretch;
}
.dinner-card {
  background: var(--ink-soft);
  border: 1px solid rgba(253, 250, 243, 0.10);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.dinner-date {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.96;
  color: var(--linen);
}
.dinner-date .num {
  color: var(--brass-soft);
}
.dinner-countdown {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px 0 2px;
  border-top: 1px solid rgba(253, 250, 243, 0.10);
  border-bottom: 1px solid rgba(253, 250, 243, 0.10);
}
.countdown-kicker {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass-soft);
}
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.countdown-unit {
  padding: 14px 12px 12px;
  background: rgba(253, 250, 243, 0.04);
  border: 1px solid rgba(253, 250, 243, 0.08);
}
.countdown-value {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 0.95;
  color: var(--linen);
}
.countdown-label {
  margin-top: 10px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(253, 250, 243, 0.62);
}
.dinner-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(253, 250, 243, 0.10);
}
.dinner-meta .row .lbl {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: 8px;
}
.dinner-meta .row .val {
  font-family: var(--f-sans);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--linen);
}
.dinner-copy {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(253, 250, 243, .82);
  margin: 0;
}
.dinner-photo {
  position: relative;
  z-index: 3;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.dinner-photo .ph {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  transition: transform 1.4s var(--ease-soft);
  will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  .dinner-photo:hover .ph { transform: scale(1); }
}
.dinner-photo .badge {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  background: var(--linen);
  color: var(--ink);
  padding: 8px 12px;
  z-index: 2;
}
.next-dinner .cta {
  align-self: flex-start;
  background: var(--linen);
  color: var(--ink);
}
.next-dinner .cta::before { background: var(--z-orange); }
@media (hover: hover) and (pointer: fine) {
  .next-dinner .cta:hover { color: var(--linen); }
}
.next-dinner .cta-ghost { color: var(--linen); border-color: var(--brass-soft); }

@media (max-width: 880px) {
  .next-dinner {
    display: flex;
    flex-direction: column;
  }
  .next-dinner .chapter-head {
    order: 2;
    margin: 56px 0 48px;
  }
  .dinner-grid {
    display: contents;
  }
  .dinner-card {
    order: 3;
    padding: 28px;
    position: relative;
    z-index: 3;
  }
  .dinner-photo {
    order: 1;
    min-height: min(620px, 118vw);
  }
  .countdown-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dinner-meta { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 560px) {
  .dinner-meta {
    justify-items: center;
    text-align: center;
  }
  .dinner-meta .row {
    display: grid;
    justify-items: center;
  }
  .next-dinner .cta {
    align-self: center;
  }
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--paper);
  border-top: 1px solid var(--hairline);
}
.faq-list {
  border-top: 1px solid var(--hairline-strong);
}
.faq-item {
  border-bottom: 1px solid var(--hairline);
}
.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 32px;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: padding .35s var(--ease-soft);
}
@media (hover: hover) and (pointer: fine) {
  .faq-q:hover { padding-left: 12px; }
}
.faq-q .qt {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.faq-q .plus {
  position: relative;
  width: 24px; height: 24px;
  justify-self: end;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform .45s var(--ease-soft);
}
.faq-q .plus::before { left: 0; right: 0; top: 50%; height: 1px; transform: translateY(-50%); }
.faq-q .plus::after  { top: 0; bottom: 0; left: 50%; width: 1px; transform: translateX(-50%); }
.faq-item.open .faq-q .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .55s var(--ease-soft);
}
.faq-a > div { overflow: hidden; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a p {
  padding: 0 0 28px 0;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}
@media (max-width: 720px) {
  .faq-q { gap: 12px; }
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  position: relative;
  z-index: 3;
  height: 84vh; min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--linen);
  text-align: center;
  padding: 40px;
}
.final-cta .bg {
  position: absolute; inset: 0;
  background: url('../images/invitation-z-kitchen-14.jpg') center/cover no-repeat;
  filter: brightness(0.5) saturate(0.85);
  will-change: transform;
}
.final-cta .veil {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 80%);
}
.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.final-cta .kicker {
  color: var(--brass-soft);
  margin-bottom: 28px;
}
.final-cta h2 {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: clamp(44px, 6vw, 96px);
  line-height: 1;
  margin-bottom: 28px;
}
.final-cta h2 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.final-cta p {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: rgba(253, 250, 243, 0.85);
  margin-bottom: 44px;
}
.final-cta .cta {
  background: var(--linen);
  color: var(--ink);
}
.final-cta .cta::before { background: var(--z-orange); }
@media (hover: hover) and (pointer: fine) {
  .final-cta .cta:hover { color: var(--linen); }
}

/* ---------- FOOTER ---------- */
.foot {
  background: var(--paper);
  border-top: 1px solid var(--hairline);
  padding: 18px 40px;
}
.foot-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 16px;
}
.foot-mark {
  display: inline-flex;
  align-items: center;
}
.foot-mark img {
  width: 34px;
  display: block;
}
.foot-icons {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.foot-icons a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid rgba(21, 17, 13, 0.14);
  border-radius: 50%;
  opacity: .72;
  transition: opacity .45s var(--ease-editorial), border-color .45s var(--ease-editorial), transform .6s var(--ease-editorial);
}
@media (hover: hover) and (pointer: fine) {
  .foot-icons a:hover {
    opacity: 1;
    border-color: rgba(200, 74, 38, 0.42);
    transform: translateY(-2px);
  }
}
.foot-icons svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.menashi-icon img {
  width: 11px;
  height: 11px;
  object-fit: contain;
  opacity: .72;
  filter: grayscale(1) contrast(1.08);
}
.foot-credit {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ash);
  white-space: nowrap;
}
@media (max-width: 880px) {
  .foot { padding: 18px 22px; }
}

/* ============================================================
   APPLY OVERLAY
   ============================================================ */
.apply-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--ivory);
  overflow-y: auto;
  overflow-x: hidden;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s var(--ease-soft), visibility .45s var(--ease-soft);
}
.apply-overlay.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.apply-bar {
  position: sticky;
  top: 0;
  z-index: 5;
  background: var(--ivory);
  padding: 20px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--hairline);
}
.apply-bar .nav-meta { justify-self: start; }
.apply-bar .z-mark   { justify-self: center; }
.apply-close {
  justify-self: end;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
}
.apply-close .x {
  position: relative;
  width: 18px; height: 18px;
}
.apply-close .x::before,
.apply-close .x::after {
  content: ""; position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: var(--ink);
}
.apply-close .x::before { transform: rotate(45deg); }
.apply-close .x::after  { transform: rotate(-45deg); }

.apply-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 80px 40px 120px;
}
.apply-head { margin-bottom: 72px; }
.apply-head .kicker { margin-bottom: 24px; }
.apply-head h1 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.apply-head h1 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.apply-head .rule {
  width: 56px; height: 2px;
  background: var(--z-orange);
  margin: 18px 0 28px;
}
.apply-head .apply-lede {
  max-width: 580px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.form-section {
  border: none;
  padding: 0;
  margin: 0 0 56px;
}
.form-legend {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--z-orange);
  padding: 0 0 18px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--hairline-strong);
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.form-row.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) {
  .form-row.two { grid-template-columns: 1fr; }
  .apply-inner { padding: 40px 20px 80px; }
  .apply-bar { padding: 16px 20px; }
}

.field {
  position: relative;
  display: flex;
  flex-direction: column;
}
.field label {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 12px;
  transition: color .3s;
}
.field label .req {
  color: var(--z-orange);
  margin-left: 4px;
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline-strong);
  padding: 10px 0;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color .35s var(--ease-soft);
  border-radius: 0;
  font-family: var(--f-sans);
  width: 100%;
}
.field textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.6;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--ash-soft);
  opacity: 0.7;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--z-orange);
}
.field:focus-within label { color: var(--z-orange); }
.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 14px) 18px,
    calc(100% - 8px) 18px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 28px;
  cursor: pointer;
}

.field-error {
  font-family: var(--f-sans);
  font-size: 12px;
  color: var(--z-orange);
  margin-top: 6px;
  min-height: 16px;
  display: block;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-bottom-color: var(--z-orange);
}

.form-submit { margin-top: 56px; }
.form-submit .cta {
  width: 100%;
  --pad-y: 22px;
  font-size: 12px;
  letter-spacing: 0.32em;
}
.form-note {
  margin-top: 18px;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--ash);
  text-transform: uppercase;
}

/* ----- success state ----- */
.success {
  max-width: 720px;
  margin: 0 auto;
  padding: 100px 40px 120px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease-soft), transform 1s var(--ease-soft);
  pointer-events: none;
  display: none;
}
.success.show { opacity: 1; transform: translateY(0); pointer-events: auto; display: block; }
.success .img {
  width: 280px; height: 280px;
  margin: 0 auto 48px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
.success .img::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--brass);
  border-radius: 50%;
  transform: scale(1.06);
  pointer-events: none;
}
.success .kicker { margin-bottom: 28px; }
.success h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1.0;
  margin-bottom: 24px;
}
.success h2 em { font-style: italic; }
.success p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 14px;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
}
.success .return {
  margin-top: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* When success shows, hide the form smoothly */
.application-form,
.apply-head {
  transition: opacity .5s var(--ease-soft);
}
.application-form.hide,
.apply-head.hide { opacity: 0; pointer-events: none; height: 0; overflow: hidden; margin: 0; padding: 0; }
