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

    :root {
      --ink: #1c1c1a;
      --warm: #f5efe6;
      --cream: #faf6f0;
      --sage: #4F836D;
      --rust: #b16639;
      --muted: #6b6660;
      --rule: #d8d0c6;
      --accent-light: #f0ebe2;
    }

    html { scroll-behavior: smooth; font-size: 17px; background: #1a1a18; color-scheme: dark; }

    body {
      font-family: "DM Sans", sans-serif;
      background: var(--ink);
      color: var(--ink);
      font-size: 1rem;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: calc(1.1rem + env(safe-area-inset-top, 0px));
      padding-bottom: 1.1rem;
      padding-left: 3rem;
      padding-right: 3rem;
      background: #FBF8F5;
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(49,62,74,0.1);
    }

    .nav-logo img {
      height: 40px;
      width: auto;
      margin-top: 6px;
      margin-bottom: -4px;
    }

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

    .nav-links a {
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      color: #313E4A;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: rgba(49,62,74,0.65); }
    .nav-links a[aria-current="page"] { color: #313E4A; font-weight: 700; }

    .nav-cta {
      background: var(--rust) !important;
      color: white !important;
      padding: 0.5rem 1.3rem !important;
      letter-spacing: 0.08em !important;
      border-radius: 8px !important;
      transition: opacity 0.2s !important;
    }

    .nav-cta:hover { opacity: 0.85 !important; }

    /* HAMBURGER BUTTON */
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.4rem;
      flex-direction: column;
      gap: 5px;
      align-items: flex-end;
    }

    .nav-toggle span {
      display: block;
      height: 2px;
      background: #313E4A;
      border-radius: 2px;
      transition: transform 0.28s ease, opacity 0.28s ease, width 0.28s ease;
    }

    .nav-toggle span:nth-child(1) { width: 22px; }
    .nav-toggle span:nth-child(2) { width: 15px; }
    .nav-toggle span:nth-child(3) { width: 22px; }

    .nav-open .nav-toggle span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
      width: 22px;
    }
    .nav-open .nav-toggle span:nth-child(2) { opacity: 0; width: 22px; }
    .nav-open .nav-toggle span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
      width: 22px;
    }

    /* HERO */
    .hero {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background-color: #1a1a18;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url("./field.png");
      background-size: cover;
      background-position: center 30%;
      filter: brightness(0.42) saturate(0.8);
      z-index: 0;
    }

    .hero-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(26,26,24,0.7) 0%, rgba(26,26,24,0.15) 60%, transparent 100%);
    }

    .hero-content {
      position: relative;
      z-index: 1;
      padding: 4rem 0 6rem;
      flex: 1;
      min-width: 0;
    }

    .hero-eyebrow {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--rust);
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 0.7s ease forwards 0.2s;
    }

    .hero-headline {
      font-family: "Lexend", sans-serif;
      font-size: clamp(2.5rem, 4.5vw, 3.7rem);
      font-weight: 400;
      line-height: 1.08;
      letter-spacing: -0.03em;
      color: white;
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 0.7s ease forwards 0.35s;
    }

    .hero-headline em {
      font-style: normal;
      font-weight: 400;
      letter-spacing: 0.03em;
      color: rgba(255,255,255,0.55);
    }

    .hero-sub {
      font-size: 1.05rem;
      color: #ffffff;
      font-weight: 300;
      max-width: 600px;
      margin-bottom: 2.75rem;
      line-height: 1.72;
      opacity: 0;
      animation: fadeUp 0.7s ease forwards 0.5s;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: flex-start;
      gap: 3rem;
      width: 100%;
      padding: 0 5rem;
    }

    .hero-actions {
      display: flex;
      gap: 1.25rem;
      align-items: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.7s ease forwards 0.65s;
    }

    .hero-conditions-card {
      flex-shrink: 0;
      width: 260px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 16px;
      padding: 1.5rem 1.75rem;
      backdrop-filter: blur(8px);
      opacity: 0;
      animation: fadeUp 0.7s ease forwards 0.75s;
      margin-top: 4rem;
    }

    .hero-conditions-label {
      font-size: 1.05rem;
      font-weight: 500;
      letter-spacing: 0;
      text-transform: none;
      color: rgba(255,255,255,0.95);
      margin-bottom: 1rem;
      line-height: 1.4;
    }

    .hero-conditions-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
    }

    .hero-conditions-list li {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.75);
      font-weight: 300;
      padding-left: 1rem;
      position: relative;
      line-height: 1.4;
    }

    .hero-conditions-list li::before {
      content: "–";
      position: absolute;
      left: 0;
      color: rgba(255,255,255,0.5);
    }

    .btn-primary {
      background: var(--rust);
      color: white;
      padding: 0.9rem 2.1rem;
      font-family: "DM Sans", sans-serif;
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.15s;
      display: inline-block;
    }

    .btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

    .btn-secondary {
      background: transparent;
      color: var(--rust);
      padding: 0.9rem 2.1rem;
      font-family: "DM Sans", sans-serif;
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1.5px solid var(--rust);
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      display: inline-block;
    }

    .btn-secondary:hover { background: rgba(3,145,140,0.10); transform: translateY(-1px); }

    .btn-ghost {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      letter-spacing: 0.08em;
      border-bottom: 1px solid rgba(255,255,255,0.2);
      border-radius: 8px;
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
    }

    .btn-ghost:hover { color: white; border-color: rgba(255,255,255,0.6); }

    .hero-credential {
      position: absolute;
      bottom: 2.5rem;
      left: 5rem;
      display: flex;
      align-items: center;
      gap: 0.85rem;
      z-index: 1;
      opacity: 0;
      animation: fadeUp 0.6s ease forwards 0.85s;
    }

    .hero-credential-text {
      font-size: 0.8rem;
      letter-spacing: -0.01em;
      color: rgba(255,255,255,0.5);
      line-height: 1.5;
      margin: 0;
    }

    .hero-credential-text strong {
      color: rgba(255,255,255,0.72);
      font-weight: 500;
    }

    /* SECTION BASE */
    .section-eyebrow {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--rust);
      margin-bottom: 1rem;
    }

    .section-headline {
      font-family: "Lexend", sans-serif;
      font-size: clamp(2rem, 3.5vw, 2.75rem);
      font-weight: 500;
      line-height: 1.15;
      letter-spacing: -0.03em;
      margin-bottom: 1.5rem;
    }

    .section-headline em { font-style: normal; font-weight: 400; letter-spacing: 0.03em; color: var(--sage); }

    .section-body {
      font-size: 1rem;
      color: var(--muted);
      font-weight: 300;
      line-height: 1.72;
      letter-spacing: 0.01em;
    }


    /* Italic headline treatment: weight 300 + spacing instead of serif italic */
    .hero-headline em,
    .section-headline em,
    .col-headline em,
    .how-title em,
    .membership-tier em {
      font-style: normal;
      font-weight: 400;
      letter-spacing: 0.03em;
    }

    /* FOR YOU section */
    .for-you {
      background: var(--ink);
      color: var(--cream);
      padding: 6rem 5rem;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3.5rem;
    }

    .for-you-col .col-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--rust);
      margin-bottom: 1.25rem;
    }

    .for-you-col .col-headline {
      font-family: "Lexend", sans-serif;
      font-size: clamp(1.6rem, 2.5vw, 2rem);
      font-weight: 500;
      line-height: 1.2;
      margin-bottom: 1.25rem;
      letter-spacing: -0.01em;
    }

    .for-you-col .col-body {
      font-size: 0.95rem;
      font-weight: 300;
      line-height: 1.72;
      letter-spacing: 0.01em;
      color: rgba(250,247,242,0.58);
    }

    .for-you-col {
      border-left: 1px solid rgba(250,247,242,0.08);
      padding-left: 5rem;
    }

    .for-you-col:first-child {
      border-left: none;
      padding-left: 0;
    }

    /* HOW IT WORKS */
    .how {
      background: var(--warm);
      padding: 5.5rem 5rem;
    }

    .how-inner { max-width: 1100px; margin: 0 auto; }

    .how-header { margin-bottom: 4.5rem; }

    .how-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
    }

    .how-item {
      padding-top: 1.75rem;
      border-top: 1px solid var(--rule);
      border-radius: 8px;
    }

    .how-num {
      font-family: "Lexend", sans-serif;
      font-size: 3.8rem;
      font-weight: 400;
      color: var(--rule);
      line-height: 1;
      margin-bottom: 1rem;
    }

    .how-title {
      font-family: "Lexend", sans-serif;
      font-size: 1.15rem;
      font-weight: 500;
      margin-bottom: 0.75rem;
    }

    .how-body {
      font-size: 0.9rem;
      color: var(--muted);
      font-weight: 300;
      line-height: 1.68;
      letter-spacing: 0.01em;
    }

    /* AREAS */
    .areas {
      background: var(--cream);
      padding: 6rem 5rem;
    }

    .areas-inner { max-width: 1100px; margin: 0 auto; }

    .areas-header { margin-bottom: 4.5rem; }

    .areas-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
    }

    .areas-item {
      padding-top: 1.75rem;
      border-top: 1px solid var(--rule);
    }

    /* COACHING CALLOUT */
    .coaching-callout {
      background: var(--warm);
      padding: 3rem 5rem;
      text-align: center;
      border-top: 1px solid var(--rule);
      border-bottom: 1px solid var(--rule);
    }

    .coaching-callout .section-eyebrow {
      margin-bottom: 1.25rem;
    }

    .coaching-callout-text {
      font-family: "Lexend", sans-serif;
      font-size: 1.4rem;
      font-weight: 300;
      font-style: normal;
      letter-spacing: 0.03em;
      color: var(--ink);
      max-width: 680px;
      margin: 0 auto;
      line-height: 1.55;
    }

    /* MEMBERSHIP */
    .membership {
      display: block;
      background: var(--warm);
      padding: 5.5rem 5rem;
    }

    .membership-intro {
      max-width: 620px;
      margin: 0 auto 4.5rem;
      text-align: center;
    }

    .membership-cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 2rem;
      max-width: 980px;
      margin: 0 auto;
    }

    .membership-badge {
      font-size: 0.62rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--rust);
      margin-bottom: 1rem;
    }

    .membership-tier {
      font-family: "Lexend", sans-serif;
      font-size: 1.15rem;
      font-weight: 500;
      margin-bottom: 1.5rem;
      line-height: 1.3;
    }

    .membership-card {
      border: 1px solid var(--rule);
      border-radius: 8px;
      padding: 3rem;
      background: var(--cream);
      width: 100%;
      display: flex;
      flex-direction: column;
    }

    .membership-card--featured {
      background: #1e3a34;
      border-color: #1e3a34;
      color: #faf6f0;
    }

    .membership-card--featured .membership-badge {
      background: rgba(255,255,255,0.12);
      color: #faf6f0;
      padding: 0.25rem 0.6rem;
      border-radius: 8px;
    }

    .membership-card--featured .membership-tier {
      color: #faf6f0;
    }

    .membership-card--featured .membership-price span {
      color: rgba(250,246,240,0.65);
    }

    .membership-card--featured .membership-period {
      color: rgba(250,246,240,0.65);
    }

    .membership-card--featured .membership-includes li {
      color: rgba(250,246,240,0.65);
    }

    .membership-card--featured .membership-note {
      color: rgba(250,246,240,0.65);
      border-color: rgba(250,246,240,0.15);
    }

    .membership-card--featured .btn-secondary {
      color: #faf6f0;
      border-color: #faf6f0;
    }

    .membership-card--featured .btn-secondary:hover {
      background: rgba(250,246,240,0.10);
    }

    .membership-price {
      font-family: "Lexend", sans-serif;
      font-size: 3.8rem;
      font-weight: 500;
      line-height: 1;
      margin-bottom: 0.2rem;
      letter-spacing: -0.03em;
    }

    .membership-price span {
      font-size: 1.15rem;
      font-weight: 400;
      color: var(--muted);
      font-family: "DM Sans", sans-serif;
    }

    .membership-period {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 2.5rem;
    }

    .membership-includes {
      list-style: none;
      margin-bottom: 2.5rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .membership-includes li {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      font-size: 0.92rem;
      line-height: 1.55;
      color: var(--ink);
      font-weight: 400;
    }

    .membership-includes li::before {
      content: "";
      width: 18px;
      height: 1px;
      background: var(--rust);
      margin-top: 0.78em;
      flex-shrink: 0;
    }

    .membership-delivery {
      font-size: 0.8rem;
      color: var(--muted);
      margin-bottom: 1.75rem;
      line-height: 1.5;
    }

    .membership-card--featured .membership-delivery {
      color: rgba(250,246,240,0.65);
    }

    .membership-note {
      font-size: 0.73rem;
      color: var(--muted);
      letter-spacing: 0.04em;
      border-top: 1px solid var(--rule);
      padding-top: 1.25rem;
      margin-top: 1.25rem;
    }

    /* ABOUT */
    .about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      background: var(--cream);
    }

    .about-photo {
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--warm);
      min-height: 500px;
    }

    .about-photo img {
      width: 420px;
      height: 420px;
      object-fit: cover;
      object-position: center top;
      border-radius: 50%;
      display: block;
    }

    .about-content {
      padding: 6rem 5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .about-sig {
      font-family: "Lexend", sans-serif;
      font-style: normal;
      font-weight: 300;
      font-size: 1.65rem;
      letter-spacing: 0.04em;
      color: var(--sage);
      margin-top: 2.5rem;
    }

    .credentials {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-top: 2rem;
    }

    .credential-tag {
      position: relative;
      font-size: 0.63rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      border: 1px solid var(--rule);
      border-radius: 8px;
      padding: 0.75rem 0.9rem 0.4rem 0.9rem;
      color: var(--muted);
    }

    .cred-num {
      position: absolute;
      top: 3px;
      left: 5px;
      font-size: 0.46rem;
      line-height: 1;
      color: var(--rule);
      letter-spacing: 0;
      font-weight: 500;
    }

    /* CTA STRIP */
    .cta-strip {
      background: var(--sage);
      padding: 6rem 5rem;
      text-align: center;
      color: white;
    }

    .cta-strip .section-headline {
      color: white;
      max-width: 560px;
      margin: 0 auto 1.5rem;
    }

    .cta-strip .section-headline em { color: rgba(255,255,255,0.55); }

    .cta-strip p {
      font-size: 1rem;
      font-weight: 300;
      color: rgba(255,255,255,0.68);
      max-width: 440px;
      margin: 0 auto 2.75rem;
      line-height: 1.72;
    }

    .btn-light {
      background: white;
      color: var(--ink);
      padding: 0.9rem 2.25rem;
      font-family: "DM Sans", sans-serif;
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 8px;
      display: inline-block;
      transition: transform 0.15s, background 0.2s;
    }

    .btn-light:hover { transform: translateY(-1px); background: var(--cream); }

    /* FOOTER */
    footer {
      background: var(--ink);
      color: rgba(250,247,242,0.38);
      padding-top: 2.75rem;
      padding-bottom: calc(2.75rem + env(safe-area-inset-bottom, 0px));
      padding-left: 5rem;
      padding-right: 5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.72rem;
      letter-spacing: 0.07em;
    }

    .footer-logo img { height: 22px; width: auto; opacity: 0.6; }

    footer a {
      color: rgba(250,247,242,0.38);
      text-decoration: none;
      transition: color 0.2s;
    }

    footer a:hover { color: rgba(250,247,242,0.75); }

    /* ANIMATIONS */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .reveal {
      opacity: 1;
      transform: none;
    }

    /* RESPONSIVE */
    @media (max-width: 1100px) {
      .areas { padding: 5rem 2.5rem; }
      .areas-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }

      .for-you {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
      .for-you-col:nth-child(3) {
        grid-column: 1 / -1;
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(250,247,242,0.08);
        padding-top: 2.5rem;
        max-width: 60%;
      }
      .membership-cards {
        gap: 1.5rem;
      }
    }

    @media (max-width: 900px) {
      nav {
        padding-top: calc(1rem + env(safe-area-inset-top, 0px));
        padding-bottom: 1rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        justify-content: space-between;
        flex-wrap: wrap;
      }
      .nav-toggle { display: flex; }
      .nav-logo img { height: 40px; }
      .nav-links { display: none; }
      .nav-open .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0.75rem 0 1.25rem;
        gap: 0;
        align-items: stretch;
      }
      .nav-open .nav-links li {
        border-bottom: 1px solid rgba(49,62,74,0.1);
      }
      .nav-open .nav-links li:first-child {
        border-top: 1px solid rgba(49,62,74,0.1);
      }
      .nav-open .nav-links a {
        display: block;
        padding: 0.9rem 0;
        font-size: 0.8rem;
        color: #313E4A;
      }
      .nav-open .nav-links li:last-child {
        border-bottom: none;
        padding-top: 1rem;
      }
      .nav-open .nav-links .nav-cta {
        display: inline-block;
        padding: 0.6rem 1.4rem !important;
      }
      .hero { height: auto; min-height: 100vh; align-items: flex-start; overflow: visible; display: flex; flex-direction: column; }
      .hero-bg { min-height: 100vh; }
      .hero-inner { flex-direction: column; padding: 0 1.75rem 3rem; align-items: flex-start; flex: 1; }
      .hero-content { padding: 8rem 0 2rem; }
      .hero-conditions-card { width: 100%; max-width: 100%; margin-top: 0; margin-bottom: 0; opacity: 1; animation: none; }
      .hero-credential { position: relative; bottom: auto; left: auto; padding: 1.5rem 1.75rem 2.5rem; opacity: 1; animation: none; }
      .hero-eyebrow br { display: none; }
      .for-you-col { padding-left: 2rem; }
      .for-you {
        grid-template-columns: 1fr;
        padding: 3.5rem 1.75rem;
        gap: 2.5rem;
      }
      .for-you-col {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(250,247,242,0.08);
        padding-top: 2.5rem;
        max-width: 100%;
      }
      .for-you-col:first-child {
        border-top: none;
        padding-top: 0;
      }
      .for-you-col:nth-child(3) {
        grid-column: auto;
        max-width: 100%;
      }
      .areas { padding: 3.5rem 1.75rem; }
      .areas-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .how { padding: 3.5rem 1.75rem; }
      .how-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .membership { padding: 4rem 1.75rem; }
      .membership-intro { margin-bottom: 3rem; }
      .membership-cards { grid-template-columns: 1fr; gap: 1.5rem; }
      .membership-card { padding: 2rem 1.5rem; }
      .about { grid-template-columns: 1fr; }
      .about-photo {
        min-height: auto;
        padding: 3rem 1.75rem 1rem;
      }
      .about-photo img {
        width: 200px;
        height: 200px;
        margin: 0 auto;
      }
      .about-content { padding: 1.5rem 1.75rem 3rem; }
      .cta-strip { padding: 3.5rem 1.75rem; }
      footer { flex-direction: column; gap: 1rem; text-align: center; padding-top: 2rem; padding-left: 2rem; padding-right: 2rem; padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px)); }
    }
