
    :root {
      --forest: #173f35;
      --forest-2: #225848;
      --moss: #647f62;
      --cream: #f8f3ea;
      --paper: #fffdf8;
      --sand: #e6d6bd;
      --ochre: #ba7143;
      --ink: #18342d;
      --muted: #5f6f69;
      --line: rgba(23, 63, 53, .15);
      --shadow: 0 24px 70px rgba(24, 52, 45, .12);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 17px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; }
    button, a { -webkit-tap-highlight-color: transparent; }
    :focus-visible { outline: 3px solid #e0a16d; outline-offset: 4px; }
    .container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
    .eyebrow {
      margin: 0 0 12px;
      color: var(--ochre);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .16em;
      text-transform: uppercase;
    }
    h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.035em; }
    h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
    h1 { margin-bottom: 24px; font-size: clamp(3rem, 6vw, 5.8rem); }
    h2 { margin-bottom: 18px; font-size: clamp(2.25rem, 4.3vw, 4rem); }
    h3 { margin-bottom: 10px; font-size: 1.14rem; letter-spacing: -.01em; }
    p { margin-top: 0; }
    .lead { color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.23rem); line-height: 1.65; }
    .button {
      display: inline-flex;
      min-height: 54px;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 22px;
      border: 1px solid transparent;
      border-radius: 999px;
      background: var(--forest);
      color: white;
      font-size: .98rem;
      font-weight: 750;
      text-decoration: none;
      transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
    }
    .button:hover { transform: translateY(-2px); background: var(--forest-2); box-shadow: 0 12px 28px rgba(23,63,53,.18); }
    .button.light { background: white; color: var(--forest); }
    .button.light:hover { background: var(--cream); }
    .arrow { font-size: 1.2em; transition: transform .2s ease; }
    .button:hover .arrow { transform: translateX(3px); }

    header {
      position: absolute;
      z-index: 10;
      top: 0;
      left: 0;
      width: 100%;
      color: white;
    }
    .nav { display: flex; min-height: 84px; align-items: center; justify-content: space-between; gap: 24px; }
    .brand { display: flex; align-items: center; gap: 12px; color: white; font-weight: 800; text-decoration: none; letter-spacing: -.02em; }
    .brand-mark { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; font-family: Georgia, serif; font-size: 1.35rem; }
    .nav-links { display: flex; align-items: center; gap: 28px; }
    .nav-links a { color: rgba(255,255,255,.84); font-size: .9rem; font-weight: 650; text-decoration: none; }
    .nav-links a:hover { color: white; }

    .hero {
      position: relative;
      min-height: 780px;
      display: grid;
      align-items: center;
      overflow: hidden;
      background: var(--forest);
      color: white;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(12,44,36,.96) 0%, rgba(12,44,36,.83) 38%, rgba(12,44,36,.14) 70%, rgba(12,44,36,.1) 100%),
        url("/assets/pilates-online-hero.png") center/cover no-repeat;
    }
    .hero::after {
      content: "";
      position: absolute;
      right: -100px;
      bottom: -260px;
      width: 560px;
      height: 560px;
      border: 1px solid rgba(255,255,255,.24);
      border-radius: 50%;
    }
    .hero-content { position: relative; z-index: 1; max-width: 720px; padding: 150px 0 110px; }
    .hero .eyebrow { color: #eab78d; }
    .hero .lead { max-width: 610px; color: rgba(255,255,255,.82); }
    .hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 34px; }
    .trust-note { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.72); font-size: .88rem; }
    .trust-note span { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #b9d6ad; box-shadow: 0 0 0 5px rgba(185,214,173,.14); }

    .proof-strip { position: relative; z-index: 2; margin-top: -64px; }
    .proof-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: rgba(255,253,248,.96);
      box-shadow: var(--shadow);
      backdrop-filter: blur(12px);
    }
    .proof-item { padding: 28px 34px; }
    .proof-item + .proof-item { border-left: 1px solid var(--line); }
    .proof-item strong { display: block; margin-bottom: 2px; font-family: Georgia, serif; font-size: 2rem; font-weight: 500; line-height: 1; }
    .proof-item span { color: var(--muted); font-size: .88rem; }

    section { padding: 110px 0; }
    .intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 88px; align-items: end; }
    .intro-grid .lead { max-width: 590px; margin-bottom: 0; }
    .benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 52px; }
    .benefit-card { padding: 30px 26px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
    .benefit-number { display: grid; width: 42px; height: 42px; margin-bottom: 36px; place-items: center; border-radius: 50%; background: var(--cream); color: var(--ochre); font-family: Georgia, serif; font-size: 1.1rem; }
    .benefit-card p { margin: 0; color: var(--muted); font-size: .94rem; }

    .how { background: var(--cream); }
    .how-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
    .how-copy { position: sticky; top: 36px; align-self: start; }
    .steps { border-top: 1px solid var(--line); }
    .step { display: grid; grid-template-columns: 64px 1fr; gap: 14px; padding: 30px 0; border-bottom: 1px solid var(--line); }
    .step-index { color: var(--ochre); font-family: Georgia, serif; font-size: 1.4rem; }
    .step p { margin-bottom: 0; color: var(--muted); }

    .about { overflow: hidden; background: var(--forest); color: white; }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
    .about .eyebrow { color: #eab78d; }
    .about p { color: rgba(255,255,255,.76); }
    .signature-card {
      position: relative;
      min-height: 470px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
      padding: 42px;
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 240px 240px 24px 24px;
      background:
        radial-gradient(circle at 50% 18%, rgba(255,255,255,.2), transparent 30%),
        linear-gradient(150deg, #6f8968, #254f42 60%, #173f35);
    }
    .signature-card::before { content: "AA"; position: absolute; top: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.11); font-family: Georgia, serif; font-size: 13rem; line-height: 1; }
    .signature-card blockquote { position: relative; margin: 0; max-width: 440px; font-family: Georgia, serif; font-size: clamp(1.6rem, 3vw, 2.35rem); line-height: 1.2; }

    .fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .check-list { display: grid; gap: 12px; margin: 8px 0 0; padding: 0; list-style: none; }
    .check-list li { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
    .check { display: grid; flex: 0 0 28px; height: 28px; place-items: center; margin-top: 1px; border-radius: 50%; background: var(--forest); color: white; font-size: .76rem; }

    .cta-section { padding-top: 40px; }
    .cta-card {
      position: relative;
      overflow: hidden;
      padding: clamp(42px, 7vw, 84px);
      border-radius: 30px;
      background: var(--ochre);
      color: white;
    }
    .cta-card::after { content: ""; position: absolute; width: 380px; height: 380px; right: -100px; top: -140px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; }
    .cta-card h2, .cta-card p, .cta-card a { position: relative; z-index: 1; }
    .cta-card h2 { max-width: 700px; }
    .cta-card p { max-width: 620px; color: rgba(255,255,255,.82); }

    footer { padding: 64px 0 90px; }
    .footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 50px; padding-bottom: 38px; border-bottom: 1px solid var(--line); }
    footer h3 { font-size: .88rem; text-transform: uppercase; letter-spacing: .09em; }
    footer p, footer a { color: var(--muted); font-size: .9rem; }
    footer a { display: block; margin-bottom: 8px; text-decoration: none; }
    footer a:hover { color: var(--forest); }
    .footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 28px; color: var(--muted); font-size: .78rem; }

    dialog { width: min(700px, calc(100% - 30px)); max-height: 82vh; padding: 0; border: 0; border-radius: 22px; color: var(--ink); box-shadow: 0 30px 100px rgba(0,0,0,.28); }
    dialog::backdrop { background: rgba(9,27,22,.72); backdrop-filter: blur(4px); }
    .dialog-inner { padding: 36px; }
    .dialog-head { display: flex; justify-content: space-between; gap: 20px; align-items: start; }
    .dialog-head h2 { font-size: 2rem; }
    .close { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: white; color: var(--ink); cursor: pointer; font-size: 1.25rem; }
    .dialog-copy { color: var(--muted); }

    .mobile-whatsapp { display: none; }
    @media (max-width: 900px) {
      .nav-links a:not(.button) { display: none; }
      .hero { min-height: 700px; }
      .hero::before { background: linear-gradient(90deg, rgba(12,44,36,.94), rgba(12,44,36,.66)), url("/assets/pilates-online-hero.png") 63% center/cover no-repeat; }
      .proof-grid, .benefit-grid { grid-template-columns: 1fr 1fr; }
      .proof-item:nth-child(3) { grid-column: 1 / -1; border-top: 1px solid var(--line); border-left: 0; }
      .intro-grid, .how-grid, .about-grid, .fit-grid { grid-template-columns: 1fr; gap: 46px; }
      .how-copy { position: static; }
      .signature-card { min-height: 390px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid > :first-child { grid-column: 1 / -1; }
    }
    @media (max-width: 600px) {
      body { font-size: 16px; }
      .container { width: min(100% - 28px, 1160px); }
      .nav { min-height: 72px; }
      .nav .button { display: none; }
      .hero { min-height: 720px; }
      .hero-content { padding: 120px 0 110px; }
      h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
      section { padding: 82px 0; }
      .proof-strip { margin-top: -42px; }
      .proof-grid, .benefit-grid { grid-template-columns: 1fr; }
      .proof-item, .proof-item:nth-child(3) { grid-column: auto; border-left: 0; border-top: 1px solid var(--line); }
      .proof-item:first-child { border-top: 0; }
      .benefit-number { margin-bottom: 22px; }
      .signature-card { min-height: 360px; padding: 30px; border-radius: 180px 180px 20px 20px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-grid > :first-child { grid-column: auto; }
      .footer-bottom { flex-direction: column; }
      .mobile-whatsapp { position: fixed; z-index: 20; right: 14px; bottom: 14px; display: grid; width: 58px; height: 58px; place-items: center; border-radius: 50%; background: #1d9d5c; color: white; box-shadow: 0 14px 38px rgba(0,0,0,.24); text-decoration: none; font-weight: 900; }
    }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { transition-duration: .01ms !important; }
    }
    /* Real photography: portrait compositions remain intact on every screen. */
    .hero { min-height: 0; padding: 118px 0 124px; }
    .hero::before, .hero::after { display: none; }
    .hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 48px; }
    .hero-content { padding: 0; min-width: 0; }
    .hero h1 { font-size: clamp(2.8rem, 4.5vw, 4.65rem); }
    .hero-photo { height: 590px; margin: 0; overflow: hidden; border-radius: 220px 220px 22px 22px; background: #f6ecdf; }
    .hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 76%; }
    .portrait { margin: 0; max-width: 440px; justify-self: center; }
    .portrait img { width: 100%; height: auto; border-radius: 180px 180px 20px 20px; }
    .portrait figcaption { margin-top: 16px; font-size: .875rem; color: #e1e9e4; }
    .company-details { padding-top: 28px; color: var(--muted); font-size: .875rem; overflow-wrap: anywhere; }
    .footer-grid { grid-template-columns: 1fr 1fr .7fr; }
    .footer-grid > div { min-width: 0; }
    footer a { overflow-wrap: anywhere; }
    .nav .button.light { color: var(--forest); }
    @media (max-width: 900px) {
      .hero-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
      .hero h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); }
      .hero-photo { height: 500px; border-radius: 140px 140px 20px 20px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .hero { padding: 104px 0 82px; }
      .hero-grid { grid-template-columns: 1fr; gap: 34px; }
      .hero h1 { font-size: clamp(2.65rem, 10.5vw, 3.5rem); }
      .hero-photo { width: min(100%, 380px); height: 470px; justify-self: center; }
      .hero-actions { margin-top: 24px; }
      .hero .button { width: 100%; }
      .footer-grid { grid-template-columns: 1fr; }
    }
  
/* Shared navigation and new audience pages */
header.site-header { position:relative; background:var(--forest); }
.site-header .nav { flex-wrap:wrap; padding-block:14px; min-height:80px; }
.site-header .nav-links { flex-wrap:wrap; gap:18px; }
.site-header .nav-links a { display:inline-flex; font-size:.9rem; }
.site-header .nav-links a[aria-current="page"] { color:white; text-decoration:underline; text-underline-offset:7px; }
.site-header .brand { color:white; }
.hero { padding-top:56px; }
.page-heading { padding:62px 0 28px; text-align:center; }
.page-heading h1 { max-width:850px; margin:0 auto 20px; font-size:clamp(2.7rem,5vw,4.5rem); }
.page-heading .lead { max-width:700px; margin:auto; }
.pathways { display:grid; grid-template-columns:1fr 1fr; gap:28px; padding-bottom:74px; }
.path-card { overflow:hidden; display:flex; flex-direction:column; border-radius:24px; border:1px solid var(--line); background:var(--cream); }
.path-picture { width:100%; height:285px; object-fit:cover; object-position:center 44%; }
.path-card:first-child .path-picture { object-position:center 76%; }
.path-card.course-card .path-picture { object-position:center 32%; }
.path-card.mentorship .path-picture { object-position:center 16%; }
.path-copy { padding:32px; display:flex; flex:1; flex-direction:column; align-items:flex-start; }
.path-copy h2 { font-size:2.25rem; }
.path-copy p { color:var(--muted); }
.path-copy .button { margin-top:auto; }
.path-card.mentorship { background:#f4e9e6; }
.path-card.mentorship .button { background:#652c40; }
.pill-row { display:flex; flex-wrap:wrap; gap:10px; margin:22px 0; }
.pill { padding:7px 14px; border:1px solid currentColor; border-radius:30px; font-size:.9rem; }
.mentor-hero { background:#58283a; color:white; padding:64px 0 84px; }
.mentor-hero .hero-grid { grid-template-columns:1.1fr .9fr; }
.mentor-hero h1 { font-size:clamp(2.8rem,4.8vw,4.8rem); }
.mentor-hero .lead { color:#f0dce4; }
.mentor-hero .eyebrow { color:#f5c3a4; }
.mentor-photo { margin:0; max-width:410px; justify-self:end; }
.mentor-photo img { width:100%; height:auto; border-radius:190px 190px 22px 22px; }
.module-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:40px; }
.module-card { padding:32px; border:1px solid var(--line); border-radius:20px; }
.module-card h3 { font-family:Georgia,serif; font-size:1.7rem; font-weight:500; }
.module-card p { color:var(--muted); }
.module-card small { display:block; font-size:.875rem; padding-top:16px; border-top:1px solid var(--line); }
.practice-grid { display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
.practice-photo { margin:0; }
.practice-photo img { width:100%; max-height:590px; object-fit:contain; border-radius:24px; background:#f4eadf; }
.agenda-card { border:1px solid var(--line); border-radius:26px; padding:clamp(28px,5vw,60px); background:#f4e9e6; }
.agenda-card h2 { max-width:750px; }
.agenda-card .lead { max-width:800px; }
.agenda-note { margin:16px 0 0; color:var(--muted); font-size:.9rem; }
.form-section { padding: 0 0 80px; }
.availability-form { max-width:720px; margin:0 auto; padding:clamp(24px,5vw,48px); border:1px solid var(--line); border-radius:24px; background:#f4e9e6; display:grid; gap:20px; }
.availability-form label, .availability-form legend { color:var(--forest); font-weight:600; }
.availability-form input:not([type="checkbox"]), .availability-form select, .availability-form textarea { display:block; width:100%; margin-top:8px; padding:13px 14px; border:1px solid #b7aaa5; border-radius:10px; background:white; color:var(--ink); font:inherit; }
.availability-form textarea { resize:vertical; }
.availability-form fieldset { border:0; padding:0; margin:0; display:flex; flex-wrap:wrap; gap:10px 18px; }
.availability-form .check-option { display:flex; align-items:center; gap:8px; font-weight:400; }
.availability-form .check-option input { accent-color:#652c40; width:18px; height:18px; }
@media(max-width:900px) {
 .module-grid { grid-template-columns:1fr; }
 .practice-grid { grid-template-columns:1fr; gap:35px; }
 .path-copy { padding:24px; }
 .path-copy h2 { font-size:1.9rem; }
}
@media(max-width:600px) {
 .site-header .nav { gap:16px; }
 .site-header .nav-links { gap:14px; width:100%; }
 .site-header .nav-links a { font-size:.875rem; }
 .pathways,.mentor-hero .hero-grid { grid-template-columns:1fr; }
 .path-picture { height:270px; }
 .page-heading { padding-top:42px; }
 .mentor-photo { justify-self:center; width:min(100%,360px); }
 .mentor-hero { padding:44px 0 58px; }
 .hero { padding-top:40px; }
 .step { grid-template-columns:40px 1fr; }
}
