/*!
Theme Name: mohanj
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: mohanj
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

mohanj is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
:root {
      --ivory: #f7f4ed;
      --ivory-deep: #efe9dc;
      --paper: #fffdf8;
      --ink: #353331;
      --ink-soft: #5f5b56;
      --charcoal: #2f2d2b;
      --gold: #b69351;
      --gold-deep: #8d7a4d;
      --gold-pale: #ddd1b1;
      --sand: #e7deca;
      --line: rgba(141, 122, 77, 0.34);
      --line-soft: rgba(53, 51, 49, 0.13);
      --white: #ffffff;
      --success: #496a55;
      --danger: #9c463d;
      --shadow-sm: 0 12px 35px rgba(54, 47, 37, 0.08);
      --shadow-lg: 0 30px 80px rgba(54, 47, 37, 0.14);
      --radius-sm: 12px;
      --radius-md: 22px;
      --radius-lg: 34px;
      --container: 1280px;
      --header-height: 80px;
    }

    *, *::before, *::after { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 116px;
      overflow-x: clip;
    }

    body {
      margin: 0;
      min-width: 320px;
      color: var(--ink);
      background:
        radial-gradient(circle at 15% 8%, rgba(182, 147, 81, 0.08), transparent 28%),
        radial-gradient(circle at 88% 30%, rgba(141, 122, 77, 0.06), transparent 25%),
        var(--ivory);
      font-family: "Manrope", Arial, sans-serif;
      font-size: 16px;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      opacity: 0.45;
      background-image: radial-gradient(rgba(47, 45, 43, 0.06) 0.55px, transparent 0.55px);
      background-size: 5px 5px;
    }

    body.menu-open { overflow: hidden; }

    img { display: block; max-width: 100%; }
    a { color: inherit; }
    button, input, select, textarea { font: inherit; }
    button { cursor: pointer; }

    h1, h2, h3, h4, p { margin-top: 0; }

    h1, h2, h3, .serif {
      font-family: "Cormorant Garamond", Georgia, serif;
      font-weight: 500;
      letter-spacing: -0.025em;
    }

    h2 {
      margin-bottom: 20px;
      font-size: clamp(2.45rem, 5vw, 4.7rem);
      line-height: 0.98;
    }

    h3 {
      margin-bottom: 12px;
      font-size: clamp(1.55rem, 2.5vw, 2.15rem);
      line-height: 1.12;
    }

    p:last-child { margin-bottom: 0; }

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin-inline: auto;
    }

    .section {
      position: relative;
      padding: 108px 0;
    }

    .section--compact { padding: 76px 0; }
    .section--paper { background: rgba(255, 253, 248, 0.76); }
    .section--ink { color: #f7f3ea; background: var(--charcoal); }

    [id] { scroll-margin-top: 116px; }

    .skip-link {
      position: fixed;
      top: 10px;
      left: 10px;
      z-index: 9999;
      padding: 10px 16px;
      color: var(--white);
      background: var(--charcoal);
      border-radius: 8px;
      transform: translateY(-150%);
      transition: transform 0.2s ease;
    }

    .skip-link:focus { transform: translateY(0); }

    .announcement {
      position: relative;
      z-index: 60;
      padding: 9px 16px;
      color: #fffaf0;
      background: var(--gold-deep);
      text-align: center;
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      height: var(--header-height);
      background: rgba(247, 244, 237, 0.9);
      border-bottom: 1px solid rgba(141, 122, 77, 0.18);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
      gap: 28px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      flex: 0 0 auto;
      text-decoration: none;
    }

    .brand img {
      width: 145px;
      height: auto;
    }

    .nav-wrap {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    .main-nav a {
      position: relative;
      color: var(--ink-soft);
      text-decoration: none;
      font-size: 0.84rem;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    .main-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: -7px;
      height: 1px;
      background: var(--gold);
      transition: right 0.25s ease;
    }

    .main-nav a:hover::after,
    .main-nav a:focus-visible::after { right: 0; }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 13px 22px;
      border: 1px solid transparent;
      border-radius: 999px;
      text-decoration: none;
      text-align: center;
      font-size: 0.86rem;
      font-weight: 700;
      letter-spacing: 0.025em;
      line-height: 1.15;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .button:hover { transform: translateY(-2px); }
    .button:focus-visible { outline: 3px solid rgba(182, 147, 81, 0.3); outline-offset: 3px; }

    .button--gold {
      color: #fffdf7;
      background: var(--gold-deep);
      box-shadow: 0 10px 25px rgba(141, 122, 77, 0.22);
    }

    .button--gold:hover { background: #75643e; box-shadow: 0 14px 30px rgba(141, 122, 77, 0.28); }

    .button--outline {
      color: var(--gold-deep);
      background: transparent;
      border-color: var(--line);
    }

    .button--outline:hover { background: rgba(182, 147, 81, 0.08); border-color: var(--gold); }

    .button--light {
      color: var(--charcoal);
      background: #fffaf0;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    }

    .button--full { width: 100%; }

    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      padding: 0;
      color: var(--ink);
      background: transparent;
      border: 1px solid var(--line);
      border-radius: 50%;
    }

    .menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after {
      content: "";
      display: block;
      width: 18px;
      height: 1.5px;
      margin: 4px auto;
      background: currentColor;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .menu-open .menu-toggle span { opacity: 0; }
    .menu-open .menu-toggle::before { transform: translateY(5.5px) rotate(45deg); }
    .menu-open .menu-toggle::after { transform: translateY(-5.5px) rotate(-45deg); }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      margin-bottom: 18px;
      color: var(--gold-deep);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 28px;
      height: 1px;
      background: currentColor;
    }

    .eyebrow--light { color: var(--gold-pale); }

    .diamond {
      display: inline-block;
      width: 9px;
      height: 9px;
      border: 1px solid currentColor;
      transform: rotate(45deg);
    }

    .ornament {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      width: min(340px, 70%);
      margin: 0 auto 30px;
      color: var(--gold-deep);
    }

    .ornament::before,
    .ornament::after {
      content: "";
      flex: 1;
      height: 1px;
      background: var(--line);
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 64px 0 70px;
    }

    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      pointer-events: none;
      border: 1px solid rgba(141, 122, 77, 0.22);
      transform: rotate(45deg);
    }

    .hero::before {
      width: 310px;
      height: 310px;
      top: -190px;
      right: 10%;
    }

    .hero::after {
      width: 170px;
      height: 170px;
      bottom: -115px;
      left: 5%;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.62fr) minmax(360px, 0.78fr);
      align-items: start;
      gap: 34px;
    }

    .hero-story {
      display: grid;
      grid-template-columns: minmax(0, 1.12fr) minmax(250px, 0.72fr);
      align-items: center;
      gap: 34px;
      min-height: 690px;
      padding: 48px 0 46px;
    }

    .hero-copy h1 {
      margin: 0 0 24px;
      font-size: clamp(4rem, 6.4vw, 6.8rem);
      line-height: 0.77;
      letter-spacing: -0.055em;
    }

    .hero-copy h1 .line { display: block; }

    .hero-copy h1 .with {
      display: inline-block;
      margin: 0 0.08em 0 0.52em;
      color: var(--gold);
      font-size: 0.67em;
      font-style: italic;
      font-weight: 500;
      letter-spacing: -0.04em;
    }

    .hero-theme {
      max-width: 620px;
      margin-bottom: 13px;
      font-size: clamp(2.35rem, 4.2vw, 4.65rem);
      line-height: 0.92;
    }

    .hero-theme em {
      color: var(--gold);
      font-weight: 500;
    }

    .tagline {
      margin-bottom: 22px;
      color: var(--ink-soft);
      font-size: clamp(1rem, 1.5vw, 1.22rem);
      font-weight: 500;
      letter-spacing: 0.01em;
    }

    .hero-lead {
      max-width: 620px;
      margin-bottom: 27px;
      color: var(--ink-soft);
      font-size: 0.98rem;
      line-height: 1.75;
    }

    .hero-facts {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin: 0 0 28px;
      padding: 0;
      list-style: none;
      border-block: 1px solid var(--line);
    }

    .hero-facts li {
      padding: 15px 13px 14px;
      border-right: 1px solid var(--line);
    }

    .hero-facts li:first-child { padding-left: 0; }
    .hero-facts li:last-child { border-right: 0; }

    .hero-facts small {
      display: block;
      margin-bottom: 4px;
      color: var(--gold-deep);
      font-size: 0.66rem;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }

    .hero-facts strong {
      display: block;
      font-size: 0.84rem;
      line-height: 1.45;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .hero-note {
      margin-top: 15px;
      color: var(--ink-soft);
      font-size: 0.75rem;
      line-height: 1.5;
    }

    .portrait-wrap {
      position: relative;
      max-width: 330px;
      margin-inline: auto;
      padding: 13px;
      background: rgba(255, 253, 248, 0.75);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-lg);
    }

    .portrait-wrap::before,
    .portrait-wrap::after {
      content: "";
      position: absolute;
      width: 28px;
      height: 28px;
      border-color: var(--gold);
    }

    .portrait-wrap::before {
      top: -8px;
      left: -8px;
      border-top: 2px solid var(--gold);
      border-left: 2px solid var(--gold);
    }

    .portrait-wrap::after {
      right: -8px;
      bottom: -8px;
      border-right: 2px solid var(--gold);
      border-bottom: 2px solid var(--gold);
    }

    .portrait-wrap img:first-child {
      width: 100%;
      aspect-ratio: 0.89;
      object-fit: cover;
      object-position: center center;
    }

    .portrait-wordmark {
      width: 148px;
      margin: -3px auto -2px;
      padding-top: 10px;
    }

    .portrait-caption {
      margin-top: 20px;
      color: var(--ink-soft);
      text-align: center;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .registration-card {
      position: sticky;
      top: 104px;
      overflow: hidden;
      background: rgba(255, 253, 248, 0.96);
      border: 1px solid rgba(141, 122, 77, 0.35);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-lg);
    }

    .registration-card::before {
      content: "";
      display: block;
      height: 5px;
      background: linear-gradient(90deg, var(--gold-deep), var(--gold-pale), var(--gold-deep));
    }

    .form-head {
      padding: 28px 28px 18px;
      border-bottom: 1px solid var(--line-soft);
    }

    .form-kicker {
      margin-bottom: 6px;
      color: var(--gold-deep);
      font-size: 0.69rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .form-head h2 {
      margin-bottom: 7px;
      font-size: 2.25rem;
      line-height: 1;
    }

    .form-head p {
      margin: 0;
      color: var(--ink-soft);
      font-size: 0.8rem;
      line-height: 1.55;
    }

    .progress {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
      padding: 16px 28px 0;
    }

    .progress-step {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #999186;
      font-size: 0.69rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .progress-step span {
      display: inline-grid;
      place-items: center;
      width: 24px;
      height: 24px;
      border: 1px solid var(--line);
      border-radius: 50%;
      font-size: 0.66rem;
    }

    .progress-step.is-active { color: var(--gold-deep); }
    .progress-step.is-active span { color: var(--white); background: var(--gold-deep); border-color: var(--gold-deep); }

    .registration-form { padding: 22px 28px 28px; }
    .form-step[hidden] { display: none; }

    .form-section-title {
      margin-bottom: 17px;
      font-family: "Manrope", Arial, sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    .field-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .field { margin-bottom: 14px; }
    .field-grid .field { margin-bottom: 0; }
    .field--full { grid-column: 1 / -1; }

    .field label,
    .fieldset-legend {
      display: block;
      margin-bottom: 7px;
      color: var(--ink);
      font-size: 0.73rem;
      font-weight: 700;
      line-height: 1.35;
    }

    .required { color: var(--gold-deep); }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      color: var(--ink);
      background: #fffefa;
      border: 1px solid rgba(53, 51, 49, 0.17);
      border-radius: 10px;
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .field input,
    .field select { min-height: 47px; padding: 10px 12px; }
    .field textarea { min-height: 98px; padding: 11px 12px; resize: vertical; }

    .field input::placeholder,
    .field textarea::placeholder { color: #a29c93; }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      background: var(--white);
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(182, 147, 81, 0.12);
    }

    fieldset {
      min-width: 0;
      margin: 0 0 16px;
      padding: 0;
      border: 0;
    }

    .choice-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }

    .choice {
      position: relative;
      display: block;
      cursor: pointer;
    }

    .choice input {
      position: absolute;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    .choice span {
      display: flex;
      align-items: center;
      min-height: 42px;
      padding: 8px 10px;
      color: var(--ink-soft);
      background: #fffefa;
      border: 1px solid rgba(53, 51, 49, 0.14);
      border-radius: 9px;
      font-size: 0.67rem;
      font-weight: 600;
      line-height: 1.3;
      transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
    }

    .choice input:checked + span {
      color: var(--gold-deep);
      background: rgba(182, 147, 81, 0.09);
      border-color: var(--gold);
    }

    .choice input:focus-visible + span {
      outline: 3px solid rgba(182, 147, 81, 0.22);
      outline-offset: 2px;
    }

    .field-note {
      margin: 7px 0 0;
      color: #827c73;
      font-size: 0.66rem;
      line-height: 1.45;
    }

    .consent {
      display: grid;
      grid-template-columns: 18px 1fr;
      gap: 9px;
      align-items: start;
      margin: 13px 0;
      color: var(--ink-soft);
      font-size: 0.68rem;
      line-height: 1.5;
    }

    .consent input {
      width: 16px;
      height: 16px;
      margin-top: 2px;
      accent-color: var(--gold-deep);
    }

    .form-actions {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 10px;
      margin-top: 19px;
    }

    .form-actions .button { min-height: 48px; }

    .form-back {
      min-width: 84px;
      color: var(--ink-soft);
      background: transparent;
      border-color: var(--line);
    }

    .form-privacy {
      display: flex;
      gap: 8px;
      align-items: flex-start;
      margin: 14px 0 0;
      color: #847e75;
      font-size: 0.64rem;
      line-height: 1.45;
    }

    .form-privacy svg { flex: 0 0 auto; margin-top: 2px; }

    .experience-strip {
      position: relative;
      z-index: 2;
      color: #fffaf0;
      background: var(--gold-deep);
    }

    .experience-list {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .experience-list li {
      display: grid;
      place-items: center;
      min-height: 85px;
      padding: 18px 12px;
      border-right: 1px solid rgba(255, 255, 255, 0.19);
      text-align: center;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.055em;
      line-height: 1.35;
      text-transform: uppercase;
    }

    .experience-list li:last-child { border-right: 0; }

    .section-head {
      max-width: 800px;
      margin-bottom: 52px;
    }

    .section-head--center {
      margin-inline: auto;
      text-align: center;
    }

    .section-head p {
      max-width: 700px;
      color: var(--ink-soft);
      font-size: 1rem;
      line-height: 1.8;
    }

    .section--ink .section-head p { color: rgba(247, 243, 234, 0.72); }

    .intro-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
      gap: 76px;
      align-items: start;
    }

    .intro-title {
      position: sticky;
      top: 130px;
    }

    .intro-copy {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px 34px;
    }

    .intro-copy p { color: var(--ink-soft); }

    .pull-quote {
      grid-column: 1 / -1;
      margin-top: 15px;
      padding: 30px 34px;
      color: var(--gold-deep);
      background: rgba(255, 253, 248, 0.7);
      border-left: 2px solid var(--gold);
      box-shadow: var(--shadow-sm);
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: clamp(1.7rem, 3vw, 2.55rem);
      font-style: italic;
      line-height: 1.2;
    }

    .meet-grid {
      display: grid;
      grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
      gap: 80px;
      align-items: center;
    }

    .meet-image {
      position: relative;
      padding: 18px;
      background: var(--paper);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-lg);
    }

    .meet-image::before {
      content: "";
      position: absolute;
      top: -18px;
      right: -18px;
      width: 120px;
      height: 120px;
      border-top: 1px solid var(--gold);
      border-right: 1px solid var(--gold);
    }

    .meet-image img {
      width: 100%;
      aspect-ratio: 0.88;
      object-fit: cover;
      object-position: center;
    }

    .meet-copy p { color: var(--ink-soft); }

    .meet-highlight {
      margin-top: 30px;
      padding: 22px 26px;
      color: var(--gold-deep);
      background: rgba(182, 147, 81, 0.08);
      border: 1px solid var(--line);
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: 1.45rem;
      font-style: italic;
      line-height: 1.3;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .experience-card {
      position: relative;
      min-height: 270px;
      padding: 32px 28px;
      background: rgba(255, 253, 248, 0.76);
      border: 1px solid var(--line-soft);
      border-radius: var(--radius-sm);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .experience-card:hover {
      transform: translateY(-6px);
      border-color: var(--line);
      box-shadow: var(--shadow-sm);
    }

    .card-number {
      margin-bottom: 36px;
      color: var(--gold);
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: 1.25rem;
      font-style: italic;
    }

    .experience-card h3 { font-size: 1.65rem; }
    .experience-card p { margin: 0; color: var(--ink-soft); font-size: 0.88rem; }

    .question-section {
      position: relative;
      overflow: hidden;
    }

    .question-section::before {
      content: "?";
      position: absolute;
      top: -170px;
      right: -40px;
      color: rgba(255, 255, 255, 0.035);
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: 700px;
      line-height: 1;
    }

    .question-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
      gap: 75px;
      align-items: start;
    }

    .question-copy p { color: rgba(247, 243, 234, 0.73); }

    .question-prompt {
      margin: 34px 0 32px;
      padding: 25px 0 25px 25px;
      color: var(--gold-pale);
      border-left: 1px solid var(--gold);
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: clamp(1.65rem, 3vw, 2.5rem);
      font-style: italic;
      line-height: 1.22;
    }

    .question-list {
      display: grid;
      gap: 0;
      margin: 0;
      padding: 0;
      list-style: none;
      border-top: 1px solid rgba(221, 209, 177, 0.27);
    }

    .question-list li {
      position: relative;
      padding: 16px 12px 16px 34px;
      color: rgba(247, 243, 234, 0.84);
      border-bottom: 1px solid rgba(221, 209, 177, 0.19);
      font-size: 0.9rem;
      line-height: 1.6;
    }

    .question-list li::before {
      content: "";
      position: absolute;
      top: 24px;
      left: 6px;
      width: 8px;
      height: 8px;
      border: 1px solid var(--gold-pale);
      transform: rotate(45deg);
    }

    .pause-panel {
      position: relative;
      max-width: 980px;
      margin-inline: auto;
      padding: 68px clamp(28px, 7vw, 90px);
      background: rgba(255, 253, 248, 0.78);
      border: 1px solid var(--line);
      text-align: center;
      box-shadow: var(--shadow-sm);
    }

    .pause-panel::before,
    .pause-panel::after {
      content: "";
      position: absolute;
      width: 56px;
      height: 56px;
      border-color: var(--gold);
    }

    .pause-panel::before {
      top: 16px;
      left: 16px;
      border-top: 1px solid var(--gold);
      border-left: 1px solid var(--gold);
    }

    .pause-panel::after {
      right: 16px;
      bottom: 16px;
      border-right: 1px solid var(--gold);
      border-bottom: 1px solid var(--gold);
    }

    .pause-panel p {
      max-width: 700px;
      margin-inline: auto;
      color: var(--ink-soft);
    }

    .pause-line {
      margin: 32px 0 0;
      color: var(--gold-deep);
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: clamp(1.75rem, 4vw, 3rem);
      font-style: italic;
      line-height: 1.15;
    }

    .community-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
      gap: 72px;
      align-items: center;
    }

    .community-copy p { color: var(--ink-soft); }

    .community-note {
      margin-top: 28px;
      padding: 24px 28px;
      color: var(--gold-deep);
      background: rgba(182, 147, 81, 0.08);
      border-left: 2px solid var(--gold);
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: 1.5rem;
      font-style: italic;
      line-height: 1.3;
    }

    .connection-list {
      margin: 0;
      padding: 12px 32px;
      list-style: none;
      background: var(--paper);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
    }

    .connection-list li {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 12px;
      align-items: start;
      padding: 22px 0;
      border-bottom: 1px solid var(--line-soft);
    }

    .connection-list li:last-child { border-bottom: 0; }

    .connection-list span:first-child {
      display: grid;
      place-items: center;
      width: 30px;
      height: 30px;
      color: var(--gold-deep);
      border: 1px solid var(--line);
      transform: rotate(45deg);
    }

    .connection-list span:first-child b { transform: rotate(-45deg); font-size: 0.7rem; }
    .connection-list strong { display: block; margin-bottom: 4px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.3rem; }
    .connection-list small { display: block; color: var(--ink-soft); font-size: 0.78rem; line-height: 1.55; }

    .audience-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0 50px;
      margin: 0;
      padding: 0;
      list-style: none;
      counter-reset: audience;
    }

    .audience-grid li {
      counter-increment: audience;
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 14px;
      align-items: start;
      padding: 19px 0;
      color: var(--ink-soft);
      border-bottom: 1px solid var(--line-soft);
      font-size: 0.92rem;
    }

    .audience-grid li::before {
      content: counter(audience, decimal-leading-zero);
      color: var(--gold);
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: 1.08rem;
      font-style: italic;
    }

    .inclusive-note {
      max-width: 900px;
      margin: 40px auto 0;
      padding: 22px 28px;
      color: var(--ink-soft);
      background: rgba(255, 253, 248, 0.75);
      border: 1px solid var(--line);
      text-align: center;
      font-size: 0.86rem;
    }

    .program-layout {
      display: grid;
      grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
      gap: 78px;
      align-items: start;
    }

    .program-intro {
      position: sticky;
      top: 130px;
    }

    .program-intro p { color: var(--ink-soft); }

    .timeline {
      position: relative;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .timeline::before {
      content: "";
      position: absolute;
      top: 12px;
      bottom: 12px;
      left: 15px;
      width: 1px;
      background: var(--line);
    }

    .timeline li {
      position: relative;
      display: grid;
      grid-template-columns: 32px 1fr;
      gap: 21px;
      padding-bottom: 30px;
    }

    .timeline li:last-child { padding-bottom: 0; }

    .timeline-dot {
      position: relative;
      z-index: 1;
      display: grid;
      place-items: center;
      width: 31px;
      height: 31px;
      color: var(--gold-deep);
      background: var(--ivory);
      border: 1px solid var(--gold);
      transform: rotate(45deg);
    }

    .timeline-dot span { transform: rotate(-45deg); font-size: 0.65rem; font-weight: 700; }
    .timeline h3 { margin-bottom: 5px; font-size: 1.52rem; }
    .timeline p { margin: 0; color: var(--ink-soft); font-size: 0.85rem; }

    .details-shell {
      overflow: hidden;
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-lg);
    }

    .details-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .detail-card {
      padding: 34px 30px;
      border-right: 1px solid var(--line);
    }

    .detail-card:last-child { border-right: 0; }

    .detail-label {
      margin-bottom: 10px;
      color: var(--gold-deep);
      font-size: 0.69rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .detail-card h3 { margin-bottom: 8px; font-size: 1.75rem; }
    .detail-card p { margin: 0; color: var(--ink-soft); font-size: 0.84rem; }

    .schedule-band {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      background: var(--sand);
      border-top: 1px solid var(--line);
    }

    .schedule-item {
      padding: 22px 25px;
      border-right: 1px solid var(--line);
      text-align: center;
    }

    .schedule-item:last-child { border-right: 0; }
    .schedule-item time { display: block; margin-bottom: 4px; color: var(--gold-deep); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.45rem; font-weight: 600; }
    .schedule-item span { color: var(--ink-soft); font-size: 0.73rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }

    .details-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 24px 30px;
      border-top: 1px solid var(--line-soft);
    }

    .details-foot p { margin: 0; color: var(--ink-soft); font-size: 0.79rem; }

    .partner-shell {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      align-items: center;
      gap: 70px;
    }

    .partner-copy p { color: var(--ink-soft); }

    .partner-logo-card {
      padding: 28px;
      background: #fbfaf6;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
    }

    .partner-logo-card img { width: 100%; height: auto; }

    .partner-names {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 23px;
    }

    .partner-names span {
      padding: 12px 14px;
      color: var(--ink-soft);
      background: rgba(255, 253, 248, 0.65);
      border: 1px solid var(--line-soft);
      font-size: 0.75rem;
      font-weight: 700;
      text-align: center;
    }

    .faq-list {
      max-width: 920px;
      margin-inline: auto;
      border-top: 1px solid var(--line);
    }

    .faq-list details { border-bottom: 1px solid var(--line); }

    .faq-list summary {
      position: relative;
      padding: 25px 52px 25px 0;
      list-style: none;
      cursor: pointer;
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: 1.45rem;
      font-weight: 600;
      line-height: 1.25;
    }

    .faq-list summary::-webkit-details-marker { display: none; }

    .faq-list summary::before,
    .faq-list summary::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 10px;
      width: 16px;
      height: 1px;
      background: var(--gold-deep);
      transition: transform 0.2s ease;
    }

    .faq-list summary::after { transform: rotate(90deg); }
    .faq-list details[open] summary::after { transform: rotate(0deg); }

    .faq-answer {
      max-width: 770px;
      padding: 0 40px 24px 0;
      color: var(--ink-soft);
      font-size: 0.9rem;
    }

    .final-cta {
      position: relative;
      overflow: hidden;
      padding: 102px 0;
      color: #fffaf0;
      background:
        linear-gradient(125deg, rgba(47, 45, 43, 0.98), rgba(74, 65, 47, 0.94)),
        var(--charcoal);
      text-align: center;
    }

    .final-cta::before,
    .final-cta::after {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      border: 1px solid rgba(221, 209, 177, 0.18);
      transform: rotate(45deg);
    }

    .final-cta::before { top: -190px; left: -80px; }
    .final-cta::after { right: -80px; bottom: -190px; }

    .final-inner {
      position: relative;
      z-index: 1;
      max-width: 870px;
      margin-inline: auto;
    }

    .final-cta h2 { margin-bottom: 24px; }
    .final-cta p { max-width: 690px; margin: 0 auto 31px; color: rgba(255, 250, 240, 0.74); }

    .final-meta {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px 25px;
      margin-top: 23px;
      color: var(--gold-pale);
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .site-footer {
      padding: 62px 0 26px;
      color: rgba(255, 250, 240, 0.78);
      background: #272522;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 0.8fr;
      gap: 55px;
      padding-bottom: 42px;
    }

    .footer-brand img {
      width: 145px;
      filter: brightness(1.5) saturate(0.7);
    }

    .footer-brand p {
      max-width: 380px;
      margin: 18px 0 0;
      font-size: 0.8rem;
    }

    .footer-title {
      margin-bottom: 15px;
      color: var(--gold-pale);
      font-size: 0.69rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: inherit;
      text-decoration: none;
      font-size: 0.8rem;
    }

    .footer-links a:hover { color: var(--gold-pale); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 28px;
      padding-top: 24px;
      border-top: 1px solid rgba(221, 209, 177, 0.14);
      color: rgba(255, 250, 240, 0.52);
      font-size: 0.67rem;
      line-height: 1.55;
    }

    .mobile-cta {
      position: fixed;
      right: 14px;
      bottom: 14px;
      left: 14px;
      z-index: 45;
      display: none;
      min-height: 52px;
      color: #fffaf0;
      background: var(--gold-deep);
      border: 1px solid rgba(255, 255, 255, 0.24);
      border-radius: 999px;
      box-shadow: 0 16px 40px rgba(47, 45, 43, 0.3);
      text-decoration: none;
      font-size: 0.84rem;
      font-weight: 700;
      align-items: center;
      justify-content: center;
    }

    .js .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .js .reveal.is-visible,
    .js .hero .reveal {
      opacity: 1;
      transform: translateY(0);
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    @media (max-width: 1180px) {
      .main-nav { gap: 18px; }
      .main-nav a { font-size: 0.78rem; }
      .header-cta { display: none; }
      .hero-grid { grid-template-columns: 1fr; }
      .hero-story { min-height: auto; }
      .registration-card { position: relative; top: auto; max-width: 820px; width: 100%; margin-inline: auto; }
      .experience-list { grid-template-columns: repeat(3, 1fr); }
      .experience-list li:nth-child(3) { border-right: 0; }
      .experience-list li:nth-child(-n+3) { border-bottom: 1px solid rgba(255, 255, 255, 0.19); }
    }

    @media (max-width: 920px) {
      .section { padding: 86px 0; }
      .nav-wrap { gap: 12px; }
      .menu-toggle { display: block; }
      .main-nav {
        position: fixed;
        top: calc(38px + var(--header-height));
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 28px 22px 100px;
        background: rgba(247, 244, 237, 0.98);
        transform: translateX(100%);
        transition: transform 0.28s ease;
      }
      .menu-open .main-nav { transform: translateX(0); }
      .main-nav a {
        width: 100%;
        padding: 17px 6px;
        border-bottom: 1px solid var(--line-soft);
        font-family: "Cormorant Garamond", Georgia, serif;
        font-size: 1.45rem;
      }
      .main-nav a::after { display: none; }
      .hero-story { grid-template-columns: minmax(0, 1fr) minmax(230px, 0.58fr); }
      .intro-grid, .meet-grid, .question-grid, .community-grid, .program-layout, .partner-shell { grid-template-columns: 1fr; gap: 50px; }
      .intro-title, .program-intro { position: relative; top: auto; }
      .intro-copy { grid-template-columns: 1fr 1fr; }
      .meet-image { max-width: 520px; margin-inline: auto; }
      .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .details-grid { grid-template-columns: 1fr; }
      .detail-card { border-right: 0; border-bottom: 1px solid var(--line); }
      .detail-card:last-child { border-bottom: 0; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
    }

    @media (max-width: 700px) {
      :root { --header-height: 68px; }
      body { padding-bottom: 78px; }
      .container { width: min(calc(100% - 28px), var(--container)); }
      .announcement { padding: 8px 12px; font-size: 0.62rem; letter-spacing: 0.08em; }
      .brand img { width: 122px; }
      .main-nav { top: calc(34px + var(--header-height)); }
      .hero { padding: 36px 0 48px; }
      .hero-grid { display: flex; flex-direction: column; gap: 34px; }
      .hero-story { display: contents; }
      .hero-copy { order: 1; }
      .registration-card { order: 2; }
      .portrait-wrap { order: 3; margin-top: 8px; }
      .hero-copy h1 { font-size: clamp(3.75rem, 18vw, 5.4rem); }
      .hero-theme { font-size: clamp(2.35rem, 12vw, 3.8rem); }
      .hero-facts { grid-template-columns: 1fr; }
      .hero-facts li { padding: 12px 0; border-right: 0; border-bottom: 1px solid var(--line); }
      .hero-facts li:last-child { border-bottom: 0; }
      .hero-actions { display: grid; }
      .hero-actions .button { width: 100%; }
      .portrait-wrap { max-width: 315px; }
      .registration-card { border-radius: 18px; }
      .form-head { padding: 25px 20px 17px; }
      .progress { padding: 15px 20px 0; }
      .registration-form { padding: 20px; }
      .field-grid, .choice-grid { grid-template-columns: 1fr; }
      .experience-list { grid-template-columns: repeat(2, 1fr); }
      .experience-list li { min-height: 74px; font-size: 0.64rem; }
      .experience-list li:nth-child(2n) { border-right: 0; }
      .experience-list li:nth-child(3) { border-right: 1px solid rgba(255, 255, 255, 0.19); }
      .experience-list li:nth-child(-n+4) { border-bottom: 1px solid rgba(255, 255, 255, 0.19); }
      .section { padding: 72px 0; }
      .section-head { margin-bottom: 40px; }
      .intro-copy { grid-template-columns: 1fr; }
      .pull-quote { padding: 25px 24px; }
      .cards-grid { grid-template-columns: 1fr; }
      .experience-card { min-height: auto; }
      .question-section::before { font-size: 460px; }
      .pause-panel { padding: 52px 24px; }
      .audience-grid { grid-template-columns: 1fr; }
      .schedule-band { grid-template-columns: 1fr; }
      .schedule-item { border-right: 0; border-bottom: 1px solid var(--line); }
      .schedule-item:last-child { border-bottom: 0; }
      .details-foot { align-items: stretch; flex-direction: column; }
      .details-foot .button { width: 100%; }
      .partner-names { grid-template-columns: 1fr; }
      .faq-list summary { font-size: 1.3rem; }
      .final-cta { padding: 78px 0; }
      .footer-grid { grid-template-columns: 1fr; gap: 34px; }
      .footer-brand { grid-column: auto; }
      .footer-bottom { flex-direction: column; }
      .mobile-cta { display: flex; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
      .js .reveal { opacity: 1; transform: none; }
    }