:root {
    --green: #2E9E4B;
    --green-light: #E8F8ED;
    --yellow: #F5C800;
    --yellow-light: #FFFAE0;
    --orange: #F5720A;
    --orange-light: #FEF0E3;
    --red: #E0281A;
    --blue: #1A6FC4;
    --blue-light: #E3EEFF;
    --white: #FFFFFF;
    --off-white: #FFFDF7;
    --text-dark: #1A1A1A;
    --text-mid: #444444;
    --text-muted: #777777;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --font-display: 'Fredoka One', cursive;
    --font-body: 'Nunito', sans-serif;
    --shadow: 0 4px 20px rgba(0,0,0,0.10);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.13);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--off-white);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }


  /* ── HAND-DRAWN SVG ICONS ── */
  .icon-svg {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
  }
  .what-icon .icon-svg,
  .class-emoji .icon-svg,
  .teacher-avatar .icon-svg,
  .contact-icon .icon-svg {
    display: block;
  }

  /* ── SQUIGGLE DIVIDERS ── */
  .squiggle {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    display: block;
  }
  .squiggle svg { display: block; width: 100%; }

  /* ── NAV ── */
  .nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--blue);
    box-shadow: 0 2px 16px rgba(26,111,196,0.25);
    padding: 0 1.5rem;
  }
  .nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .nav-logo img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
  }
  .nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    line-height: 1;
  }
  .nav-logo-text span { color: var(--yellow); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
  }
  .nav-links a {
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: background 0.18s, color 0.18s;
    color: rgba(255,255,255,0.88);
  }
  .nav-links a:hover { background: rgba(255,255,255,0.15); color: var(--white); }

  .nav-cta {
    background: var(--orange) !important;
    color: var(--white) !important;
    border-radius: var(--radius-sm) !important;
    padding: 0.5rem 1.1rem !important;
    font-weight: 800 !important;
    transition: background 0.18s !important;
  }
  .nav-cta:hover { background: var(--red) !important; }

  /* hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
  }
  .hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    border-radius: 2px;
    background: var(--white);
    transition: transform 0.3s, opacity 0.3s;
  }
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 200;
    padding: 2rem;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu-close {
    align-self: flex-end;
    font-size: 2rem;
    cursor: pointer;
    border: none;
    background: none;
    color: var(--text-dark);
    line-height: 1;
    padding: 0.25rem;
  }
  .mobile-menu a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-dark);
    padding: 0.25rem 0;
  }
  .mobile-menu a:hover { color: var(--green); }
  .mobile-menu .nav-cta {
    background: var(--orange) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: var(--radius-sm) !important;
    font-size: 1.6rem !important;
  }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(145deg, #E3EEFF 0%, #C8DEFF 40%, #E8F2FF 100%);
    padding: 4rem 1.5rem 2rem;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 1.4rem;
    opacity: 0.18;
    pointer-events: none;
    letter-spacing: 1.5rem;
  }
  .hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
  }
  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: var(--white);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .hero-tag::before { content: ''; }
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
  }
  .hero h1 em { font-style: normal; color: var(--blue); }
  .hero h1 strong { font-style: normal; color: var(--orange); font-family: var(--font-display); }
  .hero-sub {
    font-size: 1.15rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 2rem;
    font-weight: 600;
  }
  .hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1rem;
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius-md);
    transition: transform 0.15s, box-shadow 0.15s;
    cursor: pointer;
    border: none;
  }
  .btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .btn-primary {
    background: var(--green);
    color: var(--white);
  }
  .btn-outline {
    background: var(--white);
    color: var(--blue);
    border: 2.5px solid var(--blue);
  }
  .hero-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero-logo-bubble {
    width: min(380px, 90vw);
    height: min(380px, 90vw);
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 12px 48px rgba(26,111,196,0.18), 0 4px 16px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 4s ease-in-out infinite;
  }
  .hero-logo-bubble img {
    width: 88%;
    height: 88%;
    object-fit: contain;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
  }

  /* ── STATS STRIP ── */
  .stats {
    background: var(--green);
    padding: 1.5rem;
    color: var(--white);
  }
  .stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .stat {
    text-align: center;
    padding: 0.5rem 1rem;
  }
  .stat-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    line-height: 1;
  }
  .stat-label {
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0.85;
    margin-top: 0.2rem;
  }

  /* ── SECTIONS ── */
  section { padding: 5rem 1.5rem; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  .section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 0.75rem;
  }
  .section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    font-weight: 600;
    line-height: 1.6;
  }
  .chip {
    display: inline-block;
    background: var(--yellow);
    color: #7a5000;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
  }

  /* ── WHAT WE DO ── */
  .what-bg { background: var(--white); }
  .what-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }
  .what-card {
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .what-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .what-card.green { background: var(--green-light); }
  .what-card.yellow { background: var(--yellow-light); }
  .what-card.orange { background: var(--orange-light); }
  .what-card.blue { background: var(--blue-light); }
  .what-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
  }
  .what-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
  }
  .what-card.green h3 { color: var(--green); }
  .what-card.yellow h3 { color: #7a5000; }
  .what-card.orange h3 { color: var(--orange); }
  .what-card.blue h3 { color: var(--blue); }
  .what-card p { color: var(--text-mid); font-size: 0.97rem; line-height: 1.6; font-weight: 600; }

  /* ── CLASSES ── */
  .classes-bg { background: var(--green-light); }
  .classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  .class-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
  }
  .class-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .class-header {
    padding: 1.75rem 1.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .class-emoji {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
  }
  .class-card:nth-child(1) .class-emoji { background: var(--green-light); }
  .class-card:nth-child(2) .class-emoji { background: var(--yellow-light); }
  .class-card:nth-child(3) .class-emoji { background: var(--orange-light); }
  .class-card:nth-child(4) .class-emoji { background: var(--blue-light); }
  .class-card h3 { font-family: var(--font-display); font-size: 1.35rem; }
  .class-ages {
    font-size: 0.83rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
  }
  .class-body {
    padding: 0 1.75rem 1.5rem;
    flex: 1;
  }
  .class-body p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.65; font-weight: 600; }
  .class-footer {
    padding: 1rem 1.75rem;
    border-top: 2px solid var(--green-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .class-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--green);
  }
  .class-price small { font-family: var(--font-body); font-size: 0.78rem; color: var(--text-muted); font-weight: 700; }
  .btn-sm {
    font-size: 0.88rem;
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-sm);
  }

  /* ── HOW IT WORKS ── */
  .how-bg { background: var(--yellow-light); }
  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    position: relative;
  }
  .step {
    text-align: center;
    padding: 0.5rem;
  }
  .step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--yellow);
    color: #7a5000;
    font-family: var(--font-display);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 12px rgba(245,200,0,0.35);
  }
  .step h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
  }
  .step p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.6; font-weight: 600; }

  /* ── TESTIMONIALS ── */
  .testimonials-bg { background: var(--white); }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .testimonial {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border-left: 5px solid var(--green);
    position: relative;
  }
  .testimonial:nth-child(2) { border-left-color: var(--orange); }
  .testimonial:nth-child(3) { border-left-color: var(--blue); }
  .testimonial:nth-child(4) { border-left-color: var(--yellow); }
  .stars {
    color: var(--yellow);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  .testimonial blockquote {
    font-size: 0.98rem;
    color: var(--text-mid);
    line-height: 1.7;
    font-weight: 600;
    margin-bottom: 1rem;
    font-style: italic;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: var(--white);
    flex-shrink: 0;
  }
  .av-g { background: var(--green); }
  .av-o { background: var(--orange); }
  .av-b { background: var(--blue); }
  .av-y { background: #c49500; }
  .author-name { font-weight: 800; font-size: 0.9rem; }
  .author-meta { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; }

  /* ── TEACHERS ── */
  .teachers-bg { background: var(--orange-light); }
  .teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }
  .teacher-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
  }
  .teacher-card:hover { transform: translateY(-4px); }
  .teacher-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 4px solid var(--green-light);
  }
  .teacher-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.3rem; }
  .teacher-role {
    font-size: 0.83rem;
    font-weight: 800;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
  }
  .teacher-card p { font-size: 0.93rem; color: var(--text-mid); line-height: 1.6; font-weight: 600; }
  .teacher-badge {
    display: inline-block;
    background: var(--green-light);
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    margin-top: 0.75rem;
  }

  /* ── BOOKING CTA ── */
  .booking-cta {
    background: var(--green);
    padding: 5rem 1.5rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .booking-cta::before {
    content: '';
    position: absolute;
    font-size: 12rem;
    opacity: 0.06;
    top: -2rem;
    right: -2rem;
    pointer-events: none;
  }
  .booking-cta::after {
    content: '';
    position: absolute;
    font-size: 10rem;
    opacity: 0.06;
    bottom: -2rem;
    left: -2rem;
    pointer-events: none;
  }
  .booking-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
  }
  .booking-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-weight: 600;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .booking-cta .btn-primary {
    background: var(--white);
    color: var(--green);
    font-size: 1.1rem;
    padding: 0.95rem 2.5rem;
  }
  .booking-cta .btn-primary:hover { background: var(--yellow); color: #7a5000; }

  /* ── FAQ ── */
  .faq-bg { background: var(--blue-light); }
  .faq-list { max-width: 720px; margin: 0 auto; }
  .faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 0.85rem;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .faq-q {
    padding: 1.25rem 1.5rem;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--text-dark);
    user-select: none;
  }
  .faq-q::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--green);
    flex-shrink: 0;
    transition: transform 0.3s;
  }
  .faq-item.open .faq-q::after { transform: rotate(45deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
    padding: 0 1.5rem;
    color: var(--text-mid);
    font-size: 0.96rem;
    line-height: 1.7;
    font-weight: 600;
  }
  .faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.25rem; }

  /* ── CONTACT ── */
  .contact-bg { background: var(--white); }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
  .contact-info h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--green);
  }
  .contact-info p {
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 600;
  }
  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  .contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .contact-detail-text strong {
    display: block;
    font-weight: 800;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
  }
  .contact-detail-text span { font-weight: 600; color: var(--text-dark); }
  .contact-form {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
  }
  .form-group { margin-bottom: 1.2rem; }
  .form-group label {
    display: block;
    font-weight: 800;
    font-size: 0.88rem;
    color: var(--text-mid);
    margin-bottom: 0.4rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.2s;
    outline: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--green); }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-submit {
    width: 100%;
    padding: 0.9rem;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }
  .form-submit:hover { background: #237a3a; transform: translateY(-1px); }

  /* ── SOCIAL STRIP ── */
  .social-strip {
    background: var(--orange);
    padding: 2rem 1.5rem;
    text-align: center;
    color: var(--white);
  }
  .social-strip p {
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .social-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.18);
    color: var(--white);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 0.55rem 1.2rem;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
  }
  .social-icon:hover { background: rgba(255,255,255,0.3); }
  .social-icon .ico { font-size: 1.2rem; }

  /* ── FOOTER ── */
  footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.85);
    padding: 3rem 1.5rem 1.5rem;
  }
  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1.5rem;
  }
  .footer-brand img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-bottom: 1rem;
  }
  .footer-brand p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
  }
  .footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.75rem;
  }
  .footer-col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 1rem;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 0.5rem; }
  .footer-col a {
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--yellow); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
  }
  .footer-bottom a { color: rgba(255,255,255,0.5); }
  .footer-bottom a:hover { color: var(--yellow); }

  /* ── PAGE SECTIONS (sub-pages rendered inline) ── */
  .page-section { display: none; }
  .page-section.active { display: block; }

  /* ── BOOKING IFRAME SECTION ── */
  .booking-wrap {
    max-width: 900px;
    margin: 0 auto;
  }
  .booking-iframe-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--green-light);
  }
  .booking-iframe-container iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
  }
  .booking-notice {
    background: var(--yellow-light);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #7a5000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 720px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-image-wrap { order: -1; }
    .hero-logo-bubble { width: 240px; height: 240px; }
    .hero-btns { justify-content: center; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
  }
  @media (max-width: 600px) {
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .stats-inner { justify-content: center; }
    section { padding: 3.5rem 1.25rem; }
  }

  /* ── SCROLL ANIMATION ── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }

  /* ── PAGE TRANSITION ── */
  #main-content { transition: opacity 0.2s; }
  #main-content.fading { opacity: 0; }