
  :root {
    --ink: #15222b;
    --ink-soft: #31404a;
    --forest: #29443f;
    --forest-deep: #1e3531;
    --paper: #f3efe6;
    --paper-2: #ebe4d8;
    --white: #fffdf9;
    --brass: #b58a53;
    --brass-light: #d6bf9a;
    --clay: #a95f4f;
    --sage: #8c9b8e;
    --line: rgba(21, 34, 43, .14);
    --shadow: 0 28px 80px rgba(18, 30, 38, .13);
    --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
    --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
    --max: 1240px;
  }

  * { box-sizing: border-box; }
  html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    /* Never reserve a permanent white scrollbar gutter; clip sideways overflow */
    overflow-x: clip;
    scrollbar-gutter: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(41, 68, 63, 0.35) transparent;
    /* Section links land below sticky header */
    scroll-padding-top: 5.5rem;
  }
  @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;
    }
  }
  body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
    max-width: 100%;
  }
  /* Thin, paper-toned scrollbars only when needed — never ugly white tracks */
  * {
    scrollbar-width: thin;
    scrollbar-color: rgba(41, 68, 63, 0.35) transparent;
  }
  *::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }
  *::-webkit-scrollbar-track {
    background: transparent;
  }
  *::-webkit-scrollbar-thumb {
    background: rgba(41, 68, 63, 0.32);
    border-radius: 99px;
  }
  *::-webkit-scrollbar-thumb:hover {
    background: rgba(41, 68, 63, 0.5);
  }
  *::-webkit-scrollbar-corner {
    background: transparent;
  }
  a { color: inherit; text-decoration: none; }
  a:focus-visible,
  button:focus-visible {
    outline: 2px solid var(--forest);
    outline-offset: 3px;
  }
  button, input { font: inherit; }
  img {
    display: block;
    max-width: 100%;
    height: auto;
  }
  /* Fluid page gutters + notched phones */
  .container {
    width: min(var(--max), calc(100% - max(32px, env(safe-area-inset-left) + env(safe-area-inset-right) + 32px)));
    margin: 0 auto;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
  .skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 1000;
    background: var(--forest);
    color: #fff;
    padding: 12px 18px;
    font-weight: 700;
  }
  .skip-link:focus {
    left: 12px;
    top: 12px;
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    margin: 0 0 18px;
    color: var(--clay);
    font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  }
  .eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
  h1, h2, h3 { font-family: var(--serif); font-weight: 500; margin: 0; letter-spacing: -.02em; }
  h1 { font-size: clamp(2.35rem, 1.2rem + 4.2vw, 4.75rem); line-height: .97; }
  h2 { font-size: clamp(1.85rem, 1rem + 2.8vw, 3.5rem); line-height: 1.05; }
  h3 { font-size: clamp(1.25rem, 1rem + 0.8vw, 1.85rem); line-height: 1.15; }
  p { margin: 0; }
  .button {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    min-height: 54px; padding: 0 22px;
    border: 1px solid transparent; border-radius: 999px;
    font-size: 14px; font-weight: 700; letter-spacing: .015em;
    transition: .2s ease; cursor: pointer;
  }
  .button svg { width: 18px; height: 18px; }
  .button-primary { background: var(--forest); color: var(--white); box-shadow: 0 10px 25px rgba(41,68,63,.18); }
  .button-primary:hover { transform: translateY(-1px); background: var(--forest-deep); }
  .button-secondary { border-color: var(--ink); color: var(--ink); background: transparent; }
  .button-secondary:hover { background: rgba(21,34,43,.05); }
  .text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    border-bottom: 1px solid rgba(21, 34, 43, 0.34);
    padding-bottom: 4px;
  }
  /* Buttons using text-link must not keep native grey chrome */
  button.text-link {
    margin: 0;
    padding: 0 0 4px;
    border: 0;
    border-bottom: 1px solid rgba(21, 34, 43, 0.34);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--ink);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
  }
  button.text-link:hover {
    border-bottom-color: var(--ink);
    background: transparent;
  }

  .utility {
    background: var(--ink); color: rgba(255,255,255,.82);
    font-size: 11px; letter-spacing: .09em; text-transform: uppercase;
  }
  .utility-inner { min-height: 34px; display: flex; align-items: center; justify-content: center; gap: 24px; }
  .utility a { color: white; font-weight: 700; }
  .utility-location { display: flex; align-items: center; gap: 10px; }
  .utility-location svg { width: 13px; height: 13px; color: var(--brass-light); }

  .nav-wrap {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(243,239,230,.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  /* Back-to-top control (shown when scrolled) */
  .back-to-top {
    position: fixed;
    right: max(16px, env(safe-area-inset-right));
    bottom: max(20px, env(safe-area-inset-bottom));
    z-index: 80;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: var(--forest);
    color: var(--white);
    box-shadow: 0 12px 32px rgba(18, 30, 38, .22);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .back-to-top:hover { background: var(--forest-deep); }
  .back-to-top:focus-visible {
    outline: 2px solid var(--forest);
    outline-offset: 3px;
  }
  .back-to-top svg { width: 22px; height: 22px; }
  nav {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
  }
  .brand { display: inline-flex; align-items: center; gap: 15px; flex: 0 0 auto; }
  .brand-mark { width: 44px; height: 44px; color: var(--forest); }
  .brand-name { display: flex; flex-direction: column; gap: 0; justify-content: center; line-height: 0; }
  .brand-name strong { font-family: var(--serif); font-size: 24px; font-weight: 600; line-height: 1; letter-spacing: .01em; }
  .brand-name > span { font-size: 9px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-soft); }
  .brand-wordmark-img {
    height: 28px;
    width: auto;
    max-width: min(180px, 46vw);
    display: block;
    object-fit: contain;
    object-position: left center;
  }
  .nav-links { display: flex; align-items: center; gap: clamp(12px, 2vw, 28px); margin-left: auto; flex-wrap: wrap; justify-content: flex-end; }
  .nav-links > a { font-size: 13px; font-weight: 650; color: var(--ink-soft); min-height: 44px; display: inline-flex; align-items: center; }
  .nav-links > a:hover { color: var(--ink); }
  .nav-links > a.button-primary, .nav-links > a.button-primary:hover { color: var(--white); }
  .nav-cta { margin-left: 5px; white-space: nowrap; }
  .menu-button {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    color: var(--ink);
    flex-shrink: 0;
    position: relative;
    z-index: 60; /* stay above the open panel so the control never “vanishes” */
  }
  .menu-button svg { width: 24px; height: 24px; }
  /* Lock page scroll only while the mobile panel is open */
  body.nav-open {
    overflow: hidden;
    touch-action: none;
  }

  .hero {
    position: relative; overflow: hidden;
    min-height: 810px;
    background:
      linear-gradient(90deg, rgba(181,138,83,.09) 1px, transparent 1px) 0 0/110px 100%,
      var(--paper);
  }
  .hero::after {
    content: ""; position: absolute; left: -120px; bottom: 58px; width: 620px; height: 145px; opacity: .38;
    background: repeating-linear-gradient(to bottom, transparent 0 19px, rgba(41,68,63,.18) 19px 20px);
    transform: rotate(-4deg); pointer-events: none;
  }
  .hero-grid { min-height: 810px; display: grid; grid-template-columns: .88fr 1.12fr; align-items: stretch; }
  .hero-copy { position: relative; z-index: 3; display: flex; flex-direction: column; justify-content: center; padding: 84px 68px 115px 0; }
  .hero-copy h1 { max-width: 620px; }
  .hero-copy .lead { max-width: 570px; margin-top: 28px; color: var(--ink-soft); font-size: 19px; line-height: 1.65; }
  .hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 36px; }
  .hero-mini { margin-top: 35px; display: flex; flex-wrap: wrap; gap: 20px; color: var(--ink-soft); font-size: 12px; font-weight: 700; }
  .hero-mini span { display: inline-flex; align-items: center; gap: 8px; }
  .hero-mini svg { width: 16px; height: 16px; color: var(--clay); }
  .hero-photo-wrap { position: relative; min-width: 0; }
  .hero-photo {
    /* Bleed to right edge only — no 100vw (that forces white scrollbars) */
    position: absolute;
    top: 42px;
    right: 0;
    bottom: 42px;
    left: 0;
    border-radius: 48px 0 0 48px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #ddd;
  }
  /* Extend photo to the true viewport right edge; parent .hero clips overflow */
  @media (min-width: 861px) {
    .hero { overflow-x: clip; }
    .hero-photo {
      right: max(-48px, calc(50% - 50vw));
    }
  }
  .hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Peninsula grand living room — piano + light in frame */
    object-position: 42% 48%;
  }
  .hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,27,34,.12), transparent 35%); }
  .hero-note {
    position: absolute; z-index: 2; left: -34px; bottom: 76px; width: 210px; padding: 18px 20px;
    background: rgba(255,253,249,.93); border: 1px solid rgba(255,255,255,.7); border-radius: 18px;
    box-shadow: 0 18px 50px rgba(17,32,42,.16); backdrop-filter: blur(12px);
  }
  .hero-note small { display: block; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--clay); }
  .hero-note strong { display: block; margin-top: 6px; font-family: var(--serif); font-size: 23px; font-weight: 600; line-height: 1.1; }
  .hero-note span { display: block; margin-top: 5px; color: var(--ink-soft); font-size: 12px; }

  .trust-bar { position: relative; z-index: 6; margin-top: -70px; }
  .trust-card {
    min-height: 138px; display: grid; grid-template-columns: 1.2fr repeat(3, .8fr);
    background: var(--white); border: 1px solid rgba(21,34,43,.08); border-radius: 22px; box-shadow: var(--shadow); overflow: hidden;
  }
  .trust-intro { padding: 31px 34px; display: flex; flex-direction: column; justify-content: center; background: var(--forest); color: var(--white); }
  .trust-intro small { color: var(--brass-light); font-size: 10px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
  .trust-intro strong { margin-top: 8px; font-family: var(--serif); font-size: 28px; font-weight: 500; line-height: 1.1; }
  .trust-item { padding: 28px 28px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
  .trust-item:last-child { border-right: 0; }
  .trust-item strong { font-family: var(--serif); font-size: 27px; font-weight: 600; }
  .trust-item span { margin-top: 3px; color: var(--ink-soft); font-size: 12px; line-height: 1.4; }

  section { position: relative; }
  .intro { padding: 160px 0 138px; }
  .intro-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 110px; align-items: start; }
  .intro-kicker { position: sticky; top: 120px; }
  .intro-kicker .index { display: block; margin-bottom: 40px; font-family: var(--serif); font-size: 82px; line-height: 1; color: rgba(41,68,63,.14); }
  .intro-copy h2 { max-width: 760px; }
  .intro-copy > p { margin-top: 30px; max-width: 700px; color: var(--ink-soft); font-size: 18px; line-height: 1.75; }
  .principles { margin-top: 52px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 46px; border-top: 1px solid var(--line); }
  .principle { padding: 27px 0; border-bottom: 1px solid var(--line); }
  .principle strong { display: block; font-family: var(--serif); font-size: 23px; font-weight: 600; }
  .principle p { margin-top: 8px; color: var(--ink-soft); font-size: 13px; line-height: 1.65; }

  .lessons { padding: 126px 0 138px; background: var(--white); overflow: hidden; }
  .lessons::before { content: ""; position: absolute; right: -110px; top: -50px; width: 360px; height: 360px; border: 1px solid rgba(181,138,83,.25); border-radius: 50%; box-shadow: 0 0 0 45px rgba(181,138,83,.06), 0 0 0 90px rgba(181,138,83,.035); }
  .section-head { display: flex; align-items: end; justify-content: space-between; gap: 48px; margin-bottom: 64px; }
  .section-head h2 { max-width: 730px; }
  .section-head p { max-width: 420px; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
  .lesson-list { border-top: 1px solid var(--ink); }
  .lesson-row {
    display: grid; grid-template-columns: 80px .72fr 1.25fr 180px; gap: 28px; align-items: center;
    min-height: 176px; padding: 28px 0; border-bottom: 1px solid var(--line);
  }
  .lesson-number { font-family: var(--serif); font-size: 23px; color: var(--clay); }
  .lesson-title strong { display: block; font-family: var(--serif); font-size: 38px; font-weight: 500; }
  .lesson-title span { display: inline-flex; margin-top: 9px; padding: 5px 9px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
  .lesson-description { color: var(--ink-soft); font-size: 14px; line-height: 1.75; }
  .lesson-action { justify-self: end; }
  .lesson-row:hover .lesson-action { border-color: var(--forest); background: var(--forest); color: white; }

  .difference { padding: 132px 0; background: var(--forest-deep); color: var(--white); overflow: hidden; }
  .difference::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 92% 16%, rgba(213,191,154,.16), transparent 29%), linear-gradient(115deg, transparent 58%, rgba(255,255,255,.025) 58%); }
  .difference-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 94px; align-items: center; }
  .difference-photo { position: relative; }
  .difference-photo img { width: 100%; aspect-ratio: 1.05; object-fit: cover; border-radius: 170px 26px 26px 26px; }
  .difference-photo::after { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid rgba(213,191,154,.42); border-radius: 170px 26px 26px 26px; z-index: -1; }
  .difference-copy .eyebrow { color: var(--brass-light); }
  .difference-copy h2 { max-width: 620px; }
  .difference-copy > p { margin-top: 26px; max-width: 600px; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.75; }
  .difference-list { margin-top: 42px; }
  .difference-item { display: grid; grid-template-columns: 42px 1fr; gap: 17px; padding: 21px 0; border-top: 1px solid rgba(255,255,255,.16); }
  .difference-item:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
  .difference-item svg { width: 26px; height: 26px; color: var(--brass-light); margin-top: 2px; }
  .difference-item strong { display: block; font-family: var(--serif); font-size: 23px; font-weight: 500; }
  .difference-item span { display: block; margin-top: 5px; color: rgba(255,255,255,.64); font-size: 13px; }

  .instructor { padding: 148px 0; background: var(--paper); }
  .instructor-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 112px; align-items: center; }
  .portrait-shell { position: relative; padding: 22px 22px 0 0; }
  .portrait-shell img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow); filter: saturate(.9) contrast(1.02); }
  .portrait-shell::before { content: ""; position: absolute; top: 0; right: 0; width: 74%; height: 74%; border: 1px solid var(--brass); border-radius: 22px; z-index: -1; }
  .portrait-caption { position: absolute; left: -22px; bottom: 26px; padding: 14px 18px; background: var(--white); border-radius: 12px; box-shadow: 0 18px 45px rgba(20,34,43,.15); }
  .portrait-caption small { display: block; color: var(--clay); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
  .portrait-caption strong { display: block; margin-top: 4px; font-family: var(--serif); font-size: 19px; font-weight: 600; }
  .instructor-copy h2 { max-width: 760px; }
  .instructor-copy > p { margin-top: 28px; max-width: 720px; color: var(--ink-soft); font-size: 16px; line-height: 1.8; }
  .credentials { margin: 38px 0 35px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 38px; border-top: 1px solid var(--line); }
  .credential { display: flex; align-items: flex-start; gap: 13px; padding: 19px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 13px; line-height: 1.5; }
  .credential svg { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 1px; color: var(--clay); }

  .tuition { padding: 128px 0 138px; background: var(--paper-2); }
  .tuition-head { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: end; margin-bottom: 58px; }
  .tuition-head p { color: var(--ink-soft); font-size: 15px; line-height: 1.75; }
  .price-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(21,34,43,.18); border-radius: 20px; overflow: hidden; background: rgba(255,253,249,.56); }
  .price-card { min-height: 290px; padding: 30px 27px; display: flex; flex-direction: column; border-right: 1px solid var(--line); }
  .price-card:last-child { border-right: 0; }
  .price-card small { font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: var(--clay); }
  .price-card h3 { margin-top: 19px; font-size: 35px; }
  .price { margin-top: 31px; font-family: var(--serif); font-size: 44px; line-height: 1; }
  .price sup { font-size: 19px; top: -.8em; position: relative; }
  .price span { font-family: var(--sans); font-size: 11px; color: var(--ink-soft); }
  .price-card p { margin-top: 18px; color: var(--ink-soft); font-size: 12px; line-height: 1.6; }
  .price-card .text-link { margin-top: auto; align-self: flex-end; }
  .tuition-note { display: flex; align-items: flex-start; justify-content: space-between; gap: 28px; margin-top: 26px; color: var(--ink-soft); font-size: 11px; }
  .tuition-note strong { color: var(--ink); }

  .intro-lesson { padding: 150px 0; background: var(--white); }
  .intro-lesson-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
  .intro-lesson-copy h2 { max-width: 650px; }
  .intro-lesson-copy > p { margin-top: 28px; color: var(--ink-soft); font-size: 16px; line-height: 1.75; max-width: 630px; }
  .intro-lesson-copy .hero-actions { margin-top: 34px; }
  .steps { position: relative; padding: 24px 0 24px 58px; }
  .steps::before { content: ""; position: absolute; left: 17px; top: 42px; bottom: 42px; width: 1px; background: var(--brass); }
  .step { position: relative; padding: 21px 0 21px 22px; }
  .step-number { position: absolute; left: -58px; top: 22px; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--paper); border: 1px solid var(--brass); font-family: var(--serif); font-weight: 600; }
  .step strong { display: block; font-family: var(--serif); font-size: 25px; font-weight: 600; }
  .step p { margin-top: 7px; color: var(--ink-soft); font-size: 13px; line-height: 1.6; }

  .final-cta { padding: 88px 0; background: var(--clay); color: white; overflow: hidden; }
  .final-cta::before { content: ""; position: absolute; left: -30px; top: 0; right: 0; height: 100%; opacity: .19; background: repeating-linear-gradient(to bottom, transparent 0 25px, rgba(255,255,255,.26) 25px 26px); transform: rotate(-3deg) scale(1.05); }
  .final-cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
  .final-cta h2 { max-width: 830px; font-size: clamp(40px, 4vw, 60px); }
  .final-cta .button { background: white; color: var(--ink); flex: 0 0 auto; }

  footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 80px 0 30px; }
  .footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr .8fr; gap: 60px; }
  .footer-brand .brand { color: white; }
  .footer-brand .brand-mark { color: var(--brass-light); }
  .footer-brand .brand-name strong { color: white; }
  .footer-brand .brand-name > span { color: rgba(255,255,255,.55); }
  .footer-brand .brand-wordmark-img {
    filter: brightness(0) invert(1);
    opacity: 0.96;
  }
  .footer-brand p { margin-top: 22px; max-width: 330px; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.7; }
  .footer-col strong { display: block; margin-bottom: 17px; color: white; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
  .footer-col a { display: block; margin: 10px 0; color: rgba(255,255,255,.65); font-size: 12px; }
  .footer-col a:hover { color: white; }
  .footer-bottom { margin-top: 64px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.13); display: flex; align-items: center; justify-content: space-between; gap: 30px; font-size: 10px; color: rgba(255,255,255,.45); }
  .concept-label { color: var(--brass-light); }

  /* ========== RESPONSIVE SYSTEM ========== */
  /* Large desktop */
  @media (min-width: 1440px) {
    .hero-copy { padding-right: 80px; }
  }

  /* Laptop / small desktop — keep ALL nav items (never hide Tuition) */
  @media (max-width: 1180px) {
    .nav-links { gap: 14px; }
    .nav-links > a:not(.button) { font-size: 12px; }
    .nav-cta { padding: 0 16px; min-height: 48px; font-size: 12px; }
    .hero-grid { grid-template-columns: 1fr 1fr; }
    .hero-copy { padding: 64px 36px 90px 0; }
    .trust-card { grid-template-columns: 1.1fr repeat(3, .85fr); }
    .intro-grid { gap: 64px; }
    .lesson-row { grid-template-columns: 54px .7fr 1.15fr minmax(120px, 160px); gap: 18px; }
    .difference-grid, .instructor-grid { gap: 56px; }
  }

  /* Tablet portrait / large phone landscape */
  @media (max-width: 960px) {
    .price-grid { grid-template-columns: 1fr 1fr; }
    .price-card:nth-child(2) { border-right: 0; }
    .price-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .section-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  }

  /* Mobile nav + stacked layouts */
  @media (max-width: 860px) {
    .utility {
      padding-top: env(safe-area-inset-top);
      font-size: 10px;
    }
    .utility-inner {
      min-height: 40px;
      flex-wrap: wrap;
      justify-content: center;
      text-align: center;
      gap: 8px 16px;
      padding: 8px 0;
    }
    .utility-inner > a {
      display: inline-flex;
      min-height: 36px;
      align-items: center;
    }
    nav { min-height: 72px; gap: 12px; }
    .brand-mark, .brand-lockup img.brand-emblem { width: 38px; height: 38px; }
    .brand-name strong { font-size: 20px; }
    .brand-wordmark-img { height: 22px; max-width: min(140px, 38vw); }
    .menu-button { display: inline-flex; }
    /*
      Mobile: keep header in normal document flow (not sticky).
      Sticky + open panel was flaky when scrolled mid-page.
      Use the back-to-top control to return to the menu.
    */
    .nav-wrap {
      position: relative;
      top: auto;
    }
    nav { position: relative; }
    .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      width: auto;
      max-width: none;
      transform: none;
      margin: 0;
      padding: 12px max(16px, env(safe-area-inset-right)) calc(16px + env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      background: var(--paper);
      border-bottom: 1px solid var(--line);
      box-shadow: 0 18px 40px rgba(18, 30, 38, .12);
      max-height: min(80vh, 560px);
      overflow-y: auto;
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
      scrollbar-width: thin;
      scrollbar-color: rgba(41, 68, 63, 0.35) var(--paper);
      z-index: 55;
    }
    .nav-links::-webkit-scrollbar { width: 5px; }
    .nav-links::-webkit-scrollbar-track { background: var(--paper); }
    .nav-links::-webkit-scrollbar-thumb {
      background: rgba(41, 68, 63, 0.32);
      border-radius: 99px;
    }
    .nav-links.open { display: flex; }
    .nav-links > a {
      padding: 14px 8px;
      min-height: 48px;
      border-bottom: 1px solid var(--line);
      font-size: 15px;
    }
    .nav-links > a.button-primary {
      margin-top: 12px;
      justify-content: center;
      border-bottom: 0;
      border-radius: 999px;
    }
    .nav-cta { margin-left: 0; width: 100%; white-space: normal; text-align: center; }

    .hero {
      min-height: auto;
      /* Clip any full-bleed bleed so it never creates a sideways white bar */
      overflow: hidden;
      width: 100%;
      max-width: 100%;
    }
    .hero::after { opacity: .2; width: 80%; left: -40px; bottom: auto; top: 40%; }
    .hero-grid { min-height: auto; grid-template-columns: 1fr; }
    .hero-copy { padding: 40px 0 24px; }
    .hero-copy .lead { font-size: 1.05rem; max-width: none; }
    /*
      Full-bleed hero photo on mobile:
      break out of .container gutters only (not 100vw hacks that open a white scrollbar).
    */
    .hero-photo-wrap {
      position: relative;
      height: auto;
      min-height: 0;
      /* Proper framed photo — landscape source crops poorly in a short strip */
      aspect-ratio: 4 / 3;
      width: calc(100% + max(32px, env(safe-area-inset-left) + env(safe-area-inset-right) + 32px));
      max-width: none;
      margin-left: calc(-0.5 * max(32px, env(safe-area-inset-left) + env(safe-area-inset-right) + 32px));
      margin-right: calc(-0.5 * max(32px, env(safe-area-inset-left) + env(safe-area-inset-right) + 32px));
    }
    .hero-photo {
      position: absolute;
      inset: 0;
      border-radius: 20px 20px 0 0;
      right: 0;
      top: 0;
      bottom: 0;
      left: 0;
    }
    .hero-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 40% 45%;
    }
    .hero-note {
      left: max(16px, env(safe-area-inset-left));
      bottom: 18px;
      max-width: min(220px, 70vw);
    }
    .trust-bar { margin-top: 0; }
    .trust-card {
      grid-template-columns: 1fr 1fr;
      border-radius: 16px;
    }
    .trust-intro { grid-column: 1 / -1; min-height: auto; padding: 24px; }
    .trust-item { min-height: 100px; padding: 20px; border-bottom: 1px solid var(--line); }
    .trust-item:nth-child(odd) { border-right: 0; }
    .trust-item:nth-child(3) { border-right: 1px solid var(--line); }

    .intro, .lessons, .difference, .instructor, .tuition, .intro-lesson { padding: 72px 0; }
    .intro-grid, .difference-grid, .instructor-grid, .intro-lesson-grid, .tuition-head {
      grid-template-columns: 1fr;
      gap: 36px;
    }
    .intro-kicker { position: static; }
    .intro-kicker .index { font-size: 56px; margin-bottom: 12px; }
    .principles { grid-template-columns: 1fr; }
    .lesson-row {
      grid-template-columns: 40px 1fr;
      gap: 12px 16px;
      min-height: 0;
      padding: 28px 0;
    }
    .lesson-title { grid-column: 2; }
    .lesson-description { grid-column: 1 / -1; }
    .lesson-action {
      grid-column: 1 / -1;
      justify-self: start;
      width: auto;
      min-height: 48px;
      padding: 0 18px;
      font-size: 13px;
    }
    .difference-photo img { aspect-ratio: 4/3; border-radius: 80px 20px 20px 20px; }
    .difference-photo::after { border-radius: 80px 20px 20px 20px; inset: 12px -12px -12px 12px; }
    .portrait-shell { max-width: 420px; }
    .credentials { grid-template-columns: 1fr; }
    .final-cta-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
    .final-cta .button { width: 100%; max-width: 360px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  }

  /* Small phones */
  @media (max-width: 540px) {
    .utility-location span { font-size: 9px; letter-spacing: .06em; line-height: 1.35; }
    .brand-name strong { font-size: 18px; }
    .brand-name > span { font-size: 8px; letter-spacing: .18em; }
    .brand-wordmark-img { height: 20px; }
    .hero-copy { padding: 32px 0 20px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .button { width: 100%; }
    .hero-mini { gap: 10px 14px; font-size: 11px; }
    .hero-photo-wrap {
      /* Taller framed photo so the teaching scene is fully readable, not a sliver */
      aspect-ratio: 5 / 4;
      min-height: 260px;
    }
    .hero-note { width: min(200px, 72vw); padding: 14px 16px; }
    .hero-note strong { font-size: 20px; }
    .trust-card { grid-template-columns: 1fr; border-radius: 0; box-shadow: none; border-left: 0; border-right: 0; }
    .trust-item { border-right: 0 !important; }
    .trust-item strong { font-size: 22px; }
    .price-grid { grid-template-columns: 1fr; }
    .price-card {
      border-right: 0;
      border-bottom: 1px solid var(--line);
      min-height: 0;
      padding: 24px 22px;
    }
    .price-card:last-child { border-bottom: 0; }
    .price-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .price { font-size: 36px; }
    .tuition-note { flex-direction: column; align-items: flex-start; gap: 12px; }
    .steps { padding-left: 48px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
    .intro, .lessons, .difference, .instructor, .tuition, .intro-lesson { padding: 56px 0; }
    .final-cta { padding: 56px 0; }
  }

  /* Very small / foldable narrow */
  @media (max-width: 360px) {
    .brand-name > span { display: none; }
    .hero-note { display: none; }
    .trust-intro strong { font-size: 22px; }
  }

  /* Landscape phones / short viewports */
  @media (max-height: 500px) and (orientation: landscape) {
    .hero-grid { grid-template-columns: 1fr 1fr; min-height: auto; }
    .hero-copy { padding: 28px 20px 28px 0; }
    .hero-photo-wrap {
      height: auto;
      min-height: 220px;
      aspect-ratio: auto;
      margin: 0;
      width: auto;
      max-width: none;
    }
    .hero-photo { border-radius: 24px 0 0 24px; }
    .hero-note { display: none; }
    .nav-links {
      max-height: 70vh;
      /* Match paper; never a white scroll track in the menu */
      scrollbar-color: rgba(41, 68, 63, 0.35) var(--paper);
    }
    .nav-links::-webkit-scrollbar-track { background: var(--paper); }
  }

  /* Tablet landscape keeps two-col hero when wide enough */
  @media (min-width: 861px) and (max-width: 1100px) and (orientation: landscape) {
    .hero { min-height: min(100vh, 640px); }
    .hero-grid { min-height: min(100vh, 640px); }
  }

  /* High-DPI / large type systems */
  @media (min-resolution: 2dppx) {
    .hero-photo img, .difference-photo img, .portrait-shell img {
      image-rendering: auto;
    }
  }

  /* Print (policies/share) */
  @media print {
    .utility, .nav-wrap, .menu-button, .final-cta, .hero-mini { display: none !important; }
    body { background: white; color: black; }
    .hero-photo-wrap, .difference-photo, .portrait-shell { break-inside: avoid; }
    a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #444; }
    a[href^="#"]::after, a[href^="/"]::after { content: ""; }
  }


/* Real brand lockup images */
.brand-lockup { display: inline-flex; align-items: center; gap: 12px; }
.brand-lockup img.brand-emblem { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }
.brand-lockup .brand-name strong { font-family: var(--serif); }
.footer-brand .brand-lockup img.brand-emblem { filter: none; }

/* ========== MEMBERS HUB ========== */
.members-hero {
  padding: clamp(48px, 8vw, 88px) 0 clamp(36px, 5vw, 56px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.members-hero h1 { max-width: 16ch; }
.members-hero .lead {
  margin-top: 20px;
  max-width: 36rem;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.65;
}
.members-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: clamp(40px, 6vw, 72px) 0 clamp(72px, 10vw, 110px);
}
.member-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
  padding: 28px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(18, 30, 38, .06);
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
a.member-card:hover {
  border-color: rgba(41, 68, 63, .35);
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(18, 30, 38, .1);
}
.member-card small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clay);
}
.member-card h2 {
  font-size: clamp(1.45rem, 1.2rem + 0.8vw, 1.85rem);
}
.member-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}
.member-card .text-link { margin-top: 4px; align-self: flex-start; }
.member-card--primary {
  background: var(--forest);
  border-color: transparent;
  color: var(--white);
}
.member-card--primary small { color: var(--brass-light); }
.member-card--primary h2 { color: var(--white); }
.member-card--primary p { color: rgba(255,255,255,.72); }
.member-card--primary .text-link {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,.45);
}
a.member-card--primary:hover {
  background: var(--forest-deep);
  border-color: transparent;
}
.members-note {
  margin: -24px auto 72px;
  max-width: 40rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}
.members-note a {
  font-weight: 700;
  border-bottom: 1px solid rgba(21,34,43,.28);
}
@media (max-width: 720px) {
  .members-grid { grid-template-columns: 1fr; }
}

/* ========== INTERIOR PAGES (shared site language) ========== */
.page-hero {
  padding: clamp(48px, 7vw, 80px) 0 clamp(32px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
/* Member subpages: less air above back link, more between back link and title block */
.page-hero:has(.member-back),
.members-hero:has(.member-back) {
  padding-top: clamp(18px, 2.5vw, 28px);
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { max-width: 18ch; }
.page-hero .lead {
  margin-top: 16px;
  max-width: 36rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}
.page-section { padding: clamp(48px, 7vw, 88px) 0; }
.page-section--soft { background: var(--white); }
.page-section--muted { background: var(--paper-2); }
.prose-block { max-width: 720px; }
.prose-block h2 { margin: 0 0 16px; }
.prose-block h3 {
  margin: 28px 0 10px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}
.prose-block p, .prose-block li {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 14px;
}
.prose-block ul { margin: 0 0 18px 1.2rem; padding: 0; }
.prose-block a.text-link { color: var(--ink); }

.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.split-layout--flip { grid-template-columns: 0.95fr 1.05fr; }
.split-layout img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
  object-fit: cover;
}
.split-media { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.split-media img { width: 100%; height: auto; display: block; max-height: 380px; object-fit: cover; box-shadow: none; border-radius: 0; }

.two-col-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 22px;
  margin-bottom: 14px;
}
.info-card h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}
.info-card p, .info-card a { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; }
.info-card a { color: var(--ink); font-weight: 650; }
.info-card .button { margin-top: 12px; }

.faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 16px 18px;
  margin-bottom: 10px;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq details[open] summary { margin-bottom: 10px; color: var(--forest); }
.faq p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.65; }

/* Anti-spam honeypot — off-screen, not display:none (some bots skip that) */
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-stack { display: grid; gap: 14px; max-width: 560px; position: relative; }
.form-stack label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.form-stack input,
.form-stack select,
.form-stack textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  /* 16px+ reduces iOS focus-zoom that can misplace native select menus */
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
  background: var(--white);
  color: var(--ink);
}
/* Sitewide custom dropdown (menu opens under the field) */
.select-native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.select-wrap {
  position: relative;
  max-width: 100%;
  z-index: 5;
}
.select-wrap.is-open { z-index: 40; }
.select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  min-height: 48px;
}
.select-trigger:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 2px;
}
.select-trigger-text[data-placeholder="true"] { color: var(--ink-soft); }
.select-chevron {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--ink-soft);
  transition: transform .15s ease;
}
.select-wrap.is-open .select-chevron { transform: rotate(180deg); }
.select-menu {
  /* default absolute; JS may switch to fixed so overflow:hidden parents don't clip */
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(18, 30, 38, .16);
  max-height: min(50vh, 320px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 50;
}
body > .select-menu {
  position: fixed;
  right: auto;
  z-index: 10000;
}
.select-menu[hidden] { display: none !important; }
.select-menu li {
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.35;
  color: var(--ink);
  cursor: pointer;
}
.select-menu li:hover,
.select-menu li:focus,
.select-menu li.is-active {
  background: rgba(41, 68, 63, .08);
  outline: none;
}
.select-menu li[aria-selected="true"] {
  background: rgba(41, 68, 63, .12);
  font-weight: 650;
}
.select-menu li.is-disabled {
  opacity: .45;
  cursor: not-allowed;
}
.avail-body .select-wrap,
.avail-time-row .select-wrap { width: 100%; }
.form-stack textarea { min-height: 130px; resize: vertical; }
.form-stack .hint { font-size: 0.85rem; color: var(--ink-soft); margin: 0; }
.form-status { font-size: 0.92rem; margin: 0; }
.form-status--err { color: #a33; }
.form-status--ok { color: var(--forest); font-weight: 650; }

.actions-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

/* Interior tuition rates (reuse home price language) */
.interior-price .price-grid { margin-top: 8px; }
.interior-note {
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 40rem;
}

@media (max-width: 860px) {
  .split-layout,
  .split-layout--flip,
  .two-col-layout {
    grid-template-columns: 1fr;
  }
  .split-layout--flip .split-media { order: -1; }
}

/* ========== AVAILABILITY WIZARD ========== */
.avail-shell {
  max-width: 440px;
  margin: 0 auto;
  padding: clamp(16px, 3vw, 28px) 0 clamp(40px, 6vw, 64px);
}
.avail-progress {
  height: 4px;
  background: var(--line);
  border-radius: 99px;
  margin-bottom: 28px;
  overflow: hidden;
}
.avail-progress span {
  display: block;
  height: 100%;
  background: var(--forest);
  border-radius: 99px;
  transition: width .25s ease;
}
.avail-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow);
}
.avail-card--start { text-align: center; }
.avail-card h1, .avail-card h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-weight: 500;
}
.avail-card h1 { font-size: clamp(1.75rem, 4vw, 2.25rem); }
.avail-card h2 { font-size: clamp(1.45rem, 3vw, 1.85rem); }
.avail-logo { margin: 0 auto 18px; width: 56px; height: 56px; }
.avail-sub, .avail-hint {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0 0 14px;
}
.avail-step {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clay);
}
.avail-wide { width: 100%; margin-top: 8px; }
.avail-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-top: 28px;
}
.avail-names { display: grid; gap: 10px; margin-bottom: 12px; }
.avail-name-row { display: flex; gap: 8px; align-items: center; }
.avail-name-row input,
.avail-card select,
.avail-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
.avail-icon-btn {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
  opacity: 0.55;
}
.avail-icon-btn:hover {
  opacity: 1;
  color: var(--ink);
  background: rgba(21, 34, 43, 0.06);
}
.avail-range-head .avail-icon-btn {
  margin-left: auto;
}
.avail-add {
  margin: 4px 0 0;
  /* button.text-link reset handles chrome; keep spacing only */
}
.avail-radios { display: grid; gap: 10px; margin-bottom: 8px; }
.avail-radio, .avail-check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  background: var(--paper);
}
.avail-radio:has(input:checked),
.avail-check:has(input:checked) {
  border-color: var(--forest);
  background: rgba(41, 68, 63, .06);
}
.avail-time-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 0;
}
.avail-time-row label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.avail-summary {
  margin: 0 0 18px;
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 10px 14px;
  font-size: 0.92rem;
}
.avail-summary dt { font-weight: 700; color: var(--ink-soft); }
.avail-summary dd { margin: 0; color: var(--ink); }
.avail-summary pre {
  margin: 0;
  font: inherit;
  white-space: pre-wrap;
}
.avail-err { color: #a33; font-size: 0.9rem; margin-top: 12px; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}
@media (max-width: 540px) {
  .avail-time-row { grid-template-columns: 1fr; }
  .avail-summary { grid-template-columns: 1fr; gap: 4px; }
  .avail-nav .button { flex: 1; }
}

/* Day chips + multi-window ranges */
.avail-days {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 20px;
}
.avail-day-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink-soft);
  user-select: none;
}
.avail-day-chip input { position: absolute; opacity: 0; pointer-events: none; }
.avail-day-chip.is-on,
.avail-day-chip:has(input:checked) {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}
.avail-ranges { display: grid; gap: 14px; margin-bottom: 10px; }
.avail-range {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.avail-range + .avail-range {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.avail-range-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
/* Quiet secondary action under time ranges — not a full-width grey button */
.avail-add-range {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 4px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--forest);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.avail-add-range:hover {
  color: var(--forest-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.avail-add-range:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 4px;
  border-radius: 4px;
}


/* Fixed tile shell — content slides inside; height follows content */
.avail-card--shell {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}
.avail-viewport {
  position: relative;
  flex: 0 1 auto;
  overflow: hidden;
  min-height: 0;
}
.avail-track {
  will-change: transform, opacity;
}
.avail-panel {
  padding: 0;
}
.avail-panel--center {
  text-align: center;
  padding-top: 12px;
}
.avail-title {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  line-height: 1.15;
}
.avail-panel--center .avail-title,
.avail-panel--center h1.avail-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}
.avail-body { margin-top: 4px; }
.avail-shell-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.avail-shell-nav[hidden] { display: none !important; }
.avail-shell-nav .button { min-width: 7.5rem; }

.avail-track.is-exit-left {
  animation: availContentOutLeft 0.28s ease forwards;
}
.avail-track.is-exit-right {
  animation: availContentOutRight 0.28s ease forwards;
}
.avail-track.is-enter-right {
  opacity: 0;
  transform: translateX(32px);
}
.avail-track.is-enter-left {
  opacity: 0;
  transform: translateX(-32px);
}
.avail-track.is-enter-active {
  transition: opacity 0.28s ease, transform 0.28s ease;
  opacity: 1;
  transform: translateX(0);
}
@keyframes availContentOutLeft {
  to { opacity: 0; transform: translateX(-32px); }
}
@keyframes availContentOutRight {
  to { opacity: 0; transform: translateX(32px); }
}
@media (prefers-reduced-motion: reduce) {
  .avail-track.is-exit-left,
  .avail-track.is-exit-right,
  .avail-track.is-enter-right,
  .avail-track.is-enter-left,
  .avail-track.is-enter-active {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Top-left back — same ← text-link pattern as rest of site */
.avail-card-top {
  display: flex;
  align-items: center;
  min-height: 0;
  margin: 0 0 8px;
}
.avail-card-top:has([data-back][hidden]) {
  display: none;
}
.avail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid rgba(21, 34, 43, 0.28);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.avail-back:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
  background: transparent;
}
.avail-back[hidden] { display: none !important; }

.avail-inline-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}
.avail-inline-actions--end { justify-content: flex-end; }
.avail-inline-actions:has(.avail-advance[hidden]):not(:has(.text-link)) {
  display: none;
}

.avail-advance {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(41, 68, 63, 0.2);
  transition: transform 0.15s ease, background 0.15s ease;
}
.avail-advance svg { width: 20px; height: 20px; }
.avail-advance:hover {
  background: var(--forest-deep);
  transform: translateX(2px);
}
.avail-advance:active { transform: scale(0.96); }
.avail-advance[hidden] { display: none !important; }

/* Days row: chips + advance on the same line */
.avail-days-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.avail-days-row .avail-days {
  flex: 1 1 auto;
  margin: 0;
}
.avail-days-row .avail-advance {
  margin-left: auto;
}

.avail-shell {
  max-width: 440px;
  padding-top: clamp(16px, 3vw, 28px);
  padding-bottom: clamp(40px, 6vw, 64px);
}

/* No bottom nav bar anymore */
.avail-shell-nav { display: none !important; }

/* Arrow inside the text field (appears when there's content) */
.avail-input-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
}
.avail-input-wrap input,
.avail-input-wrap textarea {
  width: 100%;
  display: block;
}
.avail-input-wrap--advance input,
.avail-input-wrap--advance.has-advance input {
  padding-right: 48px;
}
.avail-input-wrap--advance.has-advance textarea {
  padding-right: 48px;
}
.avail-infield-advance {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(41, 68, 63, 0.2);
}
.avail-infield-advance svg {
  width: 18px;
  height: 18px;
}
.avail-infield-advance:hover {
  background: var(--forest-deep);
}
.avail-infield-advance[hidden] {
  display: none !important;
}
.avail-input-wrap--textarea .avail-infield-advance {
  top: auto;
  bottom: 10px;
  transform: none;
}
.avail-name-row .avail-input-wrap {
  flex: 1;
}


/* ========== STUDIO CALENDAR (interactive month/year) ========== */
.studio-cal .cal-toolbar {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}
/* Segmented control: one shared rail, active pill slides as solid segment */
.view-toggle {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  padding: 4px;
  border-radius: 999px;
  background: rgba(21, 34, 43, 0.06);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 2px rgba(21, 34, 43, 0.04);
}
.cal-toggle-btn {
  appearance: none;
  margin: 0;
  padding: 0.55rem 1.2rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.cal-toggle-btn:hover:not(.active) {
  color: var(--ink);
}
.cal-toggle-btn:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 2px;
}
.cal-toggle-btn.active {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(41, 68, 63, 0.22);
}
.calendar-nav-wrapper {
  display: none;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.calendar-nav-wrapper.active { display: flex; }
.month-nav-btn {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.month-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.calendar-content-area { flex: 1; min-width: 0; }
.calendar-grid { display: grid; gap: 1.5rem; }
.calendar-grid.month-view {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}
/* Year view: compact full-year overview (not full-size months) */
.calendar-grid.year-view {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem 0.75rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .calendar-grid.year-view { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .calendar-grid.year-view { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.55rem; }
}
@media (max-width: 640px) {
  .calendar-nav-wrapper { gap: 0.5rem; }
  .month-nav-btn { width: 40px; height: 40px; }
}
.month-calendar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem 1.15rem 1.25rem;
  box-shadow: 0 10px 30px rgba(18, 30, 38, 0.06);
}
.month-header {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.85rem;
  text-align: center;
}
.month-header-with-note {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}
.month-header-with-note .month-header { margin-bottom: 0; }
.closure-note {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay);
}
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.day-label {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.35rem 0;
}
.day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
}
.day.empty { visibility: hidden; }
.day.weekend { color: var(--ink-soft); opacity: 0.55; }
.day.closure {
  background: rgba(169, 95, 79, 0.16);
  color: #7a3f34;
  font-weight: 700;
}
.day.recital {
  background: rgba(41, 68, 63, 0.14);
  color: var(--forest-deep);
  box-shadow: inset 0 0 0 2px var(--forest);
  font-weight: 700;
}
.day.closure.recital {
  background: linear-gradient(135deg, rgba(169,95,79,.2), rgba(41,68,63,.16));
}
.day.today {
  outline: 2px solid var(--brass);
  outline-offset: 1px;
}

/* Mini months in year overview */
.year-view .month-calendar {
  padding: 0.45rem 0.4rem 0.5rem;
  border-radius: 10px;
  box-shadow: none;
}
.year-view .month-header {
  font-size: 0.72rem;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}
.year-view .month-header-with-note {
  gap: 0.1rem;
  margin-bottom: 0.3rem;
}
.year-view .closure-note {
  font-size: 0.55rem;
  letter-spacing: 0.04em;
}
.year-view .calendar-days { gap: 1px; }
.year-view .day-label {
  font-size: 0.48rem;
  padding: 0.1rem 0;
  letter-spacing: 0;
}
.year-view .day {
  font-size: 0.55rem;
  font-weight: 600;
  border-radius: 2px;
  aspect-ratio: 1;
  min-height: 0;
}
.year-view .day.recital {
  box-shadow: inset 0 0 0 1px var(--forest);
}
.year-view .day.today {
  outline-width: 1px;
  outline-offset: 0;
}
.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.5rem;
  justify-content: center;
}
.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.legend-box {
  width: 18px;
  height: 18px;
  border-radius: 5px;
}
.legend-box.closure { background: rgba(169, 95, 79, 0.28); }
.legend-box.recital {
  background: rgba(41, 68, 63, 0.16);
  box-shadow: inset 0 0 0 2px var(--forest);
}



/* ========== POLICIES PAGE ========== */
.policy-layout { max-width: 760px; }

.policy-doc {
  border: 1px solid rgba(21, 34, 43, 0.12);
  border-radius: 20px;
  background: #fffefb;
  box-shadow: 0 18px 48px rgba(18, 30, 38, 0.07);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.policy-doc-head {
  text-align: center;
  padding-bottom: 1.35rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.policy-doc-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
}
.policy-doc-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.policy-doc-year {
  margin: 0.55rem 0 0;
  font-size: 1rem;
  font-weight: 650;
  color: var(--forest);
}

.policy-block { margin: 0 0 1.65rem; }
.policy-block:last-of-type { margin-bottom: 1.1rem; }
.policy-block h3 {
  margin: 0 0 0.75rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.policy-list {
  margin: 0;
  padding: 0 0 0 1.25rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}
.policy-list li { margin: 0 0 0.65rem; padding-left: 0.2rem; }
.policy-list li:last-child { margin-bottom: 0; }
.policy-list a {
  color: var(--forest);
  font-weight: 650;
  text-decoration: none;
  border-bottom: 1px solid rgba(41, 68, 63, 0.28);
}
.policy-list a:hover { border-bottom-color: var(--forest); }

.policy-block--accent {
  margin-top: 1.85rem;
  padding: 1.15rem 1.2rem 1.2rem;
  border-radius: 14px;
  background: rgba(41, 68, 63, 0.06);
  border: 1px solid rgba(41, 68, 63, 0.12);
}
.policy-block--accent h3 { color: var(--forest); }

.policy-doc-note {
  margin: 1.5rem 0 0;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.policy-doc-note a {
  color: var(--forest);
  font-weight: 650;
  text-decoration: none;
  border-bottom: 1px solid rgba(41, 68, 63, 0.28);
}

.policy-faq { margin-top: 2.5rem; }
.policy-faq-title {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}


/* Back to members hub — no underline (clashes with page-hero eyebrow rule) */
.member-back {
  margin: 0 0 1.35rem;
}
.member-back .text-link {
  font-size: 0.95rem;
  font-weight: 650;
  border-bottom: 0;
  padding-bottom: 0;
  color: var(--ink-soft);
}
.member-back .text-link:hover {
  color: var(--ink);
}


/* Instructor profile options (about + home) — personal site + LinkedIn only.
   SFCM / SBMP / KDFC / Chronicle stay in JSON-LD schema, not UI. */
.instructor-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 1.25rem 0 1.45rem;
}
.instructor-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: min(100%, 210px);
  flex: 1 1 210px;
  max-width: 300px;
  padding: 12px 16px 12px 12px;
  border: 1px solid rgba(21, 34, 43, 0.12);
  border-radius: 16px;
  background: #fffefb;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(21, 34, 43, 0.05);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.instructor-profile:hover {
  border-color: rgba(21, 34, 43, 0.22);
  box-shadow: 0 12px 28px rgba(21, 34, 43, 0.1);
  transform: translateY(-1px);
}
.instructor-profile-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
}
.instructor-profile-icon img {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: cover;
}
.instructor-profile-icon svg {
  width: 44px;
  height: 44px;
  display: block;
}
/* Composer site: real aaronpike.com AP monogram favicon */
.instructor-profile--site .instructor-profile-icon {
  background: #0a0a0a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
/* Official LinkedIn mark + brand blue */
.instructor-profile--linkedin .instructor-profile-icon {
  background: #0a66c2;
}
.instructor-profile--linkedin:hover {
  border-color: rgba(10, 102, 194, 0.45);
  box-shadow: 0 12px 28px rgba(10, 102, 194, 0.14);
}
.instructor-profile-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  line-height: 1.25;
}
.instructor-profile-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.instructor-profile-text span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.prose-block .instructor-profiles { margin-top: 1.45rem; }

/* —— Site announcement (admin-controlled banner) —— */
.site-announce {
  background: var(--forest);
  color: rgba(255, 253, 249, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-announce-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  min-height: 44px;
  padding: 10px 0;
  text-align: center;
}
.site-announce-inner p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.site-announce-inner a {
  font-size: 13px;
  font-weight: 700;
  color: var(--brass-light);
  border-bottom: 1px solid rgba(214, 191, 154, 0.45);
  padding-bottom: 1px;
}
.site-announce-inner a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.55);
}
