:root {
    --moose-blue: #2b3fa6;
    --moose-blue-deep: #1f2e80;
    --moose-blue-bright: #3d56c8;
    --moose-blue-light: #c8d3f0;
    --mint: #7ed3a8;
    --mint-soft: #b8e8cc;
    --mint-pale: #d9f2e3;
    --navy: #0f1a3d;
    --navy-soft: #2d3a5f;
    --cream: #faf7f0;
    --cream-warm: #f4ede0;
    --paper: #ffffff;
    --rule: rgba(15, 26, 61, 0.12);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--navy);
    background: var(--paper);
    line-height: 1.65;
    font-size: 17px;
    overflow-x: hidden;
  }

  /* TYPOGRAPHY */
  .eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--moose-blue);
  }
  h1, h2, h3, h4 { font-family: 'Fraunces', serif; }
  .display {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--navy);
  }
  .display em { font-style: italic; font-weight: 600; color: var(--moose-blue); }

  /* TOP BAR + NAV */
  .topbar {
    background: var(--navy);
    color: var(--cream);
    text-align: center;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  .topbar a { color: var(--mint); text-decoration: none; font-weight: 600; }
  .topbar a:hover { color: var(--mint-soft); }

  nav.primary {
    background: var(--paper);
    padding: 14px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--rule);
  }

  .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 0; order: 1; }
  .brand-logo { width: 56px; height: 56px; object-fit: contain; flex-shrink: 0; }
  .brand-text {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--navy);
    line-height: 1;
    white-space: nowrap;
  }
  .brand-sub {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: var(--moose-blue);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 4px;
    white-space: nowrap;
  }

  nav.primary ul { display: flex; list-style: none; gap: 32px; order: 2; }
  nav.primary ul a {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--moose-blue);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
  }
  nav.primary ul a:hover {
    color: var(--moose-blue-deep);
  }
  nav.primary ul a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--moose-blue);
    transition: width 0.3s;
  }
  nav.primary ul a:hover::after { width: 100%; }

  /* Items shown only in the mobile menu */
  nav.primary ul li.mobile-only { display: none; }

  .nav-cta {
    background: var(--moose-blue);
    color: var(--cream);
    padding: 11px 22px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s;
    white-space: nowrap;
    order: 3;
  }
  .nav-cta:hover {
    background: var(--moose-blue-deep);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(43, 63, 166, 0.3);
  }

  /* Hamburger - hidden on desktop */
  .nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 8px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
  }
  .nav-toggle-bars {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .nav-toggle-bars span {
    display: block;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
    transform-origin: center;
  }
  nav.primary.menu-open .nav-toggle-bars span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  nav.primary.menu-open .nav-toggle-bars span:nth-child(2) {
    opacity: 0;
  }
  nav.primary.menu-open .nav-toggle-bars span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  /* Mobile menu panel - hidden by default, shown when toggled on mobile */
  .nav-mobile-panel {
    display: none;
  }

  /* HERO */
  .hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 40px 140px;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/olive-trees.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
  }
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 26, 61, 0.3) 0%, rgba(15, 26, 61, 0.55) 60%, rgba(15, 26, 61, 0.85) 100%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 80px;
    align-items: center;
  }
  .hero-text { color: var(--cream); }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 28px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--mint);
  }
  .hero h1 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(44px, 5.4vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--cream);
    margin-bottom: 32px;
  }
  .hero h1 em { font-style: italic; color: var(--mint); font-weight: 500; }
  .hero-lede {
    font-size: 19px;
    line-height: 1.6;
    color: rgba(250, 247, 240, 0.92);
    max-width: 540px;
    margin-bottom: 40px;
  }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s;
    border: 2px solid transparent;
    cursor: pointer;
  }
  .btn-primary {
    background: var(--mint);
    color: var(--navy);
    border-color: var(--mint);
  }
  .btn-primary:hover {
    background: var(--mint-soft);
    border-color: var(--mint-soft);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(126, 211, 168, 0.4);
  }
  .btn-primary::after { content: '→'; transition: transform 0.25s; }
  .btn-primary:hover::after { transform: translateX(4px); }

  .btn-blue {
    background: var(--moose-blue);
    color: var(--cream);
    border-color: var(--moose-blue);
  }
  .btn-blue:hover {
    background: var(--moose-blue-deep);
    border-color: var(--moose-blue-deep);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(43, 63, 166, 0.4);
  }
  .btn-blue::after { content: '→'; transition: transform 0.25s; }
  .btn-blue:hover::after { transform: translateX(4px); }

  .btn-ghost {
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(250, 247, 240, 0.5);
  }
  .btn-ghost:hover {
    background: var(--cream);
    color: var(--navy);
    border-color: var(--cream);
  }

  .hero-logo-card {
    position: relative;
    aspect-ratio: 1 / 1.05;
    background: var(--moose-blue-light);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(15, 26, 61, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-logo-card img { width: 100%; height: 100%; object-fit: contain; }

  .wave-down {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 3;
    pointer-events: none;
  }

  /* CONTAINERS */
  .container { max-width: 1200px; margin: 0 auto; }
  .container-narrow { max-width: 900px; margin: 0 auto; }

  /* ETYMOLOGY */
  .etymology {
    background: var(--paper);
    padding: 130px 48px 110px;
    position: relative;
  }
  .etym-intro { text-align: center; margin-bottom: 60px; }
  .etym-intro h2 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.15;
    color: var(--navy);
    margin: 18px 0 24px;
  }
  .etym-intro h2 em { font-style: italic; color: var(--moose-blue); }
  .etym-intro > p {
    font-size: 19px;
    color: var(--navy-soft);
    line-height: 1.65;
    max-width: 720px;
    margin: 0 auto;
  }
  .etym-prelude {
    text-align: center;
    margin-bottom: 50px;
    font-size: 18px;
    font-style: italic;
    color: var(--navy);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Vertical spine layout - four ideas connected by a thin moose-blue line */
  .etym-spine {
    position: relative;
    padding-left: 48px;
    max-width: 760px;
    margin: 0 auto 70px;
  }
  /* Spine: 2px line at x=8, so spine center is at x=9 */
  .etym-spine::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 22px;
    bottom: 22px;
    width: 2px;
    background: var(--moose-blue);
    opacity: 0.4;
  }
  .etym-item {
    position: relative;
    padding: 22px 0;
  }
  /* Dot: 11px wide. To center on spine (x=9), dot left edge needs to be at x=9-5.5=3.5
     Item is inside padded parent (padding-left:48), so dot's left:-X makes left edge at 48-X
     We need 48-X = 3.5 → X = 44.5 (round to 44.5px or 45px)
     Using calc to make it precise */
  .etym-item::before {
    content: '';
    position: absolute;
    left: calc(-48px + 9px - 5.5px);
    top: 32px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--paper);
    border: 2px solid var(--moose-blue);
    box-sizing: border-box;
  }
  /* Alternate dot color - mint on 2nd and 4th items */
  .etym-item:nth-child(2)::before { border-color: var(--mint); }
  .etym-item:nth-child(4)::before { border-color: var(--mint); }
  .etym-item h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.3;
    color: var(--navy);
  }
  .etym-item h3 em { font-style: italic; color: var(--moose-blue); }

  .etym-conclusion {
    text-align: center;
    padding: 60px 30px;
    background: var(--mint-pale);
    border-radius: 28px;
  }
  .etym-conclusion h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.25;
    color: var(--navy);
  }
  .etym-conclusion h3 em { font-style: italic; color: var(--moose-blue); }

  /* VALUES */
  .values {
    background: var(--mint);
    color: var(--navy);
    padding: 120px 48px 130px;
    position: relative;
  }
  .values .eyebrow { color: var(--moose-blue-deep); }
  .values-section-head { text-align: center; max-width: 800px; margin: 0 auto; }
  .values-section-head h2 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(36px, 4.6vw, 60px);
    line-height: 1.1;
    color: var(--navy);
    margin: 16px 0 18px;
  }
  .values-section-head h2 em { font-style: italic; color: var(--moose-blue-deep); }
  .values-section-head > p {
    font-size: 18px;
    color: var(--navy-soft);
    line-height: 1.65;
  }

  .values-list { margin-top: 60px; max-width: 980px; margin-left: auto; margin-right: auto; }
  .value-block {
    text-align: center;
    padding: 36px 0;
    border-bottom: 1px solid rgba(15, 26, 61, 0.18);
  }
  .value-block:last-child { border-bottom: none; }
  .value-block h3 {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(26px, 3.4vw, 38px);
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
  }
  .value-block h3 em { color: var(--moose-blue-deep); }
  .value-block p {
    font-size: 17px;
    color: var(--navy-soft);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* DAY HERE */
  .day-section {
    background: var(--paper);
    padding: 140px 48px 120px;
    position: relative;
  }
  .day-head { text-align: center; max-width: 820px; margin: 0 auto 80px; }
  .day-head h2 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(38px, 4.8vw, 64px);
    line-height: 1.05;
    color: var(--navy);
    margin: 16px 0 22px;
  }
  .day-head h2 em { font-style: italic; color: var(--moose-blue); }
  .day-head p {
    font-size: 19px;
    color: var(--navy-soft);
    line-height: 1.6;
  }

  .rhythm-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
  }
  .rhythm-timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(to bottom, var(--mint) 0%, var(--moose-blue-bright) 50%, var(--moose-blue) 100%);
    border-radius: 2px;
  }
  .rhythm-card {
    position: relative;
    background: var(--cream);
    border-radius: 18px;
    padding: 36px 40px;
    margin-bottom: 24px;
    border: 1px solid var(--rule);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  }
  .rhythm-card:hover {
    transform: translateX(6px);
    box-shadow: 0 12px 32px rgba(15, 26, 61, 0.08);
    background: var(--paper);
  }
  .rhythm-card::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 36px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--mint);
    border: 4px solid var(--paper);
    box-shadow: 0 0 0 2px var(--mint);
    z-index: 2;
  }
  .rhythm-card.r2::before { background: #5fb087; box-shadow: 0 0 0 2px #5fb087; }
  .rhythm-card.r3::before { background: var(--moose-blue-bright); box-shadow: 0 0 0 2px var(--moose-blue-bright); }
  .rhythm-card.r4::before { background: var(--moose-blue); box-shadow: 0 0 0 2px var(--moose-blue); }

  .rhythm-card .label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .rhythm-card.r1 .label { color: #4ba577; }
  .rhythm-card.r2 .label { color: #5fb087; }
  .rhythm-card.r3 .label { color: var(--moose-blue-bright); }
  .rhythm-card.r4 .label { color: var(--moose-blue); }

  .rhythm-card h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.15;
  }
  .rhythm-card p {
    font-size: 16px;
    color: var(--navy-soft);
    line-height: 1.65;
  }

  .class-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 22px;
  }
  .class-card { padding: 22px 24px; border-radius: 14px; border: 2px solid; }
  .class-card.elem { background: var(--mint-pale); border-color: var(--mint); }
  .class-card.middle { background: rgba(43, 63, 166, 0.06); border-color: var(--moose-blue); }
  .class-card .ctitle {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
  }
  .class-card.elem .ctitle { color: #2a6b48; }
  .class-card.middle .ctitle { color: var(--moose-blue); }
  .class-card p { font-size: 14.5px; line-height: 1.55; color: var(--navy-soft); }

  /* APPROACH */
  .approach { background: var(--cream); padding: 0; position: relative; }
  .approach-hero {
    background: var(--moose-blue);
    color: var(--cream);
    padding: 110px 48px 130px;
    text-align: center;
    position: relative;
  }
  .approach-hero .eyebrow { color: var(--mint); }
  .approach-hero h2 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(44px, 5.6vw, 76px);
    line-height: 1.0;
    color: var(--cream);
    margin: 16px 0 28px;
    letter-spacing: -0.02em;
  }
  .approach-hero h2 em {
    display: block;
    font-style: italic;
    color: var(--mint);
    font-weight: 500;
  }
  .approach-hero p {
    font-size: 19px;
    color: rgba(250, 247, 240, 0.85);
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto;
  }

  .approach-belief {
    background: var(--mint-pale);
    text-align: center;
    padding: 80px 48px;
  }
  .approach-belief .eyebrow { color: var(--moose-blue-deep); }
  .approach-belief h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(30px, 3.6vw, 44px);
    line-height: 1.2;
    color: var(--navy);
    margin: 12px auto 16px;
    max-width: 800px;
  }
  .approach-belief h3 em { font-style: italic; color: var(--moose-blue); }
  .approach-belief p {
    font-size: 18px;
    color: var(--navy-soft);
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto;
  }

  .inspirations { background: var(--cream); padding: 100px 48px; }
  .insp-head { margin-bottom: 50px; max-width: 1200px; margin-left: auto; margin-right: auto; text-align: center; }
  .insp-head .eyebrow { color: var(--moose-blue); margin-bottom: 14px; }
  .insp-head h2,
  .insp-head h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(34px, 4.4vw, 52px);
    line-height: 1.1;
    color: var(--navy);
    margin-top: 0;
  }
  .insp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .insp-card {
    background: var(--paper);
    border-radius: 18px;
    padding: 32px 32px 30px;
    border: 1px solid var(--rule);
    border-top: 4px solid;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
  }
  .insp-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15, 26, 61, 0.08); }
  .insp-card.c1 { border-top-color: var(--moose-blue); }
  .insp-card.c2 { border-top-color: var(--mint); }
  .insp-card.c3 { border-top-color: #5fb087; }
  .insp-card.c4 { border-top-color: var(--moose-blue-bright); }

  /* Icons sit as bottom-right decorative stamps - faded, larger, ornamental */
  .insp-icon {
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 80px;
    height: 80px;
    display: block;
    opacity: 0.18;
    pointer-events: none;
  }
  .insp-card.c1 .insp-icon { color: var(--moose-blue); }
  .insp-card.c2 .insp-icon { color: #4ba577; }
  .insp-card.c3 .insp-icon { color: #4ba577; }
  .insp-card.c4 .insp-icon { color: var(--moose-blue-bright); }

  .insp-card h4 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 12px;
    position: relative;
  }
  .insp-card.c1 h4 { color: var(--moose-blue); }
  .insp-card.c2 h4 { color: #2a6b48; }
  .insp-card.c3 h4 { color: #2a6b48; }
  .insp-card.c4 h4 { color: var(--moose-blue-bright); }
  .insp-card p { color: var(--navy-soft); font-size: 15.5px; line-height: 1.6; position: relative; padding-bottom: 28px; }

  .approach-foot {
    background: var(--moose-blue-deep);
    color: var(--cream);
    padding: 100px 48px;
    text-align: center;
  }
  .approach-foot h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(36px, 4.6vw, 56px);
    line-height: 1.05;
    margin-bottom: 12px;
    color: var(--cream);
  }
  .approach-foot h3 em {
    display: block;
    font-style: italic;
    color: var(--mint);
    font-weight: 500;
  }
  .approach-foot p {
    font-size: 18px;
    color: rgba(250, 247, 240, 0.85);
    line-height: 1.65;
    max-width: 680px;
    margin: 28px auto 0;
  }

  /* STRUCTURE */
  .structure { background: var(--paper); padding: 140px 48px 120px; }
  .structure-head { text-align: center; max-width: 820px; margin: 0 auto 70px; }
  .structure-head h2 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    color: var(--navy);
    margin: 14px 0 20px;
  }
  .structure-head h2 em { font-style: italic; color: var(--moose-blue); display: block; }
  .structure-head p { font-size: 19px; color: var(--navy-soft); line-height: 1.6; }

  .big-pic {
    background: var(--cream);
    border-radius: 24px;
    padding: 40px 44px;
    margin: 0 auto 24px;
    max-width: 1100px;
    border-left: 6px solid var(--moose-blue);
  }
  .big-pic .eyebrow { color: var(--moose-blue); margin-bottom: 8px; display: block; }
  .big-pic h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 14px;
  }
  .big-pic p { font-size: 17px; line-height: 1.65; color: var(--navy-soft); }

  .day-blocks {
    display: grid;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .day-block { border-radius: 24px; overflow: hidden; border: 1px solid var(--rule); }
  .day-block-head { padding: 28px 36px 24px; }
  .day-block.on-campus .day-block-head {
    background: var(--moose-blue);
    color: var(--cream);
  }
  .day-block.off-campus .day-block-head {
    background: var(--mint);
    color: var(--navy);
  }
  .day-block-head .meta {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.85;
  }
  .day-block-head h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 12px;
  }
  .day-block-head p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.92;
    max-width: 640px;
  }
  .day-block-body { padding: 32px 36px; background: var(--paper); }
  .day-block-body ul { list-style: none; display: grid; gap: 12px; }
  .day-block-body li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 16px;
    color: var(--navy);
  }
  .day-block-body li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--moose-blue);
    margin-top: 9px;
    flex-shrink: 0;
  }
  .day-block.off-campus .day-block-body li::before { background: var(--mint); }

  .area-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }
  .area-card { padding: 22px 26px; border-radius: 14px; border-top: 4px solid; }
  .area-card.a1 { background: var(--mint-pale); border-top-color: var(--mint); }
  .area-card.a2 { background: rgba(43, 63, 166, 0.06); border-top-color: var(--moose-blue); }
  .area-card .alabel {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .area-card.a1 .alabel { color: #2a6b48; }
  .area-card.a2 .alabel { color: var(--moose-blue); }
  .area-card .atitle {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 19px;
    margin-bottom: 8px;
    color: var(--navy);
  }
  .area-card p { font-size: 14.5px; line-height: 1.55; color: var(--navy-soft); }

  .accountable {
    background: var(--mint);
    color: var(--navy);
    padding: 70px 48px;
    text-align: center;
    border-radius: 24px;
    margin: 48px auto 0;
    max-width: 1100px;
  }
  .accountable h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(26px, 3.2vw, 38px);
    line-height: 1.25;
    max-width: 920px;
    margin: 0 auto;
  }
  .accountable h3 em {
    font-style: italic;
    color: var(--moose-blue-deep);
    font-weight: 500;
  }

  /* ENRICHMENT */
  .enrichment {
    background: var(--mint-pale);
    padding: 130px 48px;
    position: relative;
  }
  .enrichment-head { text-align: center; max-width: 820px; margin: 0 auto 60px; }
  .enrichment-head h2 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    color: var(--navy);
    margin: 14px 0 20px;
  }
  .enrichment-head h2 em { font-style: italic; color: var(--moose-blue); display: block; }
  .enrichment-head > p { font-size: 19px; color: var(--navy-soft); line-height: 1.6; }

  .enrichment-intro {
    background: var(--paper);
    border-radius: 24px;
    padding: 44px 48px;
    max-width: 1000px;
    margin: 0 auto 40px;
    border-left: 6px solid var(--mint);
  }
  .enrichment-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--navy);
    margin-bottom: 14px;
  }
  .enrichment-intro p:last-child { margin-bottom: 0; }
  .enrichment-intro strong { color: var(--moose-blue); font-weight: 600; }

  .enrichment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .enrich-card {
    background: var(--paper);
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .enrich-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 26, 61, 0.12);
  }
  .enrich-card .card-head {
    padding: 26px 30px 22px;
  }
  .enrich-card.one .card-head {
    background: var(--moose-blue);
    color: var(--cream);
  }
  .enrich-card.two .card-head {
    background: var(--mint);
    color: var(--navy);
  }
  .enrich-card .meta {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.85;
  }
  .enrich-card h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.15;
    margin-bottom: 10px;
  }
  .enrich-card .card-head p {
    font-size: 15px;
    line-height: 1.55;
    opacity: 0.9;
  }
  .enrich-card .card-body { padding: 26px 30px; }
  .enrich-card .card-body ul {
    list-style: none;
    display: grid;
    gap: 10px;
  }
  .enrich-card .card-body li {
    font-size: 15px;
    color: var(--navy);
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
  }
  .enrich-card.one .card-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    background: var(--moose-blue);
    border-radius: 50%;
  }
  .enrich-card.two .card-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    background: var(--mint);
    border-radius: 50%;
  }

  .enrichment-note {
    max-width: 1000px;
    margin: 40px auto 0;
    background: rgba(43, 63, 166, 0.08);
    border-left: 4px solid var(--moose-blue);
    border-radius: 0 12px 12px 0;
    padding: 22px 28px;
  }
  .enrichment-note p {
    font-size: 16px;
    color: var(--navy);
    line-height: 1.65;
  }
  .enrichment-note strong { color: var(--moose-blue); font-weight: 700; }
  .enrichment-note a {
    color: var(--moose-blue);
    text-decoration: underline;
    font-weight: 600;
  }

  /* TUITION */
  .tuition {
    background: var(--moose-blue);
    color: var(--cream);
    padding: 120px 48px 100px;
    position: relative;
  }
  .tuition .eyebrow { color: var(--mint); }
  .tuition-head { text-align: center; max-width: 800px; margin: 0 auto 70px; }
  .tuition-head h2 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    color: var(--cream);
    margin: 14px 0 20px;
  }
  .tuition-head h2 em {
    font-style: italic;
    color: var(--mint);
    font-weight: 500;
    display: block;
  }
  .tuition-head p {
    font-size: 19px;
    color: rgba(250, 247, 240, 0.85);
    line-height: 1.6;
  }

  .tuition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .program {
    background: var(--paper);
    border-radius: 24px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: transform 0.3s, box-shadow 0.3s;
    color: var(--navy);
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .program:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2); }
  .program.featured { border-color: var(--mint); }
  .program-head { padding: 28px 28px 24px; border-bottom: 1px solid var(--rule); }
  .program.p1 .program-head { background: var(--mint-pale); }
  .program.p2 .program-head { background: rgba(43, 63, 166, 0.08); }
  .program.p3 .program-head { background: var(--mint); }

  .program-head .freq {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--moose-blue);
    margin-bottom: 8px;
  }
  .program.p3 .program-head .freq { color: var(--moose-blue-deep); }
  .program-head h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 10px;
  }
  .program-head p { font-size: 14.5px; color: var(--navy-soft); line-height: 1.55; }

  .program-prices { padding: 24px 28px; flex: 1; }
  .price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px dashed var(--rule);
  }
  .price-row:last-child { border-bottom: none; }
  .price-row .level {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--moose-blue);
  }
  .price-row .price {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 26px;
    color: var(--navy);
  }
  .price-row .price small {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: var(--navy-soft);
    margin-left: 4px;
  }

  .featured-tag {
    position: absolute;
    top: 14px;
    right: 18px;
    background: var(--moose-blue);
    color: var(--cream);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    z-index: 2;
  }

  .tuition-policies {
    max-width: 880px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .policy {
    background: rgba(250, 247, 240, 0.08);
    border-left: 3px solid var(--mint);
    padding: 22px 26px;
    border-radius: 0 12px 12px 0;
  }
  .policy .ptitle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 8px;
  }
  .policy p { font-size: 15px; color: rgba(250, 247, 240, 0.92); line-height: 1.6; }
  .policy strong { color: var(--cream); font-weight: 600; }

  .tuition-help {
    background: var(--mint);
    color: var(--navy);
    padding: 70px 48px;
    border-radius: 24px;
    text-align: center;
    margin: 70px auto 0;
    max-width: 1100px;
  }
  .tuition-help h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.15;
    margin-bottom: 4px;
  }
  .tuition-help h3 em {
    display: block;
    font-style: italic;
    color: var(--moose-blue-deep);
  }
  .tuition-help p {
    font-size: 17px;
    color: var(--navy);
    line-height: 1.6;
    max-width: 620px;
    margin: 18px auto 28px;
    opacity: 0.85;
  }

  /* HIRING */
  .hiring-teaser { background: var(--cream); padding: 130px 48px; }
  .hiring-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .hiring-text h2 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(38px, 4.6vw, 60px);
    line-height: 1.05;
    color: var(--navy);
    margin: 14px 0 24px;
  }
  .hiring-text h2 em { font-style: italic; color: var(--moose-blue); }
  .hiring-text p {
    font-size: 18px;
    color: var(--navy-soft);
    line-height: 1.65;
    margin-bottom: 24px;
  }
  .hiring-img {
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden;
    background: var(--mint-pale);
    box-shadow: 0 24px 60px rgba(15, 26, 61, 0.18);
  }
  .hiring-img img { width: 100%; height: 100%; object-fit: cover; }

  /* GUIDE QUALITIES (mini-section under hiring) */
  .guide-traits {
    max-width: 1200px;
    margin: 80px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .trait-card {
    background: var(--paper);
    border-radius: 20px;
    padding: 32px 32px;
    border: 1px solid var(--rule);
  }
  .trait-card.good { border-top: 4px solid var(--mint); }
  .trait-card.fit { border-top: 4px solid var(--moose-blue); }
  .trait-card .ttitle {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .trait-card.good .ttitle { color: #2a6b48; }
  .trait-card.fit .ttitle { color: var(--moose-blue); }
  .trait-card h4 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 18px;
    line-height: 1.2;
  }
  .trait-card ul { list-style: none; display: grid; gap: 12px; }
  .trait-card li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15.5px;
    line-height: 1.5;
    color: var(--navy-soft);
  }
  .trait-card.good li::before {
    content: '+';
    color: var(--mint);
    font-weight: 700;
    flex-shrink: 0;
    width: 16px;
  }
  .trait-card.fit li::before {
    content: '−';
    color: var(--moose-blue);
    font-weight: 700;
    flex-shrink: 0;
    width: 16px;
  }

  /* HIRING - additional sub-sections */
  .guide-note {
    max-width: 1100px;
    margin: 60px auto 0;
    background: var(--paper);
    border-radius: 18px;
    padding: 32px 36px;
    border-left: 4px solid var(--mint);
    box-shadow: 0 8px 24px rgba(15, 26, 61, 0.05);
  }
  .guide-note .ttitle {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--moose-blue);
    margin-bottom: 10px;
  }
  .guide-note h4 {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 12px;
  }
  .guide-note p {
    font-size: 16px;
    color: var(--navy-soft);
    line-height: 1.65;
  }

  .two-things {
    max-width: 1200px;
    margin: 80px auto 0;
  }
  .two-things-head {
    text-align: center;
    margin-bottom: 40px;
  }
  .two-things-head .eyebrow { color: var(--moose-blue); }
  .two-things-head h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.1;
    color: var(--navy);
    margin: 12px 0 14px;
  }
  .two-things-head h3 em { font-style: italic; color: var(--moose-blue); }
  .two-things-head p {
    font-size: 17px;
    color: var(--navy-soft);
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto;
  }
  .two-things-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 36px;
  }
  .req-card {
    background: var(--paper);
    border-radius: 18px;
    padding: 32px 32px;
    border: 1px solid var(--rule);
    border-top: 4px solid var(--moose-blue);
  }
  .req-card.b { border-top-color: var(--mint); }
  .req-card h4 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 22px;
    color: var(--moose-blue);
    margin-bottom: 14px;
    line-height: 1.2;
  }
  .req-card.b h4 { color: #2a6b48; }
  .req-card p {
    font-size: 16px;
    color: var(--navy-soft);
    line-height: 1.65;
  }

  .hiring-close {
    background: var(--moose-blue);
    color: var(--cream);
    border-radius: 24px;
    padding: 70px 48px;
    text-align: center;
    margin: 80px auto 0;
    max-width: 1100px;
  }
  .hiring-close h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 4px;
  }
  .hiring-close h3 em {
    display: block;
    font-style: italic;
    color: var(--mint);
  }
  .hiring-close p {
    font-size: 17px;
    color: rgba(250, 247, 240, 0.85);
    line-height: 1.65;
    max-width: 620px;
    margin: 18px auto 28px;
  }

  /* KIDS REVIEWS */
  .reviews { background: var(--mint-pale); padding: 120px 48px; overflow: hidden; }
  .reviews-head { text-align: center; max-width: 820px; margin: 0 auto 60px; }
  .reviews-head h2 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-style: italic;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    color: var(--navy);
    margin: 14px 0 18px;
  }
  .reviews-head h2 .normal { font-style: normal; }
  .reviews-head p {
    font-size: 18px;
    color: var(--navy-soft);
    line-height: 1.65;
  }
  .reviews-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .reviews-image {
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 26, 61, 0.2);
  }
  .reviews-image img { width: 100%; height: 100%; object-fit: cover; }

  .quote-list { display: grid; gap: 28px; }
  .kid-quote { border-left: 3px solid var(--moose-blue); padding-left: 22px; }
  .kid-quote .name {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 19px;
    color: var(--moose-blue);
    margin-bottom: 6px;
  }
  .kid-quote p {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 19px;
    color: var(--navy);
    line-height: 1.5;
  }

  /* OUTSIDE QUOTE BAND (uses snap-the-whip) */
  .outside-quote {
    position: relative;
    padding: 140px 48px;
    text-align: center;
    overflow: hidden;
  }
  .outside-quote-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/snap-the-whip.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
  }
  .outside-quote-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 26, 61, 0.55), rgba(43, 63, 166, 0.7));
  }
  .outside-quote-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    color: var(--cream);
  }
  .outside-quote-content .eyebrow {
    color: var(--mint);
    margin-bottom: 22px;
    display: block;
  }
  .outside-quote-content h2 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.15;
    color: var(--cream);
    letter-spacing: -0.01em;
  }
  .outside-quote-content h2 em {
    font-style: italic;
    color: var(--mint);
    font-weight: 500;
  }
  .outside-quote-content .attr {
    margin-top: 28px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(250, 247, 240, 0.7);
  }

  /* CONTACT */
  .contact { background: var(--navy); color: var(--cream); padding: 120px 48px; }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .contact-text .eyebrow { color: var(--mint); }
  .contact-text h2 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.05;
    color: var(--cream);
    margin: 16px 0 28px;
  }
  .contact-text h2 em {
    font-style: italic;
    color: var(--mint);
    display: block;
  }
  .contact-text > p {
    font-size: 18px;
    color: rgba(250, 247, 240, 0.85);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 520px;
  }
  .contact-info { display: grid; gap: 24px; }
  .contact-item { display: flex; gap: 16px; align-items: flex-start; }
  .contact-item .ic {
    width: 44px;
    height: 44px;
    background: rgba(126, 211, 168, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--mint);
  }
  .contact-item .label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 4px;
  }
  .contact-item .val {
    font-family: 'Fraunces', serif;
    font-size: 19px;
    color: var(--cream);
    line-height: 1.4;
  }
  .contact-item .val a {
    color: var(--cream);
    text-decoration: none;
    border-bottom: 1px solid rgba(250, 247, 240, 0.35);
  }
  .contact-item .val a:hover { color: var(--mint); border-bottom-color: var(--mint); }

  .contact-card {
    background: var(--paper);
    color: var(--navy);
    padding: 48px 40px;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  }
  .contact-card h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .contact-card h3 em { font-style: italic; color: var(--moose-blue); }
  .contact-card .sub {
    font-size: 15px;
    color: var(--navy-soft);
    margin-bottom: 30px;
  }

  .field { margin-bottom: 18px; }
  .field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--moose-blue);
    margin-bottom: 8px;
  }
  .field input, .field select, .field textarea {
    width: 100%;
    background: var(--cream);
    border: 1.5px solid var(--rule);
    border-radius: 10px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 15px;
    color: var(--navy);
    outline: none;
    transition: all 0.2s;
  }
  .field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--moose-blue);
    background: var(--paper);
  }
  .field textarea { min-height: 90px; resize: vertical; }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  .form-submit {
    width: 100%;
    background: var(--moose-blue);
    color: var(--cream);
    border: none;
    padding: 16px;
    border-radius: 100px;
    font-family: inherit;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 8px;
  }
  .form-submit:hover {
    background: var(--moose-blue-deep);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(43, 63, 166, 0.4);
  }

  /* Email link styled as primary action button */
  .contact-email-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    margin: 28px 0 20px;
    padding: 18px 16px;
    font-size: 16px;
    letter-spacing: 0.01em;
  }
  .contact-card-foot {
    font-size: 14px;
    color: var(--navy-soft);
    text-align: center;
    margin: 0;
  }

  /* FAQ */
  .faq-section { background: var(--paper); padding: 120px 48px; }
  .faq-section h2 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(38px, 4.6vw, 56px);
    line-height: 1.05;
    color: var(--navy);
    margin: 14px 0 50px;
    text-align: center;
  }
  .faq-section h2 em { font-style: italic; color: var(--moose-blue); }
  .faq-section .eyebrow { display: block; text-align: center; }

  .faq-list { max-width: 880px; margin: 40px auto 0; }
  .faq {
    background: var(--cream);
    border-radius: 14px;
    padding: 22px 28px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
  }
  .faq:hover { background: var(--paper); border-color: var(--rule); }
  .faq.open { background: var(--paper); border-color: var(--moose-blue); }
  .faq-q {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
  .faq-q .toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--mint-pale);
    color: var(--moose-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    transition: all 0.3s;
  }
  .faq.open .faq-q .toggle {
    background: var(--moose-blue);
    color: var(--cream);
    transform: rotate(45deg);
  }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--navy-soft);
    font-size: 16px;
    line-height: 1.7;
  }
  .faq.open .faq-a { max-height: 400px; padding-top: 16px; }

  /* FOOTER */
  footer {
    background: var(--moose-blue-deep);
    color: var(--cream);
    padding: 80px 48px 36px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(250, 247, 240, 0.15);
  }
  .footer-brand .brand-text { color: var(--cream); }
  .footer-brand .brand-sub { color: var(--mint); }
  .footer-tag {
    margin-top: 18px;
    font-size: 15px;
    color: rgba(250, 247, 240, 0.7);
    line-height: 1.6;
    max-width: 320px;
  }
  .footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; display: grid; gap: 10px; }
  .footer-col a {
    color: rgba(250, 247, 240, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--mint); }
  .footer-base {
    text-align: center;
    color: rgba(250, 247, 240, 0.55);
    font-size: 13px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-base .ital { font-style: italic; color: var(--mint); }

  /* ANIMATIONS */
  @keyframes riseIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }
  .hero-eyebrow { animation: riseIn 0.9s ease-out 0.1s both; }
  .hero h1 { animation: riseIn 1s ease-out 0.3s both; }
  .hero-lede { animation: riseIn 1s ease-out 0.5s both; }
  .hero-actions { animation: riseIn 1s ease-out 0.7s both; }
  .hero-logo-card { animation: scaleIn 1.2s ease-out 0.6s both; }

  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s, transform 0.9s; }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* RESPONSIVE */
  /* Tablet and below: collapse two-column layouts */
  @media (max-width: 1024px) {
    .hero-content, .hiring-grid, .reviews-layout, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-logo-card { max-width: 380px; margin: 0 auto; }
    .hiring-img, .reviews-image { max-width: 480px; margin: 0 auto; }
    .tuition-grid { grid-template-columns: 1fr; }
    .insp-grid, .guide-traits, .two-things-grid, .enrichment-options { grid-template-columns: 1fr; }
  }

  /* Below 960px: switch to mobile nav (the desktop nav has 7 items + CTA + brand and runs out of room) */
  @media (max-width: 960px) {
    nav.primary {
      padding: 12px 20px;
      flex-wrap: wrap;
      row-gap: 0;
      gap: 10px;
    }
    .brand { order: 1; flex: 1 1 0; min-width: 0; gap: 10px; }
    .brand > div { min-width: 0; overflow: hidden; }
    .brand-text { font-size: 17px; overflow: hidden; text-overflow: ellipsis; }
    .nav-cta { order: 2; flex-shrink: 0; }
    .nav-toggle { order: 3; flex-shrink: 0; margin-left: 0; }
    nav.primary ul {
      order: 4;
      display: none;
      flex-basis: 100%;
      flex-direction: column;
      gap: 0;
      padding: 16px 0 8px;
      margin-top: 12px;
      border-top: 1px solid var(--rule);
    }
    nav.primary.menu-open ul { display: flex; }
    nav.primary ul li {
      width: 100%;
      border-bottom: 1px solid var(--rule);
    }
    nav.primary ul li.mobile-only { display: block; }
    nav.primary ul li:last-child { border-bottom: none; }
    nav.primary ul a {
      display: block;
      padding: 14px 4px;
      font-size: 16px;
      width: 100%;
    }
    nav.primary ul a::after { display: none; }
    .nav-toggle { display: inline-flex; }
    .nav-cta {
      padding: 10px 16px;
      font-size: 13px;
    }
    .brand-logo { width: 42px; height: 42px; }
    .brand-sub { font-size: 9px; letter-spacing: 0.22em; }
  }

  /* Phone: tighten section padding, single-column everything */
  @media (max-width: 768px) {
    body { font-size: 16px; }
    .topbar { font-size: 12px; padding: 8px 16px; line-height: 1.5; }
    nav.primary { padding: 10px 16px; }
    .nav-cta { padding: 9px 16px; font-size: 12px; }

    .hero { padding: 50px 20px 90px; min-height: auto; }
    .hero h1 { font-size: clamp(38px, 9vw, 56px); }
    .hero-lede { font-size: 17px; }
    .hero-eyebrow { font-size: 11px; letter-spacing: 0.3em; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { justify-content: center; }

    .etymology, .values, .day-section, .approach-hero, .approach-belief, .inspirations, .approach-foot, .structure, .enrichment, .tuition, .hiring-teaser, .reviews, .outside-quote, .contact, .faq-section {
      padding-left: 20px;
      padding-right: 20px;
      padding-top: 80px;
      padding-bottom: 80px;
    }

    /* Mobile: spine 2px at left:5, center at x=6. Dot 9px, parent padding 32px.
       Dot left = -32 + 6 - 4.5 = -30.5 */
    .etym-spine { padding-left: 32px; }
    .etym-spine::before { left: 5px; }
    .etym-item::before { left: calc(-32px + 6px - 4.5px); top: 26px; width: 9px; height: 9px; }
    .etym-item h3 { font-size: 21px; line-height: 1.3; }
    .area-split, .class-split { grid-template-columns: 1fr; }
    .tuition-policies { grid-template-columns: 1fr; }
    .field-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }

    .rhythm-timeline { padding-left: 28px; }
    .rhythm-card { padding: 24px 22px; }
    .rhythm-card::before { left: -28px; width: 14px; height: 14px; top: 28px; }
    .rhythm-card h3 { font-size: 22px; }

    .big-pic, .day-block-head, .day-block-body { padding-left: 24px; padding-right: 24px; }
    .accountable, .tuition-help, .hiring-close, .enrichment-intro {
      padding-left: 28px;
      padding-right: 28px;
      border-radius: 18px;
    }
    .program-head, .program-prices { padding-left: 22px; padding-right: 22px; }

    .contact-card { padding: 32px 24px; }

    .insp-card, .req-card, .trait-card { padding: 26px 24px; }

    /* Headline sizing on mobile */
    .display, h2.section-title { font-size: clamp(30px, 7vw, 42px) !important; }
    .approach-hero h2, .tuition-head h2, .structure-head h2, .day-head h2 { font-size: clamp(34px, 8vw, 48px); }

    .outside-quote { padding-top: 90px; padding-bottom: 90px; }
    .outside-quote-content h2 { font-size: clamp(26px, 6.5vw, 38px); }
  }

  /* Very small phones: prioritize logo + hamburger, hide CTA (it's in the menu) */
  @media (max-width: 420px) {
    .topbar { font-size: 11px; padding: 8px 12px; }
    nav.primary { padding: 10px 14px; gap: 8px; }
    .brand-logo { width: 38px; height: 38px; }
    .brand-text { font-size: 16px; }
    .brand-sub { display: none; }
    .nav-cta { display: none; }
  }
/* ============================================================
   MULTI-PAGE ADDITIONS
   ============================================================ */

/* Active nav state - bolder + deeper blue + underline since base color is moose-blue */
nav.primary ul li.active a {
  color: var(--moose-blue-deep);
  font-weight: 600;
}
nav.primary ul li.active a::after {
  width: 100%;
}

/* STANDALONE REVIEWS PAGE wrapper */
.reviews-page {
  background: var(--paper);
  padding: 100px 48px 120px;
}
.reviews-page .reviews-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .reviews-page .reviews-layout { grid-template-columns: 1fr; gap: 50px; }
  .reviews-page .reviews-image { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .reviews-page { padding: 80px 20px; }
}

/* PAGE BANNER (top of standalone pages) */
.page-banner {
  position: relative;
  padding: 110px 48px 140px;
  text-align: center;
  overflow: hidden;
}
.page-banner-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-banner h1 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 18px 0 24px;
}
.page-banner p {
  font-size: 19px;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}
.page-banner.banner-blue { background: var(--moose-blue); color: var(--cream); }
.page-banner.banner-blue p { color: rgba(250, 247, 240, 0.85); }
.page-banner.banner-mint { background: var(--mint-pale); color: var(--navy); }
.page-banner.banner-cream { background: var(--cream); color: var(--navy); padding-bottom: 80px; }
.page-banner.banner-cream p { color: var(--navy-soft); }

/* TEASER CARDS (homepage links to standalone pages) */
.teasers {
  background: var(--paper);
  padding: 130px 48px 110px;
}
.teasers-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 70px;
}
.teasers-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1.05;
  color: var(--navy);
  margin: 14px 0 20px;
}
.teasers-head h2 em { font-style: italic; color: var(--moose-blue); }
.teasers-head p {
  font-size: 18px;
  color: var(--navy-soft);
  line-height: 1.6;
}
.teasers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.teaser-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 36px 32px 32px;
  text-decoration: none;
  color: var(--navy);
  border: 1px solid var(--rule);
  border-top: 6px solid;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.teaser-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 26, 61, 0.12);
}
.teaser-card.t1 { border-top-color: var(--moose-blue); }
.teaser-card.t2 { border-top-color: var(--mint); }
.teaser-card.t3 { border-top-color: var(--moose-blue-bright); }
.teaser-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--moose-blue);
  margin-bottom: 14px;
}
.teaser-card.t2 .teaser-eyebrow { color: #2a6b48; }
.teaser-card.t3 .teaser-eyebrow { color: var(--moose-blue-bright); }
.teaser-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 14px;
}
.teaser-card p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--navy-soft);
  margin-bottom: 22px;
  flex: 1;
}
.teaser-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--moose-blue);
  letter-spacing: 0.02em;
}
.teaser-card.t2 .teaser-link { color: #2a6b48; }
.teaser-card.t3 .teaser-link { color: var(--moose-blue-bright); }

/* HIRING TEASER MINI (smaller homepage version) */
.hiring-teaser-mini {
  background: var(--cream);
  padding: 110px 48px;
}
.hiring-mini-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hiring-mini-text h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.05;
  color: var(--navy);
  margin: 14px 0 24px;
}
.hiring-mini-text h2 em { font-style: italic; color: var(--moose-blue); }
.hiring-mini-text p {
  font-size: 18px;
  color: var(--navy-soft);
  line-height: 1.65;
  margin-bottom: 28px;
}
.hiring-mini-img {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--mint-pale);
  box-shadow: 0 24px 60px rgba(15, 26, 61, 0.18);
}
.hiring-mini-img img { width: 100%; height: 100%; object-fit: cover; }

/* STANDALONE ENRICHMENT PAGE wrapper */
.enrichment-page {
  background: var(--paper);
  padding: 100px 48px 120px;
}
.enrichment-page .container { max-width: 1100px; }

/* STANDALONE TUITION PAGE wrapper - light background */
.tuition-page {
  background: var(--paper);
  padding: 100px 48px 120px;
}
.tuition-page .program {
  border: 1px solid var(--rule);
}

/* Light tuition policies (on white background, not blue) */
.tuition-policies-light {
  max-width: 980px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.policy-light {
  background: var(--cream);
  border-left: 3px solid var(--moose-blue);
  padding: 22px 26px;
  border-radius: 0 12px 12px 0;
}
.policy-light .ptitle-light {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--moose-blue);
  margin-bottom: 8px;
}
.policy-light p {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.6;
}
.policy-light strong { color: var(--moose-blue-deep); font-weight: 700; }

/* CROSS-LINK CARDS (footer-of-page navigation) */
.cross-link {
  background: var(--cream);
  padding: 100px 48px 120px;
  border-top: 1px solid var(--rule);
}
.cross-link-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.cross-card {
  background: var(--paper);
  border-radius: 20px;
  padding: 36px 36px 32px;
  text-decoration: none;
  color: var(--navy);
  border: 1px solid var(--rule);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: block;
}
.cross-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 26, 61, 0.1);
  border-color: var(--moose-blue);
}
.cross-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--moose-blue);
  margin-bottom: 12px;
}
.cross-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 12px;
}
.cross-card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--navy-soft);
  margin-bottom: 20px;
}

/* RESPONSIVE for new components */
@media (max-width: 1024px) {
  .teasers-grid { grid-template-columns: 1fr; }
  .hiring-mini-grid, .cross-link-grid { grid-template-columns: 1fr; gap: 32px; }
  .hiring-mini-img { max-width: 480px; margin: 0 auto; }
  .tuition-policies-light { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .page-banner { padding: 80px 20px 110px; }
  .page-banner h1 { font-size: clamp(32px, 8vw, 48px) !important; }
  .teasers, .hiring-teaser-mini, .cross-link, .enrichment-page, .tuition-page {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .teaser-card, .cross-card { padding: 28px 24px; }
}

/* HIRING — centered layout (no side image) */
.nowrap { white-space: nowrap; }
.hiring-grid.no-img {
  grid-template-columns: 1fr;
  max-width: 860px;
  text-align: center;
  gap: 0;
}
.hiring-grid.no-img .hiring-text {
  background: var(--mint-pale);
  border: 1px solid rgba(42, 107, 72, 0.14);
  border-radius: 28px;
  padding: 64px 48px 56px;
  position: relative;
  overflow: hidden;
}
.hiring-grid.no-img .hiring-text > * { position: relative; z-index: 2; }

/* Variant A — soft wash: whole image behind the text at low opacity */
.hiring-text.img-wash::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/hammock.jpg') center 35% / cover no-repeat;
  opacity: 0.16;
  z-index: 1;
}
.hiring-text.img-wash::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(228, 241, 233, 0.55) 30%, rgba(228, 241, 233, 0) 75%);
  z-index: 1;
}

/* Variant B — side fade: image bleeds in from the right, fading toward the text */
.hiring-text.img-side::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52%;
  background: url('/images/hammock.jpg') center / cover no-repeat;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.8) 15%, transparent 85%);
  mask-image: linear-gradient(to left, rgba(0,0,0,0.8) 15%, transparent 85%);
  opacity: 0.42;
  z-index: 1;
}

/* Variant C — image fades in at the bottom of the panel; the panel's bottom
   edge is the hero-style wave, transitioning into the cream section below */
.hiring-grid.no-img .hiring-text.img-bottom {
  padding-bottom: 170px;
  border: none;
  border-radius: 28px 28px 0 0;
}
.hiring-text.img-bottom::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 65%;
  background: url('/images/hammock.jpg') center 42% / cover no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.18) 26%, rgba(0,0,0,0.45) 52%, rgba(0,0,0,0.78) 76%, rgba(0,0,0,0.95) 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.18) 26%, rgba(0,0,0,0.45) 52%, rgba(0,0,0,0.78) 76%, rgba(0,0,0,0.95) 100%);
  opacity: 0.85;
  z-index: 1;
}
/* Wavy bottom edge — same wave as the homepage hero, filled with the next section's cream */
.hiring-text.img-bottom::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'%3E%3Cpath d='M0,80 L0,30 C200,60 400,0 600,25 C800,50 1000,5 1200,30 L1200,80 Z' fill='%23faf7f0'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  z-index: 1;
}
@media (max-width: 960px) {
  .hiring-grid.no-img .hiring-text.img-bottom { padding-bottom: 130px; border-radius: 20px 20px 0 0; }
  .hiring-text.img-bottom::before { height: 58%; }
  .hiring-text.img-bottom::after { height: 40px; }
  .hiring-text.img-side::before { width: 100%; -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.7) 10%, transparent 70%); mask-image: linear-gradient(to top, rgba(0,0,0,0.7) 10%, transparent 70%); opacity: 0.35; }
}
.hiring-grid.no-img .hiring-text h2 {
  text-wrap: balance;
  margin-bottom: 20px;
}
.hiring-grid.no-img .hiring-text p {
  margin-left: auto;
  margin-right: auto;
  max-width: 580px;
  font-size: 17px;
  text-wrap: pretty;
  margin-bottom: 18px;
}
@media (max-width: 960px) {
  .hiring-grid.no-img .hiring-text { padding: 44px 26px 40px; border-radius: 20px; }
}

/* TEASERS — colored category titles as main headers */
.teaser-card h3.teaser-main {
  font-size: 28px;
  letter-spacing: 0.01em;
  color: var(--moose-blue);
}
.teaser-card.t2 h3.teaser-main { color: #2a6b48; }
.teaser-card.t3 h3.teaser-main { color: var(--moose-blue-bright); }

/* OUTSIDE QUOTE — natural balanced wrapping (no hard breaks) */
.outside-quote-content h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

/* CONTACT FORM spacing */
#contact-form { margin-bottom: 20px; }
.two-things-head h3 { text-wrap: balance; }
