  :root {
    /* Brand palette — Tara Fitzpatrick-Navarro
       Teal #134E4A (primary) · Cream #F3EBDD · Gold #D89A34
       Variable names are kept from the prior (plum) system so all
       existing references cascade; only the resolved values change. */
    --cream: #F3EBDD;        /* brand cream — card surfaces */
    --warm-white: #FBF9F3;   /* page background, warm off-white */
    --charcoal: #1C2B28;     /* deep teal-charcoal — primary text */
    --mid: #5A6B66;          /* muted teal-gray — secondary text */
    --light-mid: #93A09B;    /* faint teal-gray — meta text */
    --plum: #134E4A;         /* PRIMARY brand teal (was plum) */
    --plum-muted: #2C6B64;   /* lighter teal — muted accents */
    --plum-light: #E4EDEA;   /* soft teal tint — band backgrounds */
    --gold: #D89A34;         /* brand gold — accent rules/details */
    --gold-deep: #B97F22;    /* darker gold — hover/contrast */
    --teal-deep: #0E3A37;    /* darker teal — button hover */
    --border: #E3DDD0;       /* cream-tinted hairline border */
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Poppins', sans-serif;
    background: var(--warm-white);
    color: var(--charcoal);
    font-weight: 300;
    line-height: 1.7;
    font-size: 17px;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--warm-white);
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }

  .nav-brand {
    text-decoration: none;
    color: var(--charcoal);
  }

  .nav-brand .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.02em;
    display: block;
    line-height: 1.2;
  }

  .nav-brand .title {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid);
    font-weight: 400;
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--mid);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--charcoal); }

  .nav-links .nav-cta a {
    color: var(--plum);
    border-bottom: 1px solid var(--plum);
    padding-bottom: 2px;
  }

  .nav-linkedin {
    display: flex;
    align-items: center;
    color: var(--mid);
    transition: color 0.2s;
  }
  .nav-linkedin:hover { color: var(--plum); }
  .nav-linkedin svg { width: 16px; height: 16px; fill: currentColor; }

  /* PAGE SECTIONS */
  .page { display: none; padding-top: 72px; min-height: 100vh; }
  .page.active { display: block; }

  /* HERO */
  .hero {
    padding: 96px 48px 80px;
    max-width: 100%;
  }

  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 28px;
    font-weight: 400;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 400;
    line-height: 1.18;
    color: var(--charcoal);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--plum);
  }

  .hero-sub {
    font-size: 18px;
    color: var(--mid);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 44px;
    font-weight: 300;
  }

  .hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
  }

  .btn-primary {
    display: inline-block;
    background: var(--plum);
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
    transition: background 0.2s;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    border: none;
  }

  .btn-primary:hover { background: var(--teal-deep); }

  .btn-secondary {
    display: inline-block;
    color: var(--charcoal);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2px;
    transition: border-color 0.2s, color 0.2s;
    cursor: pointer;
  }

  .btn-secondary:hover { border-color: var(--charcoal); }

  /* DIVIDER */
  .section-divider { display: none; }

  /* TWO-PATH SECTION */
  .two-paths {
    padding: 0 48px 96px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    max-width: 1100px;
  }

  .path-card {
    background: var(--cream);
    padding: 52px 48px;
    cursor: pointer;
    transition: background 0.2s;
  }

  .path-card:hover { background: #EBE2D1; }

  .path-card .path-label {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 18px;
    font-weight: 400;
  }

  .path-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--charcoal);
  }

  .path-card p {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .path-link {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2px;
    font-weight: 400;
    cursor: pointer;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.2s;
  }

  .path-link:hover { border-color: var(--charcoal); }

  /* THREE-DOORS SECTION (home page offer cards) */
  .work-intro {
    padding: 96px 48px 32px;
    max-width: 860px;
  }
  .work-intro .work-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 20px;
    font-weight: 400;
  }
  .work-intro h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
  }
  .work-intro p {
    font-size: 17px;
    color: var(--mid);
    line-height: 1.7;
    max-width: 640px;
  }

  .three-doors {
    padding: 0 48px 96px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 1400px;
  }

  .door-card {
    background: var(--cream);
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
  }

  .door-card .door-label {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 18px;
    font-weight: 400;
  }

  .door-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 14px;
    color: var(--charcoal);
  }

  .door-card .door-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 12px;
  }

  .door-card .door-format {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .door-card .door-for {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .door-card .door-status {
    font-size: 12px;
    color: var(--charcoal);
    line-height: 1.6;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
  }

  .door-card .door-cta {
    display: inline-block;
    background: var(--plum);
    color: white;
    padding: 12px 22px;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
    transition: background 0.2s;
    text-align: center;
    margin-bottom: 24px;
  }

  .door-card .door-cta:hover { background: var(--teal-deep); }

  .door-card .door-testimonial {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: 2px 1fr;
    gap: 0;
  }
  .door-card .door-testimonial .tm-bar {
    background: var(--plum);
    min-height: 100%;
  }
  .door-card .door-testimonial .tm-body {
    padding-left: 18px;
  }
  .door-card .door-testimonial p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 10px;
  }
  .door-card .door-testimonial cite {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mid);
    font-style: normal;
    font-weight: 400;
  }

  /* TESTIMONIALS BAND */
  .testimonials-band {
    background: var(--cream);
    padding: 80px 48px;
    margin-bottom: 0;
  }
  .testimonials-band .tb-eyebrow {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 36px;
    font-weight: 400;
    text-align: left;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .testimonials-band .tb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .testimonials-band .tb-quote {
    display: grid;
    grid-template-columns: 3px 1fr;
    gap: 0;
  }
  .testimonials-band .tb-quote .tb-bar {
    background: var(--plum);
    min-height: 100%;
  }
  .testimonials-band .tb-quote .tb-body {
    padding-left: 28px;
  }
  .testimonials-band .tb-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 2vw, 26px);
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.5;
    margin-bottom: 18px;
    font-weight: 400;
  }
  .testimonials-band .tb-quote cite {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mid);
    font-style: normal;
    font-weight: 500;
  }
  .testimonials-band .tb-quote .tb-context {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: none;
    color: var(--light-mid);
    font-weight: 400;
  }
  @media (max-width: 720px) {
    .testimonials-band { padding: 56px 24px; }
    .testimonials-band .tb-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  /* OFFER DETAIL BLOCKS (Hour, Container, Cohort detail) */
  .offer-detail {
    padding: 64px 48px;
    border-top: 1px solid var(--border);
    max-width: 860px;
  }
  .offer-detail .od-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 16px;
    font-weight: 400;
  }
  .offer-detail h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 400;
    line-height: 1.25;
    color: var(--charcoal);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
  }
  .offer-detail .od-meta {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 24px;
  }
  .offer-detail p {
    font-size: 16px;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 18px;
  }
  .offer-detail .od-cta {
    display: inline-block;
    background: var(--plum);
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
    transition: background 0.2s;
    margin-top: 12px;
  }
  .offer-detail .od-cta:hover { background: var(--teal-deep); }

  /* COHORT WAITLIST FORM */
  .cohort-waitlist-form {
    margin-top: 24px;
    max-width: 480px;
  }
  .cohort-waitlist-form .cwf-row {
    display: flex;
    gap: 0;
  }
  .cohort-waitlist-form input[type="email"] {
    flex: 1;
    border: 1px solid var(--border);
    border-right: none;
    padding: 13px 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    background: var(--warm-white);
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.2s;
  }
  .cohort-waitlist-form input[type="email"]:focus { border-color: var(--plum); }
  .cohort-waitlist-form button {
    background: var(--plum);
    color: white;
    border: none;
    padding: 13px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
  }
  .cohort-waitlist-form button:hover { background: var(--teal-deep); }

  /* CREDENTIALS STRIP */
  .credentials-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 48px;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0;
  }

  .credential-item {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mid);
    font-weight: 400;
  }

  .credential-item strong {
    color: var(--charcoal);
    font-weight: 500;
  }

  /* COMING SOON BAND */
  .coming-soon-band {
    background: var(--plum-light);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
  }

  .coming-soon-band .cs-label {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 8px;
    font-weight: 400;
  }

  .coming-soon-band h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 8px;
  }

  .coming-soon-band p {
    font-size: 15px;
    color: var(--mid);
    max-width: 520px;
  }

  /* INNER PAGE HERO */
  .inner-hero {
    padding: 72px 48px 56px;
    border-bottom: 1px solid var(--border);
    max-width: 100%;
  }

  .inner-hero .eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 20px;
    font-weight: 400;
  }

  .inner-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
  }

  .inner-hero .lead {
    font-size: 18px;
    color: var(--mid);
    line-height: 1.7;
    max-width: 860px;
  }

  /* BODY CONTENT */
  .content-body {
    padding: 40px 48px;
    max-width: 860px;
  }

  .content-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 16px;
    margin-top: 36px;
    color: var(--charcoal);
  }

  .content-body h2:first-child { margin-top: 0; }

  .content-body p {
    color: var(--mid);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
  }

  .content-body p strong {
    color: var(--charcoal);
    font-weight: 500;
  }

  /* SERVICE DETAIL */
  .service-detail {
    background: var(--cream);
    padding: 48px;
    margin: 0 48px 48px;
    max-width: 860px;
  }

  .service-detail .sd-label {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 16px;
    font-weight: 400;
  }

  .service-detail h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
  }

  .service-detail p {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 12px;
  }

  .service-detail .price {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--charcoal);
    font-weight: 400;
    letter-spacing: 0.04em;
  }

  .service-detail .price strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
  }

  /* WHAT TO EXPECT LIST */
  .expect-list {
    padding: 0 48px 48px;
    max-width: 860px;
  }

  .expect-list h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 28px;
    color: var(--charcoal);
  }

  .expect-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 20px;
  }

  .expect-item .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--plum);
    font-style: italic;
    min-width: 28px;
    padding-top: 2px;
  }

  .expect-item p {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.7;
  }

  .expect-item p strong {
    color: var(--charcoal);
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    letter-spacing: 0.02em;
  }

  /* ABOUT GRID */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin: 0 0 2px;
  }

  .about-cell {
    background: var(--cream);
    padding: 48px;
  }

  .about-cell h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--charcoal);
  }

  .about-cell p {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 12px;
  }

  /* CONTACT */
  .contact-section {
    padding: 64px 48px;
    max-width: 580px;
  }

  .contact-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 16px;
  }

  .contact-section p {
    color: var(--mid);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .form-field label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mid);
    font-weight: 400;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    border: 1px solid var(--border);
    background: var(--warm-white);
    padding: 12px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
  }

  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    border-color: var(--plum);
  }

  .form-field textarea { resize: vertical; min-height: 120px; }

  /* WRITING */
  .writing-grid {
    padding: 48px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    max-width: 1100px;
  }

  .writing-card {
    background: var(--cream);
    padding: 44px 40px;
  }

  .writing-card .wc-date {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--light-mid);
    margin-bottom: 16px;
  }

  .writing-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 14px;
    color: var(--charcoal);
  }

  .writing-card p {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.7;
  }

  /* COMING SOON PAGE */
  .cs-page {
    padding: 96px 48px;
    max-width: 680px;
  }

  .cs-page .eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 20px;
    font-weight: 400;
  }

  .cs-page h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 400;
    line-height: 1.18;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
  }

  .cs-page h1 em {
    font-style: italic;
    color: var(--plum);
  }

  .cs-page p {
    font-size: 17px;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 520px;
  }

  .cs-page .notify-form {
    margin-top: 44px;
    display: flex;
    gap: 0;
    max-width: 440px;
  }

  .cs-page .notify-form input {
    flex: 1;
    border: 1px solid var(--border);
    border-right: none;
    padding: 13px 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    background: var(--warm-white);
    color: var(--charcoal);
    outline: none;
  }

  .cs-page .notify-form input:focus { border-color: var(--plum); }

  .cs-page .notify-form button {
    background: var(--plum);
    color: white;
    border: none;
    padding: 13px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
  }

  .cs-page .notify-form button:hover { background: var(--teal-deep); }

  /* FOOTER */
  footer {
    border-top: 1px solid var(--border);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: auto;
  }

  footer .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--charcoal);
  }

  footer .footer-mid {
    font-size: 12px;
    color: var(--light-mid);
    letter-spacing: 0.04em;
  }

  footer .footer-links {
    display: flex;
    gap: 24px;
  }

  footer .footer-links button {
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mid);
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
  }

  footer .footer-links button:hover { color: var(--charcoal); }

  /* MOBILE */
  /* HAMBURGER MENU */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.2s;
  }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--warm-white);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    z-index: 99;
    flex-direction: column;
    gap: 0;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--charcoal);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 400;
  }
  .mobile-menu a:last-child { border-bottom: none; color: var(--plum); }

  @media (max-width: 768px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .hero { padding: 48px 24px 40px; max-width: 100%; }
    .inner-hero { padding: 48px 24px 40px; max-width: 100%; }
    .section-divider { margin: 0 24px 48px; }

    /* Stack all two-column grids */
    .two-paths { padding: 0 24px 56px; grid-template-columns: 1fr; }
    .credentials-strip { padding: 20px 24px; gap: 16px; flex-wrap: wrap; }
    .coming-soon-band { padding: 28px 24px; flex-direction: column; }
    .content-body { padding: 32px 24px; max-width: 100%; }
    .service-detail { margin: 0 24px 32px; padding: 28px 24px; max-width: 100%; }
    .expect-list { padding: 0 24px 32px; max-width: 100%; }
    .about-grid { grid-template-columns: 1fr; }
    .about-cell { padding: 28px 24px; }
    .contact-section { padding: 32px 24px; max-width: 100%; }
    .form-row { grid-template-columns: 1fr; }
    .writing-grid { padding: 24px 24px; grid-template-columns: 1fr; }
    .cs-page { padding: 48px 24px; }
    .cs-page .notify-form { flex-direction: column; max-width: 100%; }
    .cs-page .notify-form input { border-right: 1px solid var(--border); border-bottom: none; }
    footer { padding: 28px 24px; flex-direction: column; align-items: flex-start; gap: 16px; }

    /* Hero two-column -> single column */
    div[style*="grid-template-columns: 1fr 420px"],
    div[style*="grid-template-columns: 1fr 380px"] {
      display: block !important;
      padding: 0 !important;
    }
    div[style*="grid-template-columns: 1fr 420px"] > div:first-child,
    div[style*="grid-template-columns: 1fr 380px"] > div:first-child {
      padding: 48px 24px 32px !important;
    }
    div[style*="grid-template-columns: 1fr 420px"] > div:last-child,
    div[style*="grid-template-columns: 1fr 380px"] > div:last-child {
      margin: 0 24px 32px !important;
      height: auto !important;
    }

    /* About photo+text grid -> single column */
    div[style*="grid-template-columns: 300px 1fr"] {
      display: block !important;
      padding: 32px 24px 24px !important;
      max-width: 100% !important;
    }
    div[style*="grid-template-columns: 300px 1fr"] > div:first-child {
      margin-bottom: 24px;
    }
    div[style*="grid-template-columns: 300px 1fr"] img {
      width: 100% !important;
      max-width: 320px !important;
    }

    /* Hero image - stack below text on mobile */
    div[style*="min-height: calc(100vh - 72px)"] {
      display: block !important;
      min-height: auto !important;
    }
    div[style*="min-height: calc(100vh - 72px)"] > div:last-child {
      height: 320px !important;
    }

    /* About credentials grid */
    div[style*="grid-template-columns: 1fr 1fr"][style*="gap: 2px"] {
      display: block !important;
      margin: 0 !important;
    }

    /* Women & Fear two-column */
    div[style*="grid-template-columns: 1fr 1fr"][style*="gap: 80px"] {
      display: block !important;
      padding: 48px 24px 40px !important;
      max-width: 100% !important;
    }
    div[style*="grid-template-columns: 1fr 1fr"][style*="gap: 80px"] > div:first-child {
      margin-bottom: 32px;
    }

    /* Essay items */
    .essay-item { margin: 0 24px; }

    /* Padding fixes for button sections */
    div[style*="padding: 48px 48px"] { padding: 24px 24px 48px !important; }
    div[style*="padding: 0 48px 80px"] { padding: 0 24px 56px !important; }
    div[style*="padding: 0 48px 48px"] { padding: 0 24px 32px !important; }
    div[style*="padding: 40px 48px 80px"] { padding: 24px 24px 48px !important; }
  }

  /* Subtle fade-in */
  .page.active {
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* BRAND GOLD ACCENT
     A short gold rule before the main section eyebrows — the signature
     detail from the brand's social templates. Gold is used decoratively
     only (it lacks contrast as text on the light background). */
  .hero-eyebrow::before,
  .work-intro .work-eyebrow::before,
  .inner-hero .eyebrow::before,
  .cs-page .eyebrow::before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 2px;
    background: var(--gold);
    vertical-align: middle;
    margin-right: 14px;
    margin-bottom: 3px;
  }
