  :root {
    --header-offset: 130px;
    --blue: #3c64b4;
    --blue-deep: #2a4a8a;
    --blue-darker: #1e3a72;
    --blue-soft: #e8eef9;
    --green: #3ca050;
    --green-deep: #2e7d3e;
    --green-soft: #e4f2e6;
    --red: #e85a3c;
    --red-soft: #fce1d9;
    --yellow: #f2b134;
    --yellow-soft: #fcead0;
    --cream: #fbfaf5;
    --sand: #f4efe3;
    --ink: #1f1f1d;
    --slate: #5a5a55;
    --border: #e2dccc;
    --shadow-sm: 0 1px 2px rgba(31,31,29,.04), 0 4px 12px rgba(31,31,29,.04);
    --shadow-md: 0 1px 2px rgba(31,31,29,.04), 0 12px 32px rgba(31,31,29,.08);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; scroll-padding-top: var(--header-offset); }
  body {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 17px; line-height: 1.6;
    color: var(--ink); background: var(--cream);
    -webkit-font-smoothing: antialiased; overflow-x: hidden;
  }
  img { display: block; max-width: 100%; }
  a { color: inherit; }

  .announce {
    background: var(--yellow); color: var(--blue-darker);
    font-size: 17.5px; padding: 16px 24px; text-align: center;
    font-weight: 500; letter-spacing: .005em;
    box-shadow: inset 0 -1px 0 rgba(30,58,114,.12);
  }
  .announce a {
    display: inline-block; color: var(--cream);
    background: var(--blue-darker); text-decoration: none;
    font-weight: 700; margin-left: 10px;
    padding: 5px 14px; border-radius: 999px;
    transition: background .2s, transform .2s;
  }
  .announce a:hover { background: var(--blue); transform: translateY(-1px); }
  .announce strong { color: var(--blue-darker); font-weight: 700; }

  header {
    position: sticky; top: 0; z-index: 50;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
  }
  .nav {
    max-width: 1320px; margin: 0 auto; padding: 14px 40px;
    display: flex; align-items: center; justify-content: space-between; gap: 32px;
  }
  .logo { text-decoration: none; display: block; line-height: 0; }
  .logo img { height: 54px; width: auto; }
  nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
  nav a { text-decoration: none; font-size: 15px; font-weight: 500; color: var(--ink); transition: color .2s; }
  nav a:hover { color: var(--blue); }
  .btn-tour-nav {
    background: #c23f22; color: #fff !important;
    padding: 10px 22px; border-radius: 999px;
    transition: background .2s, transform .1s; font-weight: 600 !important;
  }
  .btn-tour-nav:hover { background: #a53219; transform: translateY(-1px); }
  .btn-enrol-nav {
    border: 1.5px solid var(--blue-deep);
    color: var(--blue-deep) !important;
    padding: 8.5px 18px; border-radius: 999px;
    transition: background .2s, color .2s, transform .1s; font-weight: 600 !important;
  }
  .btn-enrol-nav:hover { background: var(--blue-deep); color: #fff !important; transform: translateY(-1px); }
  .burger { display: none; background: none; border: none; font-size: 22px; cursor: pointer; padding: 10px; min-width: 44px; min-height: 44px; color: var(--ink); }
  @media (max-width: 1000px) {
    nav ul { display: none; }
    .burger { display: block; }
    .nav { padding: 10px 20px; }
    .logo img { height: 44px; }
  }

  /* Mobile menu overlay */
  .mobile-menu {
    display: none;
    position: fixed; inset: 0;
    background: var(--cream);
    z-index: 9999;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu-header {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 20px; border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
  }
  .mobile-menu-close {
    background: none; border: none; font-size: 28px;
    cursor: pointer; padding: 10px; min-width: 44px; min-height: 44px;
    color: var(--ink);
  }
  .mobile-menu ul {
    list-style: none; display: flex; flex-direction: column; gap: 4px;
  }
  .mobile-menu li a {
    display: block; padding: 16px 8px;
    font-size: 18px; font-weight: 500;
    border-bottom: 1px solid var(--border);
    text-decoration: none; color: var(--ink);
    min-height: 48px;
  }
  .mobile-menu li:last-child a { border-bottom: none; }
  .mobile-menu .mobile-cta {
    margin-top: 24px; display: flex; flex-direction: column; gap: 12px;
  }
  .mobile-menu .mobile-cta a {
    text-align: center; padding: 16px 24px;
    border-radius: 999px; font-weight: 600;
    text-decoration: none; min-height: 52px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
  }
  .mobile-menu .mobile-cta .m-primary { background: var(--red); color: #fff; }
  .mobile-menu .mobile-cta .m-secondary {
    background: transparent; color: var(--blue-darker);
    border: 1.5px solid var(--blue-darker);
  }

  /* Sticky bottom bar on mobile — visible after scrolling past hero */
  .mobile-cta-bar {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    z-index: 900;
    box-shadow: 0 -4px 16px rgba(0,0,0,.08);
    gap: 10px;
  }
  .mobile-cta-bar a {
    flex: 1; display: flex; align-items: center; justify-content: center;
    gap: 8px; padding: 14px 16px;
    border-radius: 999px; font-weight: 600; font-size: 15px;
    text-decoration: none; min-height: 48px;
  }
  .mobile-cta-bar .mcb-call {
    background: transparent; color: var(--blue-darker);
    border: 1.5px solid var(--blue-darker);
  }
  .mobile-cta-bar .mcb-tour { background: var(--red); color: #fff; }
  .mobile-cta-bar svg { width: 16px; height: 16px; stroke-width: 2.2; }
  .mobile-cta-bar.visible { display: flex; }
  @media (min-width: 1000px) {
    .mobile-cta-bar { display: none !important; }
  }
  /* Add bottom padding to body on mobile so the bar doesn't cover content */
  @media (max-width: 999px) {
    body.has-mobile-bar { padding-bottom: 80px; }
  }

  .hero {
    position: relative; min-height: clamp(580px, 82vh, 820px);
    overflow: hidden; background: var(--blue-darker);
  }
  .hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 45%; filter: brightness(.82) saturate(1.05); }
  .hero::after {
    content: ''; position: absolute; inset: 0;
    background:
      linear-gradient(to bottom, rgba(15,30,70,.55) 0%, rgba(20,40,90,.32) 30%, rgba(20,40,90,.35) 55%, rgba(15,30,70,.88) 100%),
      linear-gradient(to right, rgba(15,30,70,.35) 0%, rgba(15,30,70,0) 55%);
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 1320px; margin: 0 auto; min-height: 100%;
    padding: 0 40px 80px;
    display: flex; flex-direction: column; justify-content: flex-end; color: var(--cream);
    text-shadow: 0 1px 18px rgba(10,20,50,.45);
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    margin-bottom: 22px; font-weight: 500; opacity: 0.95;
  }
  .hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--yellow); }
  .hero h1 {
    font-family: 'Lora', serif; font-weight: 400;
    font-size: clamp(34px, 6vw, 76px); line-height: 1.08;
    letter-spacing: -0.028em; max-width: 920px; margin-bottom: 24px;
    overflow-wrap: break-word; word-wrap: break-word;
  }
  .hero h1 em { font-style: italic; color: var(--yellow); font-weight: 300; }
  .hero-sub { font-size: clamp(16px, 1.5vw, 18px); max-width: 580px; margin-bottom: 38px; opacity: 0.95; line-height: 1.55; }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 30px; border-radius: 999px;
    font-size: 15px; font-weight: 600; text-decoration: none;
    transition: all .2s ease; cursor: pointer; border: none; font-family: inherit;
  }
  .btn-primary { background: var(--red); color: #fff; }
  .btn-primary:hover { background: #d44a2c; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,90,60,.4); }
  .btn-ghost { background: transparent; color: var(--cream); border: 1px solid rgba(251,250,245,.55); }
  .btn-ghost:hover { background: rgba(251,250,245,.1); border-color: var(--cream); }
  .btn svg { width: 16px; height: 16px; }

  .hero-rating {
    position: absolute; top: 32px; right: 40px; z-index: 3;
    background: rgba(251,250,245,.97); backdrop-filter: blur(12px);
    border-radius: 16px; padding: 14px 20px;
    display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-md);
  }
  .hero-rating-stars { color: var(--yellow); font-size: 14px; letter-spacing: 1px; }
  .hero-rating-text { font-size: 12px; color: var(--slate); line-height: 1.3; }
  .hero-rating-text strong { display: block; color: var(--blue-darker); font-size: 14px; font-weight: 700; }
  @media (max-width: 720px) {
    .hero-rating { display: none; }
    .hero-content { padding: 0 20px 60px; }
    .btn { padding: 16px 24px; font-size: 15px; min-height: 52px; }
    .hero-actions { width: 100%; flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
  }

  .trust {
    background: var(--sand); border-bottom: 1px solid var(--border); padding: 32px 40px;
  }
  .trust-inner {
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 32px; align-items: center;
  }
  .trust-item { text-align: center; font-size: 13px; color: var(--slate); position: relative; }
  .trust-item:not(:last-child)::after {
    content: ''; position: absolute; right: -16px; top: 15%; bottom: 15%; width: 1px; background: var(--border);
  }
  .trust-item strong {
    display: block; font-family: 'Lora', serif; font-size: 30px;
    font-weight: 500; margin-bottom: 4px; letter-spacing: -0.02em;
  }
  .trust-item:nth-child(1) strong { color: var(--blue); }
  .trust-item:nth-child(2) strong { color: var(--green); }
  .trust-item:nth-child(3) strong { color: var(--blue); }
  .trust-item:nth-child(4) strong { color: var(--green); }
  @media (max-width: 720px) {
    .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .trust-item:nth-child(2)::after { display: none; }
  }

  section { padding: 110px 40px; }
  .container { max-width: 1320px; margin: 0 auto; }
  .eyebrow {
    display: inline-block; font-size: 12px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Lora', serif; font-weight: 400;
    font-size: clamp(28px, 4.2vw, 52px); line-height: 1.14;
    letter-spacing: -0.025em; color: var(--blue-darker); margin-bottom: 20px;
    overflow-wrap: break-word; word-wrap: break-word;
  }
  .section-title em { font-style: italic; color: var(--green); font-weight: 300; }
  .section-intro { font-size: 18px; color: var(--slate); max-width: 640px; line-height: 1.6; }

  .welcome-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
  .welcome-text p { margin-top: 20px; color: var(--slate); line-height: 1.75; font-size: 17.5px; }
  .welcome-text p.lead {
    font-family: 'Lora', serif; font-size: 22px; line-height: 1.5;
    color: var(--ink); margin-top: 0; font-weight: 400;
  }
  .welcome-signature {
    margin-top: 36px; display: flex; align-items: center; gap: 16px;
    padding-top: 28px; border-top: 1px solid var(--border);
  }
  .signature-avatar {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--blue-soft); color: var(--blue-darker);
    display: grid; place-items: center;
    font-family: 'Lora', serif; font-size: 22px; font-weight: 500;
  }
  .signature-text strong { display: block; font-weight: 600; font-size: 15px; }
  .signature-text span { font-size: 13px; color: var(--slate); }
  .welcome-image-stack { position: relative; aspect-ratio: 4/5; }
  .welcome-image-stack img {
    position: absolute; border-radius: 8px; object-fit: cover; box-shadow: var(--shadow-md);
  }
  .welcome-image-stack img:nth-of-type(1) { width: 72%; height: 75%; top: 0; left: 0; z-index: 2; }
  .welcome-image-stack img:nth-of-type(2) {
    width: 55%; height: 45%; bottom: 0; right: 0; z-index: 3; border: 6px solid var(--cream);
  }
  .welcome-image-stack::before {
    content: ''; position: absolute; top: -20px; right: -20px;
    width: 140px; height: 140px; background: var(--yellow); opacity: 0.6;
    border-radius: 50%; z-index: 1;
  }
  .welcome-image-stack::after {
    content: ''; position: absolute; bottom: -30px; left: -25px;
    width: 90px; height: 90px; background: var(--green-soft);
    border-radius: 50%; z-index: 1;
  }
  @media (max-width: 900px) {
    .welcome-grid { grid-template-columns: 1fr; gap: 48px; }
    .welcome-image-stack { max-width: 480px; margin: 0 auto; }
    .welcome-image-stack::before {
      width: 90px; height: 90px; top: auto; bottom: -18px; right: -12px;
    }
    .welcome-image-stack::after { display: none; }
  }

  .why { background: var(--blue-darker); color: var(--cream); }
  .why .section-title { color: var(--cream); }
  .why .section-title em { color: var(--yellow); }
  .why .section-intro { color: rgba(251,250,245,.8); }
  .why .eyebrow { color: var(--yellow); }
  .reasons-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 72px;
  }
  .reason-card {
    padding: 40px 32px;
    background: rgba(251,250,245,.04);
    border: 1px solid rgba(251,250,245,.08);
    border-radius: 16px;
    transition: transform .3s, background .3s, border-color .3s;
  }
  .reason-card:hover {
    transform: translateY(-4px);
    background: rgba(251,250,245,.07);
    border-color: rgba(251,250,245,.15);
  }
  .reason-number {
    font-family: 'Lora', serif; font-style: italic;
    font-size: 42px; font-weight: 300; color: var(--yellow);
    margin-bottom: 20px; line-height: 1; display: block;
  }
  .reason-card h3 {
    font-family: 'Lora', serif; font-size: 24px;
    font-weight: 500; margin-bottom: 14px; letter-spacing: -0.015em; line-height: 1.25;
  }
  .reason-card p { color: rgba(251,250,245,.78); font-size: 15.5px; line-height: 1.65; }
  @media (max-width: 900px) { .reasons-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 48px; } }

  /* APPROACH - hybrid with philosophy teaser */
  .approach { background: var(--sand); }
  .approach-intro-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    margin-top: 56px; margin-bottom: 72px;
  }
  .approach-card {
    background: var(--cream); border: 1px solid var(--border); border-radius: 16px;
    padding: 40px; display: flex; flex-direction: column;
  }
  .approach-icon {
    width: 52px; height: 52px; border-radius: 12px;
    display: grid; place-items: center; margin-bottom: 20px;
  }
  .approach-icon.green { background: var(--green-soft); color: var(--green-deep); }
  .approach-icon.blue { background: var(--blue-soft); color: var(--blue-deep); }
  .approach-icon svg { width: 26px; height: 26px; }
  .approach-card h3 {
    font-family: 'Lora', serif; font-size: 24px; font-weight: 500;
    margin-bottom: 14px; color: var(--blue-darker); letter-spacing: -0.015em;
  }
  .approach-card p { color: var(--slate); line-height: 1.7; font-size: 16px; }

  /* Philosophy teaser - children's quotes */
  .philo-teaser {
    background: var(--cream); border-radius: 20px;
    padding: 56px 48px; border: 1px solid var(--border);
    position: relative; overflow: hidden;
  }
  .philo-teaser::before {
    content: ''; position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    background: var(--yellow-soft);
    border-radius: 50%;
    opacity: 0.7;
  }
  .philo-teaser-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  }
  .philo-teaser-intro .section-title {
    font-size: clamp(26px, 2.6vw, 34px); margin-bottom: 16px;
  }
  .philo-teaser-intro p {
    color: var(--slate); font-size: 16px; line-height: 1.65; margin-bottom: 24px;
  }
  .philo-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--blue-darker); font-weight: 600; text-decoration: none;
    padding-bottom: 3px; border-bottom: 2px solid var(--yellow);
    transition: border-color .2s, color .2s;
  }
  .philo-link:hover { color: var(--red); border-color: var(--red); }
  .philo-link svg { width: 16px; height: 16px; }

  .philo-cards { display: grid; gap: 20px; }
  .philo-card {
    background: #fff; border-radius: 14px; padding: 24px 26px;
    border: 1px solid var(--border); display: flex; gap: 18px;
    align-items: flex-start; box-shadow: var(--shadow-sm);
  }
  .philo-card-quote {
    flex: 1; font-family: 'Lora', serif;
    font-style: italic; font-size: 16px; line-height: 1.55;
    color: var(--ink);
  }
  .philo-card-quote-mark {
    color: var(--red); font-family: 'Lora', serif;
    font-size: 36px; line-height: 0.7; display: block; margin-bottom: 6px; opacity: 0.5;
  }
  .philo-card-attribution {
    margin-top: 10px; font-family: 'Inter', sans-serif; font-style: normal;
    font-size: 12px; color: var(--slate); letter-spacing: 0.04em;
  }
  .philo-card-attribution strong { color: var(--blue-darker); font-weight: 600; }

  @media (max-width: 900px) {
    .approach-intro-grid { grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; }
    .approach-card { padding: 32px 28px; }
    .philo-teaser { padding: 40px 28px; }
    .philo-teaser-inner { grid-template-columns: 1fr; gap: 36px; }
  }

  .gallery { padding: 110px 0; background: var(--cream); }
  .gallery .container { padding: 0 40px; }
  .gallery-grid {
    display: grid; grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px; gap: 16px; margin-top: 56px;
  }
  .gallery-item { overflow: hidden; border-radius: 8px; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
  .gallery-item:hover img { transform: scale(1.04); }
  .gallery-item:nth-child(1) { grid-column: span 6; grid-row: span 2; }
  .gallery-item:nth-child(2) { grid-column: span 3; grid-row: span 1; }
  .gallery-item:nth-child(3) { grid-column: span 3; grid-row: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 3; grid-row: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 4; grid-row: span 1; }
  .gallery-item:nth-child(6) { grid-column: span 4; grid-row: span 1; }
  .gallery-item:nth-child(7) { grid-column: span 4; grid-row: span 1; }
  @media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 140px; }
    .gallery-item:nth-child(1) { grid-column: span 4; grid-row: span 2; }
    .gallery-item:nth-child(2) { grid-column: span 2; grid-row: span 1; }
    .gallery-item:nth-child(3) { grid-column: span 2; grid-row: span 2; }
    .gallery-item:nth-child(4) { grid-column: span 2; grid-row: span 1; }
    .gallery-item:nth-child(5) { grid-column: span 2; grid-row: span 1; }
    .gallery-item:nth-child(6) { grid-column: span 2; grid-row: span 1; }
    .gallery-item:nth-child(7) { grid-column: span 4; grid-row: span 1; }
  }

  /* ── Team section ── */
  .team {
    background: var(--sand); padding: 96px 0;
  }
  .team .container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
  .team-header { text-align: center; margin-bottom: 56px; }
  .team-header .section-title { margin-bottom: 14px; }
  .team-header p { font-size: 18px; color: var(--slate); max-width: 560px; margin: 0 auto; }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }

  /* Anna spans two columns on wide screens as lead card */
  .team-card--lead {
    grid-column: span 2;
    display: flex; gap: 28px; align-items: flex-start;
    background: #fff; border-radius: 18px;
    padding: 36px; box-shadow: var(--shadow-md);
  }
  .team-card--lead .team-photo {
    width: 120px; height: 120px; flex-shrink: 0;
  }
  .team-card--lead .team-info { flex: 1; }
  .team-card--lead .team-name { font-size: 22px; }
  .team-card--lead .team-bio { display: block; font-size: 15px; color: var(--slate); line-height: 1.55; margin-top: 8px; }

  .team-card {
    background: #fff; border-radius: 18px;
    padding: 32px 24px; text-align: center;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s, transform .2s;
  }
  .team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

  .team-photo {
    width: 96px; height: 96px;
    border-radius: 50%; overflow: hidden;
    margin: 0 auto 18px;
    border: 3px solid var(--blue-soft);
    background: var(--blue-soft);
  }
  .team-photo img { width: 100%; height: 100%; object-fit: cover; }

  .team-name {
    font-family: 'Lora', serif; font-size: 19px; font-weight: 500;
    color: var(--ink); margin-bottom: 4px;
  }
  .team-role {
    font-size: 12px; font-weight: 600; letter-spacing: .06em;
    text-transform: uppercase; color: var(--blue);
    margin-bottom: 6px;
  }
  .team-qual {
    font-size: 13px; color: var(--slate); margin-bottom: 10px;
    font-style: italic;
  }
  .team-tenure {
    display: inline-block;
    background: var(--green-soft); color: var(--green-deep);
    font-size: 12px; font-weight: 600; padding: 3px 10px;
    border-radius: 999px; margin-bottom: 12px;
  }

  @media (max-width: 860px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .team-card--lead { grid-column: span 2; flex-direction: column; align-items: center; text-align: center; }
    .team-card--lead .team-photo { margin: 0 auto 16px; }
  }
  @media (max-width: 600px) {
    .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .team-card--lead { grid-column: span 2; }
    .team-card { padding: 24px 16px; }
    .team { padding: 64px 0; }
    .team .container { padding: 0 20px; }
  }
  @media (max-width: 400px) {
    .team-grid { grid-template-columns: 1fr; }
    .team-card--lead { grid-column: span 1; }
  }

  .fees { background: var(--cream); }
  .fees-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
  .fees-cards { display: grid; gap: 16px; }
  .fee-card {
    background: var(--cream); border: 1px solid var(--border);
    border-radius: 12px; padding: 32px 36px;
    display: grid; grid-template-columns: 1fr auto;
    align-items: center; gap: 24px;
    transition: border-color .2s, transform .2s;
  }
  .fee-card:hover { border-color: var(--blue); transform: translateX(4px); }
  .fee-card h3 {
    font-family: 'Lora', serif; font-size: 22px; font-weight: 500;
    margin-bottom: 4px; color: var(--blue-darker);
  }
  .fee-hours { font-size: 14px; color: var(--slate); }
  .fee-price { text-align: right; font-family: 'Lora', serif; }
  .fee-price strong {
    display: block; font-size: 32px; color: var(--red); font-weight: 500;
    letter-spacing: -0.02em; line-height: 1;
  }
  .fee-price span {
    font-family: 'Inter', sans-serif; font-size: 12px; color: var(--slate);
    text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; display: block;
  }
  .fees-note {
    margin-top: 24px; padding: 24px 26px; background: var(--yellow);
    color: var(--blue-darker); border-radius: 14px;
    position: relative; overflow: hidden;
  }
  .fees-note::before {
    content: 'NEW FAMILIES'; position: absolute;
    top: 14px; right: 18px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
    background: var(--blue-darker); color: var(--yellow);
    padding: 4px 10px; border-radius: 4px;
  }
  .fees-note-title {
    font-family: 'Lora', serif; font-weight: 500;
    font-size: 22px; line-height: 1.2;
    margin-bottom: 6px; padding-right: 110px;
  }
  .fees-note-sub {
    font-size: 14px; font-weight: 500;
    margin-bottom: 14px; opacity: 0.85;
  }
  .fees-note-terms {
    display: grid; gap: 6px;
    font-size: 13px; line-height: 1.5;
    padding-top: 12px;
    border-top: 1px solid rgba(30,58,114,0.18);
  }
  .fees-note-terms li {
    list-style: none; padding-left: 18px;
    position: relative;
  }
  .fees-note-terms li::before {
    content: '\2713'; position: absolute; left: 0;
    font-weight: 700; color: var(--green-deep);
  }
  .fees-note strong { font-weight: 700; }
  .fees-small { font-size: 13px; color: var(--slate); margin-top: 12px; line-height: 1.6; }
  @media (max-width: 900px) {
    .fees-grid { grid-template-columns: 1fr; gap: 48px; }
    .fee-card { padding: 24px 26px; }
    .fee-price strong { font-size: 26px; }
  }

  .testimonials { background: var(--sand); }
  .testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
  .testimonial {
    background: var(--blue-soft); border-radius: 16px;
    padding: 36px 32px; display: flex; flex-direction: column;
  }
  .testimonial-quote-mark {
    font-family: 'Lora', serif; font-size: 72px; line-height: 0.8;
    color: var(--red); opacity: 0.4; margin-bottom: 8px; font-style: italic;
  }
  .testimonial-text {
    font-family: 'Lora', serif; font-size: 18.5px; line-height: 1.55;
    color: var(--ink); margin-bottom: 24px; flex-grow: 1;
  }
  .testimonial-author {
    display: flex; align-items: center; gap: 12px;
    padding-top: 20px; border-top: 1px solid rgba(60,100,180,.15);
  }
  .testimonial-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--blue); color: #fff;
    display: grid; place-items: center;
    font-family: 'Lora', serif; font-weight: 500; font-size: 16px;
  }
  .testimonial-name { font-weight: 600; font-size: 14px; color: var(--blue-darker); }
  .testimonial-meta { font-size: 12px; color: var(--slate); }
  .reviews-link { margin-top: 48px; text-align: center; }
  .reviews-link a {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--blue-darker); font-weight: 500; text-decoration: none;
    border-bottom: 1px solid var(--blue); padding-bottom: 2px; transition: color .2s;
  }
  .reviews-link a:hover { color: var(--red); border-color: var(--red); }
  @media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

  .a-day { background: var(--green-soft); }
  .a-day-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
  .a-day-image {
    border-radius: 12px; overflow: hidden;
    aspect-ratio: 5/4; box-shadow: var(--shadow-md);
    position: sticky; top: 100px;
  }
  .a-day-image img { width: 100%; height: 100%; object-fit: cover; }

  /* Weather toggle */
  .weather-toggle {
    display: inline-flex; background: var(--cream);
    border: 1px solid var(--border); border-radius: 999px;
    padding: 4px; margin-top: 32px; margin-bottom: 4px;
    gap: 2px;
  }
  .weather-toggle button {
    background: transparent; border: none;
    padding: 10px 20px; border-radius: 999px;
    font-family: 'Inter', sans-serif; font-size: 13px;
    font-weight: 600; color: var(--slate); cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all .2s ease;
  }
  .weather-toggle button svg { width: 14px; height: 14px; }
  .weather-toggle button[aria-pressed="true"] {
    background: var(--blue-darker); color: var(--cream);
  }
  .weather-toggle button:hover:not([aria-pressed="true"]) { color: var(--blue-darker); }

  .a-day-list { list-style: none; margin-top: 24px; display: none; }
  .a-day-list.active { display: block; }
  .a-day-list li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(30,58,114,.12);
    display: grid; grid-template-columns: 100px 1fr; gap: 20px; align-items: baseline;
  }
  .a-day-list li:last-child { border-bottom: none; }
  .a-day-time {
    font-family: 'Lora', serif; font-size: 16px;
    font-style: italic; color: var(--red); font-weight: 500;
  }
  .a-day-activity strong { display: block; font-weight: 600; color: var(--blue-darker); margin-bottom: 3px; font-size: 15.5px; }
  .a-day-activity span { color: var(--slate); font-size: 14.5px; line-height: 1.5; }
  .a-day-note {
    margin-top: 24px; padding: 16px 20px;
    background: var(--cream); border-radius: 10px;
    font-size: 14px; font-style: italic; color: var(--slate);
    line-height: 1.55; border-left: 3px solid var(--yellow);
  }
  @media (max-width: 900px) {
    .a-day-grid { grid-template-columns: 1fr; gap: 40px; }
    .a-day-image { position: static; }
    .a-day-list li { grid-template-columns: 82px 1fr; gap: 14px; }
    .a-day-time { font-size: 14px; }
  }

  .serving {
    background: var(--cream); padding: 80px 40px;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  }
  .serving-inner { max-width: 1320px; margin: 0 auto; text-align: center; }
  .serving h2 {
    font-family: 'Lora', serif; font-size: 24px; font-weight: 500;
    color: var(--blue-darker); margin-bottom: 10px;
  }
  .serving p.lead { color: var(--slate); font-size: 16px; margin-bottom: 28px; }
  .serving-suburbs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
  .suburb-tag {
    background: var(--blue-soft); color: var(--blue-darker);
    padding: 8px 18px; border-radius: 999px; font-size: 14px; font-weight: 500;
  }

  .faq { background: var(--cream); }
  .faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: flex-start; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-item:first-child { border-top: 1px solid var(--border); }
  .faq-q {
    width: 100%; padding: 26px 0;
    background: none; border: none; text-align: left;
    font-family: 'Lora', serif; font-size: 19px; font-weight: 500;
    color: var(--blue-darker); cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 20px; line-height: 1.3;
  }
  .faq-q::after {
    content: '+'; font-family: 'Lora', serif; font-size: 26px;
    color: var(--red); font-weight: 300; transition: transform .2s; flex-shrink: 0;
  }
  .faq-item.open .faq-q::after { content: '-'; }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    color: var(--slate); line-height: 1.7;
  }
  .faq-item.open .faq-a { max-height: 500px; padding: 0 0 28px; }
  .faq-a p + p { margin-top: 12px; }
  @media (max-width: 900px) {
    .faq-grid { grid-template-columns: 1fr; gap: 40px; }
    .faq-q { font-size: 17px; padding: 22px 0; }
  }

  .cta-band {
    background: var(--red); color: #fff; text-align: center;
    padding: 100px 40px; position: relative; overflow: hidden;
  }
  .cta-band::before {
    content: ''; position: absolute; top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,.14) 0%, transparent 70%);
    border-radius: 50%;
  }
  .cta-band::after {
    content: ''; position: absolute; bottom: -200px; left: -200px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(242,177,52,.3) 0%, transparent 70%);
    border-radius: 50%;
  }
  .cta-band-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
  .cta-band h2 {
    font-family: 'Lora', serif; font-weight: 400;
    font-size: clamp(32px, 4.4vw, 54px); line-height: 1.08;
    letter-spacing: -0.025em; margin-bottom: 24px;
  }
  .cta-band h2 em { font-style: italic; font-weight: 300; opacity: 0.9; }
  .cta-band p {
    font-size: 18px; opacity: 0.95; margin-bottom: 40px;
    max-width: 540px; margin-left: auto; margin-right: auto;
  }
  .cta-band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-cream { background: var(--cream); color: var(--blue-darker); }
  .btn-cream:hover { background: #fff; transform: translateY(-2px); }
  .btn-outline-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.7); }
  .btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }

  /* Tour booking form */
  .tour-form {
    background: var(--cream); color: var(--ink);
    border-radius: 16px; padding: 40px;
    max-width: 560px; margin: 0 auto; text-align: left;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
  }
  .tour-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
  .tour-form-field { display: flex; flex-direction: column; }
  .tour-form-field.full { grid-column: 1 / -1; }
  .tour-form-field label {
    font-size: 13px; font-weight: 600;
    color: var(--slate); margin-bottom: 6px;
    letter-spacing: .01em;
  }
  .tour-form-field input,
  .tour-form-field select,
  .tour-form-field textarea {
    font-family: inherit; font-size: 16px;
    padding: 12px 14px; border: 1.5px solid var(--border);
    border-radius: 10px; background: #fff; color: var(--ink);
    transition: border-color .15s, box-shadow .15s;
  }
  .tour-form-field input:focus,
  .tour-form-field select:focus,
  .tour-form-field textarea:focus {
    outline: none; border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(60,100,180,.15);
  }
  .tour-form-field textarea { resize: vertical; min-height: 80px; }
  .tour-form button[type="submit"] {
    width: 100%; padding: 16px;
    background: var(--blue-darker); color: #fff;
    border: none; border-radius: 10px;
    font-family: inherit; font-size: 17px; font-weight: 600;
    cursor: pointer; margin-top: 8px;
    transition: background .15s, transform .15s;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  }
  .tour-form button[type="submit"]:hover {
    background: var(--blue-deep); transform: translateY(-1px);
  }
  .tour-form button[type="submit"] svg { width: 18px; height: 18px; }
  .tour-form-note {
    font-size: 13px; color: var(--slate);
    text-align: center; margin-top: 14px;
  }
  .tour-form-note a { color: var(--blue-deep); text-decoration: underline; }
  .tour-form-success {
    background: var(--green-soft); border: 1.5px solid var(--green);
    color: var(--green-deep); padding: 24px; border-radius: 10px;
    text-align: center; font-weight: 500;
  }
  .tour-form-success strong { display: block; font-size: 18px; margin-bottom: 6px; }
  @media (max-width: 520px) {
    .tour-form { padding: 28px 22px; }
    .tour-form-row { grid-template-columns: 1fr; }
  }

  footer {
    background: var(--blue-darker); color: rgba(251,250,245,.78); padding: 80px 40px 32px;
  }
  .footer-inner {
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
    gap: 48px; padding-bottom: 56px;
    border-bottom: 1px solid rgba(251,250,245,.1);
  }
  .footer-brand { max-width: 340px; }
  .footer-brand .logo { display: inline-block; margin-bottom: 20px; }
  .footer-brand .logo img { height: 56px; width: auto; }
  .footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(251,250,245,.85); }
  .footer-col h3 {
    font-family: 'Lora', serif; color: var(--cream);
    font-weight: 500; font-size: 16px; margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    color: rgba(251,250,245,.72); text-decoration: none;
    font-size: 14.5px; transition: color .2s;
  }
  .footer-col a:hover { color: var(--yellow); }
  .footer-social { margin-top: 14px; display: flex; gap: 10px; }
  .footer-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(251,250,245,.08);
    color: rgba(251,250,245,.85);
    transition: background .2s, color .2s, transform .2s;
  }
  .footer-social a:hover {
    background: var(--yellow);
    color: var(--blue-darker);
    transform: translateY(-1px);
  }
  .footer-social svg { width: 16px; height: 16px; }
  .footer-bottom {
    max-width: 1320px; margin: 0 auto; padding-top: 28px;
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 16px;
    font-size: 13px; color: rgba(251,250,245,.78);
  }
  .footer-ack {
    max-width: 820px; margin: 0 auto 32px;
    font-size: 13px; font-style: italic; color: rgba(251,250,245,.6);
    line-height: 1.65; border-left: 2px solid rgba(242,177,52,.5);
    padding: 8px 0 8px 20px;
  }
  @media (max-width: 900px) {
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-brand { grid-column: span 2; }
  }
  @media (max-width: 560px) {
    .footer-inner { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .fade-up { opacity: 0; animation: fadeUp .8s ease forwards; }
  .fade-up.d1 { animation-delay: .1s; }
  .fade-up.d2 { animation-delay: .25s; }
  .fade-up.d3 { animation-delay: .4s; }
  .fade-up.d4 { animation-delay: .55s; }
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  .proto-note {
    position: fixed; bottom: 20px; right: 20px; z-index: 100;
    background: var(--ink); color: var(--cream);
    padding: 10px 16px; font-size: 12px; border-radius: 999px;
    box-shadow: var(--shadow-md); opacity: 0.88;
  }

  @media (max-width: 600px) {
    section { padding: 72px 20px; }
    .trust { padding: 28px 20px; }
    .serving { padding: 64px 20px; }
    .cta-band { padding: 80px 20px; }
    footer { padding: 64px 20px 28px; }
    .gallery { padding: 72px 0; }
    .gallery .container { padding: 0 20px; }
    .announce { padding: 14px 16px; font-size: 15.5px; line-height: 1.5; }
    .announce a { display: inline-block; margin-top: 6px; margin-left: 0; padding: 7px 14px; }
    .hero-content { padding: 0 20px 56px; }
    .hero-sub { font-size: 15.5px; }
    .section-intro { font-size: 16px; }
    .welcome-text p.lead { font-size: 19px; }
    .welcome-text p { font-size: 16.5px; }
    .approach-card { padding: 28px 22px; }
    .approach-card h3, .reason-card h3 { font-size: 21px; }
    .philo-teaser { padding: 36px 22px; }
    .fees-note { padding: 22px 22px; }
    .fees-note::before {
      position: static; display: inline-block;
      margin-bottom: 10px; font-size: 10px; padding: 3px 9px;
    }
    .fees-note-title { padding-right: 0; font-size: 20px; }
    .fee-card { padding: 22px 22px; }
    .testimonial { padding: 30px 26px; }
    .testimonial-text { font-size: 16.5px; }
    .cta-band h2 { font-size: clamp(28px, 7.5vw, 40px); }
    .cta-band p { font-size: 16px; }
    .footer-ack { padding: 6px 0 6px 16px; }
  }

/* New tour-form additions: day pill checkboxes, optional tag, group label */
.optional-tag{color:var(--slate);font-weight:400;font-size:12px;margin-left:4px}
.tour-form-field .form-label-text{display:block;font-size:13px;font-weight:600;color:var(--slate);margin-bottom:8px;letter-spacing:.01em}
.tour-form-field select{font-family:inherit;font-size:16px;padding:11px 14px;border:1.5px solid var(--border);border-radius:10px;background:#fff;color:var(--ink);transition:border-color .15s,box-shadow .15s;-webkit-appearance:none;appearance:none;background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path fill='none' stroke='%235a5a55' stroke-width='1.5' d='M2 4l4 4 4-4'/></svg>");background-repeat:no-repeat;background-position:right 14px center;background-size:12px;padding-right:38px}
.tour-form-field select:focus{outline:none;border-color:var(--blue);box-shadow:0 0 0 3px rgba(60,100,180,.15)}
.day-pill-group{display:flex;flex-wrap:wrap;gap:8px}
.day-pill{display:inline-flex;align-items:center;gap:8px;padding:9px 14px;background:#fff;border:1.5px solid var(--border);border-radius:999px;cursor:pointer;font-size:14px;font-weight:500;color:var(--ink);user-select:none;transition:all .15s ease}
.day-pill:hover{border-color:var(--blue);color:var(--blue-darker)}
.day-pill input[type="checkbox"]{appearance:none;-webkit-appearance:none;width:16px;height:16px;border:1.5px solid var(--border);border-radius:4px;cursor:pointer;position:relative;background:#fff;transition:all .12s ease;flex-shrink:0;margin:0}
.day-pill input[type="checkbox"]:checked{background:var(--blue-deep);border-color:var(--blue-deep)}
.day-pill input[type="checkbox"]:checked::after{content:'';position:absolute;top:1px;left:4px;width:5px;height:9px;border:solid #fff;border-width:0 2px 2px 0;transform:rotate(45deg)}
.day-pill:has(input:checked){background:var(--blue-soft);border-color:var(--blue-deep);color:var(--blue-darker)}
.day-pill:has(input:focus-visible){outline:2px solid var(--blue);outline-offset:2px}
