:root {
    --teal: #2E6E6A;
    --teal-dark: #1d4e4b;
    --teal-light: #3d8a86;
    --sand: #C9B99A;
    --sand-light: #E8DDD0;
    --cream: #F7F3EE;
    --bg: #FFFFFF;
    --surface: #F7F3EE;
    --text: #1a1a1a;
    --text-muted: #6b6b6b;
    --text-light: #9a9a9a;
    --border: #e0d8ce;
    --card-bg: #FFFFFF;
    --nav-bg: rgba(255,255,255,0.95);
    --section-alt: #F7F3EE;
    --teal-section-bg: #2E6E6A;
    --teal-section-text: #ffffff;
    --footer-bg: #1a2e2d;
    --footer-text: #c9d4d3;
    --input-bg: #ffffff;
    --input-border: #d0c8be;
    --shadow: 0 4px 24px rgba(0,0,0,0.07);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
  }
  [data-theme="dark"] {
    --bg: #111918;
    --surface: #1a2726;
    --text: #f0ede8;
    --text-muted: #a0aaa9;
    --text-light: #6a7a79;
    --border: #2a3a38;
    --card-bg: #1e2e2c;
    --nav-bg: rgba(17,25,24,0.96);
    --section-alt: #162220;
    --teal-section-bg: #1d4e4b;
    --teal-section-text: #e8f5f4;
    --footer-bg: #0d1a19;
    --footer-text: #7a9a98;
    --input-bg: #1e2e2c;
    --input-border: #2a3a38;
    --shadow: 0 4px 24px rgba(0,0,0,0.3);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.4);
    --cream: #162220;
    --sand-light: #2a3a38;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-weight: 300;
    transition: background 0.3s, color 0.3s;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
    transition: background 0.3s, border-color 0.3s;
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: 0.02em;
    text-decoration: none;
    line-height: 1.2;
  }
  .nav-logo span { display: block; font-size: 0.7rem; font-family: 'DM Sans', sans-serif; font-weight: 400; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; color: var(--text-muted); transition: color 0.2s; font-weight: 400; }
  .nav-links a:hover { color: var(--teal); }
  .nav-right { display: flex; align-items: center; gap: 1rem; }

  .btn-primary {
    background: var(--teal);
    color: #fff;
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.4rem;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }

  .btn-outline {
    background: transparent;
    color: var(--teal);
    border: 1.5px solid var(--teal);
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.4rem;
    transition: all 0.2s;
  }
  .btn-outline:hover { background: var(--teal); color: #fff; }

  .btn-sand {
    background: var(--sand);
    color: #fff;
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex; align-items: center;
    transition: all 0.2s;
  }
  .btn-sand:hover { background: #b8a68a; transform: translateY(-1px); }

  /* Theme toggle */
  .theme-toggle {
    background: none; border: 1.5px solid var(--border);
    border-radius: 20px; padding: 0.3rem 0.7rem;
    cursor: pointer; color: var(--text-muted);
    font-size: 0.8rem; display: flex; align-items: center; gap: 0.4rem;
    transition: all 0.2s;
  }
  .theme-toggle:hover { border-color: var(--teal); color: var(--teal); }

  /* Hamburger */
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all 0.3s; }

  /* ─── HERO ─── */
  #hero {
    min-height: 100vh;
    padding-top: 68px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }
  .hero-image-side {
    background: var(--sand-light);
    position: relative;
    overflow: hidden;
    min-height: 520px;
  }
  .hero-image-side img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .hero-image-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--sand) 100%);
    display: flex; align-items: flex-end; justify-content: center;
    padding-bottom: 3rem;
  }
  .hero-content {
    background: var(--bg);
    display: flex; align-items: center;
    padding: 5% 8% 5% 6%;
    transition: background 0.3s;
  }
  .hero-inner { max-width: 480px; }
  .hero-eyebrow {
    font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--sand); font-weight: 500; margin-bottom: 1.2rem;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 1.2rem;
  }
  .hero-title em { font-style: italic; color: var(--teal); }
  .hero-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2.2rem;
    max-width: 380px;
    line-height: 1.8;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

  /* ─── PROMO BANNER ─── */
  .promo-banner {
    background: var(--sand);
    color: #fff;
    text-align: center;
    padding: 0.65rem 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
  }
  .promo-banner a { color: #fff; font-weight: 500; margin-left: 0.4rem; text-decoration: underline; }

  /* ─── MEET SECTION ─── */
 #meet {
  background: var(--bg);
  padding: 7rem 5%;
  display: grid;

  grid-template-columns: 1fr minmax(300px, 450px); 
  gap: 4rem; 
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
  .meet-text-card {
    background: var(--teal);
    color: #fff;
    padding: 2.5rem 2.8rem;
    border-radius: 2px;
    position: relative;
  }
  .meet-text-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 400;
    margin-bottom: 0.3rem;
    letter-spacing: 0.01em;
  }
  .meet-text-card .subtitle {
    font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.7); margin-bottom: 1.4rem;
  }
  .meet-text-card p { font-size: 0.9rem; line-height: 1.85; color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
  .btn-white {
    background: #fff; color: var(--teal);
    border: none; padding: 0.65rem 1.6rem;
    border-radius: 4px; font-size: 0.82rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500; cursor: pointer;
    text-decoration: none; display: inline-block;
    transition: all 0.2s;
  }
  .btn-white:hover { background: var(--cream); transform: translateY(-1px); }
  .meet-image {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--sand-light);
  }
  .meet-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

  /* ─── FOCUS SECTION ─── */
  #focus {
    background: var(--surface);
    padding: 6rem 5%;
    transition: background 0.3s;
  }
  .section-header { text-align: center; margin-bottom: 3.5rem; }
  .section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.6rem;
  }
  .section-header p { color: var(--text-muted); font-size: 0.92rem; max-width: 480px; margin: 0 auto; }
  .focus-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
  }
  .focus-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem 1.2rem;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s, background 0.3s;
  }
  .focus-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
  .focus-icon { font-size: 1.8rem; margin-bottom: 1rem; }
  .focus-card h3 { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em; color: var(--text); line-height: 1.4; }
  .focus-center { text-align: center; }

  /* ─── CTA SECTION ─── */
  #cta-mid {
    background: var(--teal-section-bg);
    color: var(--teal-section-text);
    padding: 7rem 5%;
    text-align: center;
  }
  #cta-mid h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.35;
    max-width: 620px;
    margin: 0 auto 2rem;
  }

  /* ─── TESTIMONIALS ─── */
  #testimonials {
    background: var(--bg);
    padding: 6rem 5%;
    transition: background 0.3s;
  }
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
  }
  .testimonial-card {
    padding: 2rem;
    border-left: 3px solid var(--sand);
    background: var(--surface);
    border-radius: 0 4px 4px 0;
    transition: background 0.3s;
  }
  .testimonial-card .quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--sand);
    line-height: 0.5;
    margin-bottom: 1rem;
    display: block;
  }
  .testimonial-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; font-style: italic; }
  .testimonial-card .author { font-size: 0.8rem; font-weight: 500; color: var(--teal); letter-spacing: 0.06em; }

  /* ─── PROGRAMS ─── */
  #programs {
    background: var(--surface);
    padding: 6rem 5%;
    transition: background 0.3s;
  }
  .programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 2.5rem auto 0;
  }
  .program-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s, background 0.3s;
  }
  .program-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
  .program-card-image {
    height: 200px;
    background: var(--sand-light);
    overflow: hidden;
  }
  .program-card-image img { width: 100%; height: 100%; object-fit: cover; }
  .program-card-body { padding: 1.6rem 1.6rem 1.4rem; }
  .program-tag { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sand); font-weight: 500; margin-bottom: 0.6rem; display: block; }
  .program-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 500;
    color: var(--text); margin-bottom: 0.5rem;
  }
  .program-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
  .program-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
  .program-price { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 500; color: var(--teal); }
  .program-duration { font-size: 0.78rem; color: var(--text-light); }

  /* ─── COMMUNITY ─── */
  #community {
    background: var(--bg);
    padding: 6rem 5%;
    transition: background 0.3s;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1100px;
    margin: 2.5rem auto 0;
  }
  .gallery-item {
    aspect-ratio: 1;
    background: var(--sand-light);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
  }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
  .gallery-item:hover img { transform: scale(1.05); }
  .gallery-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-light); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
  }

  /* ─── BOOKING MODAL ─── */
  .modal-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 999;
    align-items: center; justify-content: center;
    backdrop-filter: blur(4px);
  }
  .modal-overlay.open { display: flex; }
  .modal {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 2.8rem;
    max-width: 520px;
    width: 90%;
    position: relative;
    box-shadow: 0 24px 64px rgba(0,0,0,0.2);
    animation: modalIn 0.25s ease;
  }
  @keyframes modalIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
  .modal-close {
    position: absolute; top: 1.2rem; right: 1.2rem;
    background: none; border: none; cursor: pointer;
    color: var(--text-muted); font-size: 1.4rem; line-height: 1;
  }
  .modal h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 400;
    margin-bottom: 0.3rem; color: var(--text);
  }
  .modal .modal-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.8rem; }
  .form-group { margin-bottom: 1.2rem; }
  .form-group label { display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem; font-weight: 500; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 4px;
    padding: 0.7rem 0.9rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    transition: border-color 0.2s;
    outline: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); }
  .form-group textarea { resize: vertical; min-height: 80px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-success { display: none; text-align: center; padding: 2rem 0; }
  .form-success .check { font-size: 3rem; margin-bottom: 1rem; }
  .form-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; color: var(--teal); margin-bottom: 0.5rem; }
  .form-success p { font-size: 0.88rem; color: var(--text-muted); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 4rem 5% 2rem;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .footer-brand .nav-logo { color: #c9d4d3; display: inline-block; margin-bottom: 1rem; }
  .footer-brand p { font-size: 0.85rem; line-height: 1.8; max-width: 260px; opacity: 0.7; }
  .footer-brand .contact-info { margin-top: 1.2rem; font-size: 0.82rem; opacity: 0.6; }
  .footer-brand .contact-info div { margin-bottom: 0.3rem; }
  .footer-col h4 { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.2rem; font-weight: 500; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.6rem; }
  .footer-col ul li a { font-size: 0.85rem; color: var(--footer-text); text-decoration: none; opacity: 0.75; transition: opacity 0.2s; }
  .footer-col ul li a:hover { opacity: 1; color: #fff; }
  .footer-newsletter input {
    width: 100%; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px; padding: 0.7rem 0.9rem;
    color: #fff; font-size: 0.85rem;
    font-family: 'DM Sans', sans-serif;
    outline: none; margin-bottom: 0.8rem;
  }
  .footer-newsletter input::placeholder { color: rgba(255,255,255,0.3); }
  .footer-newsletter input:focus { border-color: var(--teal-light); }
  .footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: 0.78rem; opacity: 0.4; flex-wrap: wrap; gap: 0.8rem; }
  .social-links { display: flex; gap: 1rem; margin-top: 1.2rem; }
  .social-links a {
    width: 34px; height: 34px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); text-decoration: none;
    font-size: 0.78rem; transition: all 0.2s;
  }
  .social-links a:hover { border-color: var(--teal-light); color: #fff; background: var(--teal); }

  /* ─── ANIMATIONS ─── */
  .fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .fade-in.visible { opacity: 1; transform: translateY(0); }
  .fade-in-delay-1 { transition-delay: 0.1s; }
  .fade-in-delay-2 { transition-delay: 0.2s; }
  .fade-in-delay-3 { transition-delay: 0.3s; }
  .fade-in-delay-4 { transition-delay: 0.4s; }

  /* ─── DIVIDER ─── */
  .divider { width: 48px; height: 2px; background: var(--sand); margin: 1rem 0 1.5rem; }
  .divider-center { margin: 1rem auto 1.5rem; }

 /* ─── MOBILE ─── */
@media (max-width: 900px) {
  /* Nav: logo + [theme toggle + hamburger] only */
  nav { padding: 0 4%; height: 60px; }
  .nav-logo { font-size: 1.1rem; }
  .nav-logo span { display: none; }
  .nav-right { gap: 0.6rem; }
  .nav-right .btn-primary { display: none; }
  .theme-toggle { padding: 0.28rem 0.6rem; font-size: 0.75rem; }
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    padding: 1.4rem 5% 1.8rem;
    border-bottom: 1px solid var(--border);
    gap: 0;
  }
  .nav-links.open li { border-bottom: 1px solid var(--border); }
  .nav-links.open li:last-child { border-bottom: none; }
  .nav-links.open a { display: block; padding: 0.9rem 0; font-size: 0.88rem; }

  /* Layout */
  #hero { grid-template-columns: 1fr; }
  .hero-image-side { min-height: 320px; order: -1; }
  .hero-content { padding: 2.8rem 6%; }
  #meet { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 5%; }
  .focus-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  nav { padding: 0 5%; }
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 100%; }
}
body {
  transition: opacity 0.3s ease;
}