
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cream:    #f4f7f5;   /* soft spa white */
  --warm:     #e6efe9;   /* light sage bg */
  --dark:     #1f2a26;   /* deep green-black */
  --deep:     #2f3e38;   /* forest tone */
  
  --gold:     rgba(199, 120, 160, 1);   /* main spa accent (sage-teal) */
  --gold-lt:  #a8cfc5;   /* lighter calm tone */
  --gold-pale:#eaf5f2;   /* soft highlight */
  
  --purple:   #8c9c97;   /* muted stone */
  --pink:     #c7a9a0;   /* soft clay tone */

  --text:     #33413c;   /* readable calm text */
  --muted:    #1f2a26;   /* soft gray-green */
  --border:   rgba(122,168,158,0.25);
}

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ─── NOISE TEXTURE OVERLAY ─── */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
      opacity: 0.025;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 128px;
    }

    /* ─── NAVIGATION ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%;
      height: 90px;
      background: transparent;
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      transition: all 0.3s;
    }
   nav.scrolled {
  background: rgba(244, 247, 245, 0.9); /* spa color */
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
   nav.scrolled .nav-links a{
       color: #000;
   }
    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .nav-logo svg { width: 36px; height: 36px; }
    .nav-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 700; color: var(--gold); letter-spacing: 0.5px; }
    .nav-links { display: flex; gap: 2.2rem; list-style: none; }
    .nav-links a { font-size: 13px; font-weight: 500; color: #fff; text-decoration: none; letter-spacing: 0.8px; text-transform: uppercase; transition: color 0.2s; }
    .nav-links a:hover { color: #000 }
    .nav-book {
      padding: 9px 24px; border-radius: 999px;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
      color: var(--dark); font-size: 13px; font-weight: 500; text-decoration: none;
      letter-spacing: 0.5px; transition: opacity 0.2s, transform 0.15s; white-space: nowrap;
    }
    .nav-book:hover { opacity: 0.88; transform: translateY(-1px); }

    /* mobile nav toggle */
    .nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
    .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--deep); border-radius: 2px; transition: all 0.3s; }

    /* ─── HERO ─── */


.hero-slider {
    position: relative;
  
  overflow: hidden;
  
  width: 100%;
  height: 100vh;
  
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 760px;
  padding: 0 20px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.15;

  color: #ffffff;
  letter-spacing: 0.5px;

  margin-bottom: 1.2rem;

  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.hero-title em {
  color: #fff;
  font-style: normal;
  font-weight:700;
}
.hero-actions {
  margin-top: 1.5rem;
}
.btn-primary {
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.swiper-slide::before {
  content: '';
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(48, 30, 60, 0.45),   /* deep muted purple */
      rgba(30, 40, 45, 0.35)    /* soft dark teal fade */
    ),
    radial-gradient(
      circle at 30% 40%,
      rgba(199, 120, 160, 0.25), /* soft pink glow */
      transparent 70%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(140, 110, 180, 0.25), /* lavender glow */
      transparent 70%
    );
}

.swiper-slide .hero-inner {
  position: relative;
  z-index: 2;
  color: #fff;
}

.slide .hero-inner {
  position: relative;
  z-index: 2;
  color: white;
}
    #hero {
      min-height: 100vh;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
      padding: 120px 5% 80px;
      background: radial-gradient(ellipse 90% 70% at 50% 60%, #ede0c4 0%, var(--cream) 70%);
    }

    /* floating petals */
    .petal {
      position: absolute; pointer-events: none;
      animation: floatPetal linear infinite;
      opacity: 0;
    }
    @keyframes floatPetal {
      0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
      10%  { opacity: 0.18; }
      90%  { opacity: 0.12; }
      100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
    }

    .hero-inner { text-align: center; max-width: 720px; position: relative; z-index: 1; }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 1.5rem;
    }
    .hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 32px; height: 1px; background: var(--gold); opacity: 0.5; }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 8vw, 5.5rem);
      font-weight: 300;
      line-height: 1.08;
     
     
      margin-bottom: 1.5rem;
      letter-spacing: -1px;
    }
    .hero-title em { font-style: italic; color: var(--gold); }

   .hero-sub {
  font-size: 15px; 
  font-weight: 300; 
  color: #fff;
  line-height: 1.8; 
  max-width: 480px; 
  margin: 0 auto 2.5rem;
  letter-spacing: 0.2px;
}
    .hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .btn-primary {
      padding: 14px 36px; border-radius: 999px; border: none;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
      color: var(--dark); font-size: 14px; font-weight: 500; cursor: pointer;
      font-family: 'DM Sans', sans-serif; letter-spacing: 0.4px;
      text-decoration: none; display: inline-block;
      box-shadow: 0 8px 24px rgba(201,151,58,0.35);
      transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,151,58,0.45); }
    .btn-ghost {
      padding: 14px 36px; border-radius: 999px;
      border: 1.5px solid var(--gold); background: transparent;
      color: var(--gold); font-size: 14px; font-weight: 500; cursor: pointer;
      font-family: 'DM Sans', sans-serif; letter-spacing: 0.4px;
      text-decoration: none; display: inline-block;
      transition: background 0.2s, color 0.2s, transform 0.2s;
    }
    .btn-ghost:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }

    .hero-stats {
      display: flex; gap: 3rem; justify-content: center;
      margin-top: 4rem; padding-top: 2.5rem;
      border-top: 1px solid var(--border);
    }
    .stat-item { text-align: center; }
    .stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 600; color: var(--deep); line-height: 1; }
    .stat-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

    /* lotus decoration */
    .hero-lotus {
      position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%);
      width: 420px; height: 420px; opacity: 0.06; pointer-events: none;
    }

    /* ─── SECTION COMMONS ─── */
    section { position: relative; z-index: 1; }
    .section-pad { padding: 100px 5%; }
    .section-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 1rem;
    }
    .section-eyebrow::before, .section-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--gold); opacity: 0.5; }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 600; line-height: 1.15; color: var(--deep);
      margin-bottom: 1rem;
    }
    .section-title em { font-style: italic; color: var(--gold); }
    .section-desc { font-size: 14.5px; color: var(--muted); line-height: 1.8; max-width: 520px; }

    /* ─── SERVICES - UPDATED TO MATCH PRODUCT CARDS ─── */
    #services {
      background: #f9f9f9;
      overflow: hidden;
    }

    .services-header { 
      max-width: 100%; 
      margin-bottom: 3rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    .services-header-left { max-width: 540px; }
    .services-header-right a {
      font-size: 13px;
      font-weight: 500;
      color: var(--text);
      text-decoration: none;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color 0.2s;
    }
    .services-header-right a:hover { color: var(--gold); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 2rem;
    }
    .service-card {
      position: relative;
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
      box-shadow: 0 2px 12px rgba(26,21,16,0.06);
      display: flex;
      flex-direction: column;
    }
    .service-card:hover { 
      transform: translateY(-4px); 
      box-shadow: 0 8px 32px rgba(26,21,16,0.12);
    }

    .service-image-wrapper {
      position: relative;
      width: 100%;
      height: 240px;
      overflow: hidden;
      background: var(--warm);
    }
    .service-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
    }
    .service-card:hover .service-image-wrapper img {
      transform: scale(1.05);
    }

    .service-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      padding: 6px 14px;
      border-radius: 6px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--dark);
      box-shadow: 0 2px 8px rgba(201,151,58,0.3);
    }

    .service-last-stock {
      position: absolute;
      top: 12px;
      right: 12px;
      padding: 6px 14px;
      border-radius: 6px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      background: var(--deep);
      color: #fff;
      box-shadow: 0 2px 8px rgba(26,21,16,0.3);
    }

    .service-content {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .service-brand {
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }

    .service-name {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.05rem;
      font-weight: 500;
      color: var(--deep);
      margin-bottom: 0.75rem;
      line-height: 1.4;
      min-height: 2.8em;
    }

    .service-rating {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 0.75rem;
    }
    .service-stars {
      color: var(--gold);
      font-size: 13px;
      letter-spacing: 2px;
    }
    .service-reviews {
      font-size: 12px;
      color: var(--muted);
    }

    .service-meta {
      display: none;
      align-items: center;
      gap: 12px;
      margin-bottom: 1rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid rgba(58,46,34,0.08);
    }
    .service-meta-item {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      color: var(--text);
    }
    .service-meta-icon {
      width: 14px;
      height: 14px;
      opacity: 0.6;
    }

    .service-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: auto;
      padding-bottom: 1rem;
    }

    .service-price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1rem;
    }
    .service-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--deep);
    }
    .service-price-from {
      font-size: 11px;
      font-family: 'DM Sans', sans-serif;
      color: var(--muted);
      font-weight: 400;
      margin-right: 4px;
    }

    .service-book-btn {
      width: 100%;
      padding: 12px 24px;
      border-radius: 8px;
      border: none;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
      color: var(--dark);
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      letter-spacing: 0.3px;
      text-decoration: none;
      display: inline-block;
      text-align: center;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .service-book-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(201,151,58,0.3);
    }

    /* ─── EXPERIENCE / ABOUT ─── */
    #about { background: var(--cream); }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 6rem; align-items: center;
    }
    .about-visual { position: relative; }
    .about-img-wrap {
      border-radius: 24px; overflow: hidden;
      aspect-ratio: 4/5;
      background: linear-gradient(145deg, #d4c4a8 0%, #c9b48a 50%, #b89a6a 100%);
      position: relative;
    }
    /* Decorative spa scene */
    .about-img-wrap .spa-scene {
      position: absolute; inset: 0;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 1rem;
    }
    .spa-scene svg { opacity: 0.7; }
    .about-badge {
      position: absolute; bottom: -20px; right: -20px;
      width: 120px; height: 120px; border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-lt));
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      box-shadow: 0 8px 32px rgba(201,151,58,0.35);
      font-family: 'Cormorant Garamond', serif;
    }
    .about-badge .years { font-size: 2rem; font-weight: 700; color: var(--dark); line-height: 1; }
    .about-badge .yrs-label { font-size: 11px; color: rgba(26,21,16,0.7); letter-spacing: 1px; text-align: center; }

    .about-floater {
      position: absolute; top: 40px; left: -24px;
      background: #fff; border-radius: 16px; padding: 14px 18px;
      box-shadow: 0 8px 32px rgba(26,21,16,0.1);
      display: flex; align-items: center; gap: 10px;
    }
    .af-icon { font-size: 20px; }
    .af-text { font-size: 12px; color: var(--muted); line-height: 1.4; }
    .af-text strong { display: block; color: var(--deep); font-size: 13px; }

     
    .about-features { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
    .af-row { display: flex; align-items: flex-start; gap: 14px; }
    .af-dot { width: 32px; height: 32px; border-radius: 8px; background: var(--gold-pale); border: 1px solid rgba(201,151,58,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; }
    .af-body h4 { font-size: 14px; font-weight: 500; color: var(--deep); margin-bottom: 2px; }
    .af-body p { font-size: 13px; color: var(--muted); line-height: 1.6; }

    /* ─── TESTIMONIALS ─── */
    #testimonials {
      background: var(--warm);
      overflow: hidden;
    }
    #testimonials::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; bottom: 0;
      background: radial-gradient(ellipse 50% 60% at 10% 50%, rgba(201,151,58,0.08) 0%, transparent 60%);
      pointer-events: none;
    }
    .testimonials-header { text-align: center; margin-bottom: 4rem; }
    .testimonials-header .section-desc { margin: 0 auto; }

    .testi-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .testi-card {
      background: #fff; border-radius: 20px; padding: 2rem;
      box-shadow: 0 4px 24px rgba(26,21,16,0.05);
      position: relative; overflow: hidden;
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,21,16,0.1); }
    .testi-card.featured {
      background: var(--deep);
      grid-row: span 1;
    }
    .testi-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem; line-height: 0.7; color: var(--gold);
      margin-bottom: 0.5rem; opacity: 0.5;
    }
    .testi-card.featured .testi-quote { color: var(--gold-lt); }
    .testi-text {
      font-size: 14px; line-height: 1.75; color: var(--text);
      margin-bottom: 1.5rem; font-style: italic;
    }
    .testi-card.featured .testi-text { color: rgba(247,242,235,0.8); }
    .testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 1.25rem; letter-spacing: 2px; }
    .testi-author { display: flex; align-items: center; gap: 10px; }
    .testi-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 15px; font-weight: 600; font-family: 'Cormorant Garamond', serif;
      flex-shrink: 0; background: var(--gold-pale); color: var(--gold);
      border: 2px solid rgba(201,151,58,0.2);
    }
    .testi-card.featured .testi-avatar { background: rgba(201,151,58,0.2); color: var(--gold-lt); border-color: rgba(201,151,58,0.3); }
    .testi-name { font-size: 13.5px; font-weight: 500; color: var(--deep); }
    .testi-card.featured .testi-name { color: var(--cream); }
    .testi-loc { font-size: 12px; color: var(--muted); }
    .testi-card.featured .testi-loc { color: rgba(247,242,235,0.45); }

    /* ─── GALLERY STRIP ─── */
    #gallery { background: var(--cream); padding: 60px 0; overflow: hidden; }
    .gallery-track {
      display: flex; gap: 16px;
      animation: scrollTrack 30s linear infinite;
      width: max-content;
    }
    .gallery-track:hover { animation-play-state: paused; }
    @keyframes scrollTrack {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .gallery-item {
      width: 200px; height: 240px; border-radius: 16px; flex-shrink: 0;
      overflow: hidden; position: relative;
    }
    .gallery-item .gi-inner {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      font-size: 3rem;
      transition: transform 0.4s;
    }
    .gallery-item:hover .gi-inner { transform: scale(1.06); }
    .gi-0  { background: linear-gradient(145deg,#d4b896,#c9a07a); }
    .gi-1  { background: linear-gradient(145deg,#a8c4b8,#7eab9e); }
    .gi-2  { background: linear-gradient(145deg,#d4c4a8,#c4aa80); }
    .gi-3  { background: linear-gradient(145deg,#b8a4c8,#9878b4); }
    .gi-4  { background: linear-gradient(145deg,#c8b8a4,#b8a080); }
    .gi-5  { background: linear-gradient(145deg,#a4c0c8,#7aabb8); }
    .gi-6  { background: linear-gradient(145deg,#d4b8b8,#c09090); }
    .gi-7  { background: linear-gradient(145deg,#b4d4b4,#88b888); }

    /* ─── BOOKING CTA ─── */
    #booking {
      background: var(--deep);
      text-align: center;
      overflow: hidden;
    }
    #booking::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 30% 50%, rgba(201,151,58,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 80% 40%, rgba(107,63,160,0.08) 0%, transparent 60%);
      pointer-events: none;
    }
    .booking-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
    #booking .section-eyebrow { color: var(--gold-lt); }
    #booking .section-eyebrow::before,
    #booking .section-eyebrow::after { background: var(--gold-lt); }
    #booking .section-title { color: var(--cream); margin-bottom: 1rem; }
    #booking .section-desc { color: rgba(247,242,235,0.55); margin: 0 auto 2.5rem; }

    .booking-options {
      display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }
    .bo-chip {
      display: flex; align-items: center; gap: 7px;
      padding: 8px 18px; border-radius: 999px;
      border: 1px solid rgba(201,151,58,0.3);
      background: rgba(201,151,58,0.06);
      font-size: 13px; color: rgba(247,242,235,0.7); cursor: pointer;
      transition: all 0.2s;
    }
    .bo-chip:hover, .bo-chip.active { border-color: var(--gold); background: rgba(201,151,58,0.14); color: var(--gold-lt); }
    .bo-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); opacity: 0.6; }
    .bo-chip.active .dot { opacity: 1; }

    .contact-row {
      display: none; gap: 2rem; justify-content: center; flex-wrap: wrap;
      margin-top: 2.5rem; padding-top: 2.5rem;
      border-top: 1px solid rgba(201,151,58,0.15);
    }
    .contact-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(247,242,235,0.55); }
    .contact-item svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

    /* ─── FOOTER ─── */
    footer {
      background: #120f0a;
      padding: 2.5rem 5%;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-copy { font-size: 12px; color: rgba(247,242,235,0.3); }
    .footer-links { display: flex; gap: 1.5rem; }
    .footer-links a { font-size: 12px; color: rgba(247,242,235,0.3); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--gold); }

    /* ─── SCROLL ANIMATIONS ─── */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .nav-links, .nav-book { display: none; }
      .nav-toggle { display: flex; }
      .about-grid { grid-template-columns: 1fr; gap: 3rem; }
      .testi-grid { grid-template-columns: 1fr; }
      .hero-stats { gap: 2rem; }
      .services-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
    }
    @media (max-width: 600px) {
      .services-grid { grid-template-columns: 1fr; }
      .hero-stats { flex-direction: column; gap: 1.5rem; align-items: center; }
      .section-pad { padding: 70px 5%; }
    }
  