/* ── RESET & BASE ─────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Lato', sans-serif;
      color: #2c2c2c;
      background-color: #f9f5ee;
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; height: auto; }
    a { color: inherit; text-decoration: none; }
    button { font-family: 'Lato', sans-serif; border: none; background: none; cursor: pointer; }
    ul, ol { list-style: none; }
    address { font-style: normal; }

    /* ── SCROLLBAR ───────────────────────────────────────────────────── */
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: #f1f1f1; }
    ::-webkit-scrollbar-thumb { background: #b5ccb5; border-radius: 4px; }
    ::-webkit-scrollbar-thumb:hover { background: #8aab8a; }

    /* ── CSS VARIABLES ───────────────────────────────────────────────── */
    :root {
      --sage:        #8aab8a;
      --sage-light:  #b5ccb5;
      --sage-dark:   #5e7e5e;
      --cream:       #f9f5ee;
      --cream-dark:  #f0e9d8;
      --gold:        #c9a84c;
      --gold-light:  #e8d5a0;
      --dark:        #2c2c2c;
      --muted:       #6b7280;
    }

    /* ── TYPOGRAPHY ──────────────────────────────────────────────────── */
    h1, h2, h3, h4, h5 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; }

    /* ── ACCESSIBILITY ───────────────────────────────────────────────── */
    .skip-link {
      position: absolute; top: -40px; left: 0;
      background: var(--sage-dark); color: white;
      padding: 8px 16px; z-index: 9999;
      transition: top 0.3s; font-weight: 700;
    }
    .skip-link:focus { top: 0; }
    a:focus-visible, button:focus-visible, input:focus-visible,
    textarea:focus-visible, select:focus-visible {
      outline: 3px solid var(--sage); outline-offset: 2px;
    }

    /* ── BUTTONS ─────────────────────────────────────────────────────── */
    .btn-primary {
      display: inline-block;
      background: var(--sage-dark); color: white;
      padding: 0.75rem 2rem; border-radius: 6px;
      font-size: 0.82rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      border: 2px solid var(--sage-dark);
      transition: all 0.3s ease;
    }
    .btn-primary:hover { background: transparent; color: var(--sage-dark); }
    .btn-outline {
      display: inline-block;
      background: transparent; color: var(--sage-dark);
      padding: 0.75rem 2rem; border-radius: 6px;
      font-size: 0.82rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      border: 2px solid var(--sage-dark);
      transition: all 0.3s ease;
    }
    .btn-outline:hover { background: var(--sage-dark); color: white; }
    .btn-gold {
      display: inline-block;
      background: var(--gold); color: white;
      padding: 0.75rem 2rem; border-radius: 6px;
      font-size: 0.82rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      border: 2px solid var(--gold);
      transition: all 0.3s ease;
    }
    .btn-gold:hover { background: transparent; color: var(--gold); }

    /* ── SECTION LABELS ──────────────────────────────────────────────── */
    .section-subtitle {
      display: block;
      font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 0.6rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 500; color: var(--sage-dark);
      margin-bottom: 1rem;
    }
    .divider {
      width: 60px; height: 2px;
      background: linear-gradient(to right, var(--gold), var(--sage-light));
      margin: 1rem auto 2rem;
    }
    .divider-left { margin-left: 0; }

    /* ── LAYOUT HELPERS ──────────────────────────────────────────────── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
    .section-pad { padding: 5rem 0; }
    .text-center { text-align: center; }
    .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

    /* ── NAVBAR ──────────────────────────────────────────────────────── */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 1000; padding: 1.25rem 0;
      transition: all 0.4s ease;
    }
    #navbar.scrolled {
      background: rgba(249, 245, 238, 0.97);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 20px rgba(0,0,0,0.08);
      padding: 0.75rem 0;
    }
    .nav-inner {
      display: flex; align-items: center;
      justify-content: space-between;
    }
    .nav-logo { display: flex; align-items: center; gap: 0.75rem; }
    .nav-logo img { height: 70px; width: auto; }
    .nav-links {
      display: flex; align-items: center; gap: 2rem;
    }
    .nav-links button {
      font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: #374151; transition: color 0.2s;
    }
    .nav-links button:hover,
    .nav-links button.active { color: var(--sage-dark); }
    .nav-book { display: block; }
    /* Hamburger */
    .hamburger {
      display: none; flex-direction: column;
      gap: 5px; padding: 6px; z-index: 1001;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px;
      background: #374151; border-radius: 2px;
      transition: all 0.3s ease;
    }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    /* Mobile menu */
    #mobile-menu {
      position: fixed; inset: 0;
      background: var(--cream); z-index: 999;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 2rem;
      transform: translateX(100%); transition: transform 0.4s ease;
    }
    #mobile-menu.open { transform: translateX(0); }
    #mobile-menu img { height: 64px; }
    #mobile-menu nav ul { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
    #mobile-menu nav button {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: #374151; transition: color 0.2s;
    }
    #mobile-menu nav button:hover { color: var(--sage-dark); }

    /* ── HERO ────────────────────────────────────────────────────────── */
    #home {
      min-height: 100vh;
      background: linear-gradient(135deg, #e8f0e8 0%, #f5efe3 40%, #eef3e8 100%);
      position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    #home::before {
      content: '';
      position: absolute; top: -50%; right: -20%;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(181,204,181,0.3) 0%, transparent 70%);
      border-radius: 50%;
    }
    #home::after {
      content: '';
      position: absolute; bottom: -20%; left: -10%;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(232,213,160,0.2) 0%, transparent 70%);
      border-radius: 50%;
    }
    .hero-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 3rem; align-items: center;
      padding: 9rem 1.5rem 5rem;
      max-width: 1200px; margin: 0 auto; width: 100%;
      position: relative; z-index: 1;
    }
    .hero-tag {
      font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 1rem;
    }
    .hero-h1 {
      font-size: clamp(2.8rem, 5vw, 4.5rem);
      font-weight: 300; line-height: 1.1;
      color: #2c2c2c; margin-bottom: 1.5rem;
    }
    .hero-h1 em { color: var(--sage-dark); font-style: italic; }
    .hero-lead {
      font-size: 1.05rem; color: #4b5563;
      line-height: 1.75; margin-bottom: 2rem; max-width: 500px;
    }
    .hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
    .hero-stats {
      display: flex; flex-wrap: wrap; gap: 2rem;
      margin-top: 3rem; padding-top: 2rem;
      border-top: 1px solid #e5e7eb;
    }
    .hero-stat-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; font-weight: 600; color: var(--sage-dark);
    }
    .hero-stat-label {
      font-size: 0.72rem; letter-spacing: 0.2em;
      text-transform: uppercase; color: #9ca3af; margin-top: 2px;
    }
    /* Image collage */
    .hero-images {
      display: grid; grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto; gap: 1rem;
      height: 500px; position: relative;
    }
    .hero-img-main {
      grid-column: 1; grid-row: 1 / 3;
      border-radius: 6px; overflow: hidden;
      box-shadow: 0 20px 50px rgba(0,0,0,0.15);
      margin-top: 40px;
    }
    .hero-img-top {
      grid-column: 2; grid-row: 1;
      border-radius: 6px; overflow: hidden;
      box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    }
    .hero-img-bot {
      grid-column: 2; grid-row: 2;
      border-radius: 6px; overflow: hidden;
      box-shadow: 0 12px 30px rgba(0,0,0,0.1);
      height: 155px;
    }
    .hero-img-main img, .hero-img-top img, .hero-img-bot img {
      width: 100%; height: 100%; object-fit: cover;
    }
    .hero-badge {
      position: absolute; bottom: -12px; left: -20px;
      background: white; border-radius: 6px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.12);
      padding: 1rem; display: flex; align-items: center; gap: 0.75rem;
    }
    .hero-badge-icon {
      width: 44px; height: 44px; border-radius: 50%;
      background: linear-gradient(135deg, #b5ccb5, #e8d5a0);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
    }
    .hero-badge p:first-of-type { font-weight: 700; font-size: 0.85rem; color: #1f2937; }
    .hero-badge p:last-of-type { font-size: 0.72rem; color: #9ca3af; }
    /* Scroll indicator */
    .scroll-hint {
      position: absolute; bottom: 2rem; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column;
      align-items: center; gap: 0.4rem;
      animation: bounce 2s ease-in-out infinite;
    }
    .scroll-hint span {
      font-size: 0.68rem; letter-spacing: 0.2em;
      text-transform: uppercase; color: #9ca3af;
    }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }

    /* ── ABOUT ───────────────────────────────────────────────────────── */
    #about {
      background: #f9f5ee; position: relative; overflow: hidden;
    }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: center; margin-bottom: 4rem;
    }
    .about-images {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1rem; position: relative;
    }
    .about-img-left {
      border-radius: 6px; overflow: hidden;
      height: 340px; box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    }
    .about-img-right { display: flex; flex-direction: column; gap: 1rem; }
    .about-img-right-top {
      border-radius: 6px; overflow: hidden;
      flex: 1; box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }
    .about-img-right-bot {
      border-radius: 6px; padding: 1.5rem;
      text-align: center;
      background: linear-gradient(135deg, var(--sage-dark), var(--sage));
      color: white;
    }
    .about-img-right-bot .big-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem; font-weight: 700;
    }
    .about-img-right-bot p {
      font-size: 0.72rem; letter-spacing: 0.18em;
      text-transform: uppercase; opacity: 0.9; margin-top: 4px;
    }
    .about-img-left img, .about-img-right-top img {
      width: 100%; height: 100%; object-fit: cover;
    }
    .about-text h3 {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 300; color: var(--sage-dark); margin-bottom: 1rem;
    }
    .about-text p { color: #4b5563; line-height: 1.8; margin-bottom: 1rem; }
    .about-bullets { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; }
    .about-bullet { display: flex; align-items: center; gap: 0.5rem; }
    .about-bullet .dot {
      width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
    }
    .about-bullet span { font-size: 0.88rem; color: #4b5563; }
    /* Qualifications */
    .qual-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
    }
    .qual-card {
      background: white; border-radius: 6px; padding: 1.75rem;
      text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      transition: box-shadow 0.3s;
    }
    .qual-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
    .qual-icon { font-size: 2.5rem; margin-bottom: 1rem; }
    .qual-card h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; color: var(--sage-dark); margin-bottom: 0.5rem;
    }
    .qual-card p { font-size: 0.85rem; color: #6b7280; line-height: 1.6; }

    /* ── TESTIMONIAL SLIDER ─────────────────────────────────────────── */
    .testimonial-slider {
      max-width: 720px; margin: 3.5rem auto 0;
      position: relative;
      overflow: hidden; /* FIX: Hides the slides when they slide out of view */
    }
    .testimonial-track {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .testimonial-slide {
      min-width: 100%;
      /* flex-shrink: 0; FIX: Prevents the slides from squishing together */
      background: white; border-left: 4px solid var(--sage-light);
      padding: 2rem; border-radius: 0 6px 6px 0;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    }
    .testimonial-slide blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem; font-style: italic;
      color: #374151; line-height: 1.8; margin-bottom: 1.25rem;
    }
    .testimonial-slide .testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
    .testimonial-slide .testimonial-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--sage); color: white;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 1rem;
    }
    .testimonial-slide .testimonial-author-name { font-weight: 700; font-size: 0.9rem; color: #1f2937; }
    .testimonial-slide .testimonial-author-role { font-size: 0.78rem; color: #9ca3af; }
    .testimonial-slide .stars { color: #facc15; font-size: 1.1rem; margin-left: auto; }

    /* Testimonial Controls */
    .ts-controls {
      display: flex; align-items: center; 
      justify-content: center; gap: 1.25rem; 
      margin-top: 1.5rem;
    }
    .ts-arrow {
      width: 40px; height: 40px;
      border-radius: 50%; border: 1.5px solid #d1d5db;
      background: white; color: #6b7280;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.25s ease;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    .ts-arrow:hover {
      border-color: var(--sage);
      color: var(--sage-dark);
      transform: scale(1.05);
    }
    .ts-dots { display: flex; gap: 0.5rem; }
    .ts-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: #d1d5db; border: none; cursor: pointer;
      transition: all 0.3s ease;
    }
    .ts-dot.active {
      background: var(--sage-dark);
      width: 24px; border-radius: 4px;
    }

    .stars { color: #facc15; font-size: 1.1rem; margin-left: auto; }

    /* ── SERVICES ────────────────────────────────────────────────────── */
    #services {
      background: linear-gradient(180deg, #eef3e8 0%, #f9f5ee 100%);
    }
    .filter-tabs {
      display: flex; flex-wrap: wrap;
      justify-content: center; gap: 0.75rem; margin-bottom: 3rem;
    }
    .filter-tab {
      padding: 0.6rem 1.5rem; border-radius: 6px;
      font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.15em; text-transform: uppercase;
      border: 2px solid #d1d5db; color: #4b5563; background: white;
      transition: all 0.25s;
    }
    .filter-tab:hover { border-color: var(--sage-light); }
    .filter-tab.active { background: var(--sage-dark); color: white; border-color: var(--sage-dark); }
    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 2rem; margin-bottom: 5rem;
    }
    .service-card {
      background: white; border-radius: 6px; overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
    .service-card[hidden] { display: none; }
    .service-img {
      position: relative; height: 220px; overflow: hidden;
    }
    .service-img img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.5s;
    }
    .service-card:hover .service-img img { transform: scale(1.05); }
    .service-cat-badge {
      position: absolute; top: 1rem; left: 1rem;
      background: rgba(94,126,94,0.92); color: white;
      padding: 0.25rem 0.75rem; border-radius: 20px;
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    }
    .service-dur-badge {
      position: absolute; top: 1rem; right: 1rem;
      background: rgba(249,245,238,0.95);
      padding: 0.25rem 0.75rem; border-radius: 20px;
      font-size: 0.72rem; font-weight: 700; color: #374151;
    }
    .service-body { padding: 1.5rem; }
    .service-title-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
    .service-icon { font-size: 1.5rem; }
    .service-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem; font-weight: 600; color: #1f2937;
    }
    .service-desc { font-size: 0.88rem; color: #4b5563; line-height: 1.7; margin-bottom: 1rem; }
    .benefit-label {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
      text-transform: uppercase; color: #9ca3af; margin-bottom: 0.5rem;
    }
    .benefit-list { list-style: none; margin-bottom: 1rem; }
    .benefit-list li {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.85rem; color: #4b5563; padding: 0.2rem 0;
    }
    .benefit-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--sage); flex-shrink: 0;
    }
    .outcome-box {
      background: #f0f4f0; border-radius: 4px;
      padding: 0.75rem; font-size: 0.8rem;
      color: #4b5563; line-height: 1.6; margin-bottom: 1rem;
    }
    /* Packages */
    .packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .package-card {
      border: 2px solid var(--sage-light); border-radius: 6px;
      padding: 2rem; background: white;
      transition: all 0.3s; position: relative; overflow: hidden;
    }
    .package-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 4px; background: linear-gradient(to right, var(--sage), var(--gold));
    }
    .package-card:hover {
      border-color: var(--sage);
      box-shadow: 0 8px 30px rgba(138,171,138,0.2);
      transform: translateY(-4px);
    }
    .package-card.featured { border-color: var(--gold); box-shadow: 0 8px 30px rgba(201,168,76,0.15); }
    .package-card.featured::before { background: linear-gradient(to right, var(--gold), var(--sage)); }
    .pkg-popular {
      position: absolute; top: 1rem; right: 1rem;
      background: var(--gold); color: white;
      padding: 0.2rem 0.75rem; border-radius: 20px;
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    }
    .pkg-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 600; margin-bottom: 0.25rem;
    }
    .pkg-sessions { font-size: 0.82rem; color: #9ca3af; margin-bottom: 0.75rem; }
    .pkg-desc { font-size: 0.88rem; color: #4b5563; line-height: 1.65; margin-bottom: 1.5rem; }
    .pkg-includes { margin-bottom: 2rem; }
    .pkg-includes li {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.85rem; color: #4b5563; padding: 0.3rem 0;
    }
    .pkg-check { flex-shrink: 0; }

    /* ── PRODUCTS ─────────────────────────────────────────────────────── */
    #products { background: #f9f5ee; }
    .products-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
    }
    .product-card {
      background: white; border-radius: 6px; overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
    .product-card[hidden] { display: none; }
    .product-img {
      position: relative; height: 240px; overflow: hidden;
    }
    .product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .product-card:hover .product-img img { transform: scale(1.05); }
    .prod-tag {
      position: absolute; top: 1rem; left: 1rem;
      padding: 0.25rem 0.75rem; border-radius: 20px;
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase; color: white;
    }
    .prod-cat-tag {
      position: absolute; top: 1rem; right: 1rem;
      background: rgba(249,245,238,0.95);
      padding: 0.25rem 0.75rem; border-radius: 20px;
      font-size: 0.72rem; font-weight: 700; color: #374151;
    }
    .product-body { padding: 1.5rem; }
    .product-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 0.5rem; }
    .product-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem; font-weight: 600; color: #1f2937; line-height: 1.3;
    }
    .product-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem; font-weight: 700; color: var(--gold);
      margin-left: 0.75rem; flex-shrink: 0;
    }
    .product-desc { font-size: 0.85rem; color: #4b5563; line-height: 1.7; margin-bottom: 1rem; }
    .ingredients-label {
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em;
      text-transform: uppercase; color: #9ca3af; margin-bottom: 0.5rem;
    }
    .ingredients-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
    .ingredient-tag {
      background: #e8f0e8; color: #2d5a2d;
      padding: 0.2rem 0.6rem; border-radius: 20px; font-size: 0.75rem;
    }
    .products-banner {
      margin-top: 4rem; border-radius: 6px; padding: 3.5rem 2rem;
      text-align: center; color: white; position: relative; overflow: hidden;
      background: linear-gradient(135deg, #5e7e5e 0%, #8aab8a 50%, #c9a84c 100%);
    }
    .products-banner h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 300;
      color: white; margin-bottom: 1rem;
    }
    .products-banner p { color: rgba(255,255,255,0.88); margin-bottom: 1.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
    .products-banner a {
      display: inline-block; background: white; color: #2d5a2d;
      padding: 0.75rem 2rem; border-radius: 2px;
      font-weight: 700; font-size: 0.82rem;
      letter-spacing: 0.12em; text-transform: uppercase;
      transition: background 0.3s;
    }
    .products-banner a:hover { background: #f3f4f6; }

    /* ── BLOG ─────────────────────────────────────────────────────────── */
    #blog { background: linear-gradient(180deg, #f9f5ee 0%, #eef3e8 100%); }
    .blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-bottom: 4rem; }
    .blog-card {
      background: white; border-radius: 6px; overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
    .blog-img { position: relative; height: 260px; overflow: hidden; }
    .blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .blog-card:hover .blog-img img { transform: scale(1.04); }
    .blog-cat-badge {
      position: absolute; top: 1rem; left: 1rem;
      padding: 0.25rem 0.75rem; border-radius: 20px;
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase; color: white;
    }
    .blog-body { padding: 2rem; }
    .blog-meta {
      display: flex; align-items: center; gap: 1rem;
      font-size: 0.72rem; color: #9ca3af;
      letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem;
    }
    .blog-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.45rem; font-weight: 600; color: #1f2937;
      line-height: 1.3; margin-bottom: 0.75rem;
      transition: color 0.2s; cursor: default;
    }
    .blog-card:hover .blog-title { color: var(--sage-dark); }
    .blog-excerpt { font-size: 0.88rem; color: #4b5563; line-height: 1.75; margin-bottom: 1.25rem; }
    .blog-tips {
      border-radius: 4px; padding: 1rem; margin-bottom: 1.25rem;
    }
    .blog-tips-label {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
      text-transform: uppercase; margin-bottom: 0.75rem;
    }
    .blog-tips ul { list-style: none; }
    .blog-tips li {
      display: flex; align-items: flex-start; gap: 0.5rem;
      font-size: 0.84rem; color: #4b5563; padding: 0.2rem 0;
    }
    .blog-tip-dot {
      width: 6px; height: 6px; border-radius: 50%;
      flex-shrink: 0; margin-top: 7px;
    }
    .blog-footer { display: flex; align-items: center; justify-content: space-between; }
    .blog-author { display: flex; align-items: center; gap: 0.75rem; }
    .blog-author-avatar {
      width: 40px; height: 40px; border-radius: 50%; overflow: hidden;
    }
    .blog-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .blog-author-name { font-weight: 700; font-size: 0.88rem; color: #1f2937; }
    .blog-author-role { font-size: 0.75rem; color: #9ca3af; }
    .blog-read-more {
      font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      display: flex; align-items: center; gap: 0.3rem;
      transition: gap 0.2s;
    }
    .blog-read-more:hover { gap: 0.6rem; }
    /* Wellness tips */
    .wellness-box {
      background: white; border-radius: 6px; padding: 3rem;
    }
    .wellness-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
    }
    .wellness-tip {
      background: #f9f5ee; border-radius: 6px; padding: 1.5rem;
      text-align: center; transition: transform 0.25s, box-shadow 0.25s;
    }
    .wellness-tip:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
    .wellness-tip .tip-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
    .wellness-tip h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; color: var(--sage-dark); margin-bottom: 0.5rem;
    }
    .wellness-tip p { font-size: 0.82rem; color: #6b7280; line-height: 1.6; }
    
    section#blog.section-pad { padding-top: 0; }

    /* ── CONTACT ──────────────────────────────────────────────────────── */
    #contact { background: #eef3e8; }
    .contact-grid {
      display: grid; grid-template-columns: 2fr 3fr; gap: 3rem;
    }
    .contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
    .info-card {
      background: white; border-radius: 6px; padding: 1.5rem;
      box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    }
    .info-card-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
    .info-icon {
      width: 40px; height: 40px; border-radius: 50%;
      background: #eef3e8; display: flex; align-items: center;
      justify-content: center; font-size: 1.1rem; flex-shrink: 0;
    }
    .info-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem; color: var(--sage-dark);
    }
    .hours-row {
      display: flex; justify-content: space-between;
      padding: 0.5rem 0; border-bottom: 1px solid #f3f4f6;
      font-size: 0.88rem;
    }
    .hours-row:last-child { border-bottom: none; }
    .hours-row span:first-child { color: #4b5563; }
    .hours-row span:last-child { font-weight: 700; color: #1f2937; }
    .contact-link {
      display: flex; align-items: center; gap: 0.75rem;
      font-size: 0.88rem; color: #4b5563;
      padding: 0.3rem 0; transition: color 0.2s;
    }
    .contact-link:hover { color: var(--sage-dark); }
    .social-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }
    .social-pill {
      display: flex; align-items: center; gap: 0.4rem;
      padding: 0.4rem 1rem; border-radius: 20px;
      font-size: 0.8rem; font-weight: 700; color: white;
      transition: opacity 0.2s, transform 0.2s;
    }
    .social-pill:hover { opacity: 0.85; transform: scale(1.04); }
    /* Form */
    .form-card {
      background: white; border-radius: 6px; padding: 2.5rem;
      box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    }
    .form-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; font-weight: 300; color: #1f2937; margin-bottom: 0.4rem;
    }
    .form-card .form-sub { font-size: 0.88rem; color: #9ca3af; margin-bottom: 2rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
    .form-group { display: flex; flex-direction: column; margin-bottom: 1.25rem; }
    .form-label {
      font-size: 0.75rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: #1f2937; margin-bottom: 0.4rem;
    }
    .form-input {
      padding: 0.85rem 1rem; border: 1px solid #d1d5db;
      border-radius: 2px; font-family: 'Lato', sans-serif;
      font-size: 0.95rem; color: #1f2937; background: white;
      transition: border-color 0.3s, box-shadow 0.3s; outline: none;
      width: 100%;
    }
    .form-input:focus {
      border-color: var(--sage);
      box-shadow: 0 0 0 3px rgba(138,171,138,0.15);
    }
    textarea.form-input { resize: vertical; min-height: 130px; }
    .form-note { font-size: 0.75rem; color: #9ca3af; text-align: center; margin-top: 0.75rem; }
    .success-box {
      text-align: center; padding: 4rem 2rem;
      background: #eef3e8; border-radius: 6px;
    }
    .success-box .success-icon { font-size: 4rem; margin-bottom: 1rem; }
    .success-box h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; font-weight: 300;
      color: var(--sage-dark); margin-bottom: 0.75rem;
    }
    .success-box p { color: #4b5563; margin-bottom: 1.5rem; }

    /* ── FOOTER ───────────────────────────────────────────────────────── */
    .footer-cta {
      padding: 5rem 1.5rem; text-align: center;
      background: linear-gradient(135deg, #5e7e5e, #8aab8a);
      position: relative; overflow: hidden;
    }
    .footer-cta h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3rem); font-weight: 300;
      color: white; margin-bottom: 1rem;
    }
    .footer-cta p { color: rgba(255,255,255,0.82); margin-bottom: 2rem; font-size: 1.05rem; }
    .footer-cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .footer-cta-btns button {
      background: white; color: #2d5a2d;
      padding: 0.75rem 2rem; border-radius: 6px;
      font-weight: 700; font-size: 0.82rem;
      letter-spacing: 0.12em; text-transform: uppercase;
      transition: background 0.3s;
    }
    .footer-cta-btns button:hover { background: #f3f4f6; }
    .footer-cta-btns a {
      display: inline-block;
      background: transparent; color: white;
      padding: 0.75rem 2rem; border-radius: 6px;
      border: 2px solid white;
      font-weight: 700; font-size: 0.82rem;
      letter-spacing: 0.12em; text-transform: uppercase;
      transition: all 0.3s;
    }
    .footer-cta-btns a:hover { background: white; color: #2d5a2d; }
    .footer-main { background: #1a2a1a; color: #9ca3af; }
    .footer-main .container { padding-top: 4rem; padding-bottom: 4rem; }
    .footer-grid {
      display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
      gap: 2.5rem; margin-bottom: 3rem;
    }
    .footer-brand img { height: 44px; width: auto; margin-bottom: 1rem; filter: brightness(2); opacity: 0.9; }
    .footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.25rem; }
    .footer-social { display: flex; gap: 0.6rem; }
    .footer-social-btn {
      width: 36px; height: 36px; border-radius: 50%;
      background: #2d3d2d;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.85rem; transition: background 0.25s;
    }
    .footer-social-btn:hover { background: var(--sage-dark); }
    .footer-col h3 {
      color: white; font-family: 'Lato', sans-serif;
      font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.25rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 0.75rem; }
    .footer-col button, .footer-col a {
      font-size: 0.88rem; color: #9ca3af;
      transition: color 0.2s;
    }
    .footer-col button:hover, .footer-col a:hover { color: #86efac; }
    .footer-contact-link {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.88rem; color: #9ca3af;
      margin-bottom: 0.75rem; transition: color 0.2s;
    }
    .footer-contact-link:hover { color: #86efac; }
    .footer-hours-box {
      margin-top: 1rem; background: #0f1a0f;
      border-radius: 4px; padding: 1rem;
    }
    .footer-hours-box p:first-child {
      font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: #6b7280; margin-bottom: 0.35rem;
    }
    .footer-hours-box p:nth-child(2) { font-size: 0.88rem; color: white; font-weight: 600; }
    .footer-hours-box p:last-child { font-size: 0.78rem; color: #6b7280; margin-top: 2px; }
    .footer-bottom {
      border-top: 1px solid #2d3d2d; padding-top: 2rem;
      display: flex; flex-wrap: wrap; align-items: center;
      justify-content: space-between; gap: 1rem;
    }
    .footer-bottom p { font-size: 0.78rem; color: #4b5563; }
    .footer-bottom-links { display: flex; gap: 1.5rem; }
    .footer-bottom-links button { font-size: 0.78rem; color: #4b5563; transition: color 0.2s; }
    .footer-bottom-links button:hover { color: #9ca3af; }

    /* ── ANIMATIONS ───────────────────────────────────────────────────── */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .anim { opacity: 0; }
    .anim.visible { animation: fadeInUp 0.7s ease forwards; }
    .anim-d1.visible { animation-delay: 0.1s; }
    .anim-d2.visible { animation-delay: 0.2s; }
    .anim-d3.visible { animation-delay: 0.3s; }
    .anim-d4.visible { animation-delay: 0.4s; }

        /* ── FASCIA SLIDER ────────────────────────────────────────────────── */
    #fascia-slider {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #1e2e1e 0%, #2a3d2a 50%, #1a2a22 100%);
    }

    /* Decorative botanical overlay */
    #fascia-slider::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 10% 50%, rgba(138,171,138,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 90% 20%, rgba(201,168,76,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 80% 90%, rgba(138,171,138,0.07) 0%, transparent 70%);
      pointer-events: none; z-index: 0;
    }

    /* Slide track */
    .fs-track-wrapper {
      position: relative; z-index: 1;
      width: 100%; overflow: hidden;
    }
    .fs-track {
      display: flex;
      transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }
    .fs-slide {
      flex: 0 0 100%;
      width: 100%;
      min-height: 100vh;
      display: flex;
      align-items: stretch;
    }

    /* Two-column slide layout */
    .fs-slide-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 2rem 2rem 5rem;
      gap: 0;
      align-items: center;
    }

    /* Left: text panel */
    .fs-text {
      padding: 3rem 4rem 3rem 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .fs-slide-number {
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--gold); opacity: 0.8;
      margin-bottom: 1.25rem;
      display: flex; align-items: center; gap: 0.75rem;
    }
    .fs-slide-number::after {
      content: '';
      display: block; flex: 1;
      max-width: 40px; height: 1px;
      background: var(--gold); opacity: 0.5;
    }
    .fs-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 3.5vw, 3.5rem);
      font-weight: 400;
      line-height: 1.15;
      color: #f5f0e8;
      margin-bottom: 1.75rem;
    }
    .fs-heading em {
      font-style: italic;
      color: var(--sage-light);
    }
    .fs-body {
      font-size: 1rem;
      line-height: 1.85;
      color: rgba(245, 240, 232, 0.78);
      margin-bottom: 1.25rem;
    }
    .fs-body + .fs-body {
      margin-top: -0.5rem;
    }
    .fs-tag {
      display: inline-block;
      background: rgba(138,171,138,0.18);
      border: 1px solid rgba(138,171,138,0.35);
      color: var(--sage-light);
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      padding: 0.35rem 1rem; border-radius: 20px;
      margin-bottom: 1.5rem;
    }
    .fs-cta {
      margin-top: 2rem;
      display: flex; gap: 1rem; flex-wrap: wrap;
    }
    .fs-btn-primary {
      display: inline-block;
      background: var(--sage-dark); color: white;
      padding: 0.75rem 1.75rem; border-radius: 2px;
      font-size: 0.8rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      border: 2px solid var(--sage-dark);
      transition: all 0.3s ease; cursor: pointer;
    }
    .fs-btn-primary:hover { background: transparent; color: var(--sage-light); border-color: var(--sage-light); }
    .fs-btn-ghost {
      display: inline-block;
      background: transparent; color: rgba(245,240,232,0.7);
      padding: 0.75rem 1.75rem; border-radius: 2px;
      font-size: 0.8rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      border: 2px solid rgba(245,240,232,0.25);
      transition: all 0.3s ease; cursor: pointer;
    }
    .fs-btn-ghost:hover { border-color: rgba(245,240,232,0.6); color: #f5f0e8; }

    /* Right: visual panel */
    .fs-visual {
      position: relative;
      display: flex; align-items: center; justify-content: center;
      padding: 3rem 2rem 3rem 3rem;
      min-height: 520px;
    }
    .fs-visual-card {
      position: relative;
      width: 100%; max-width: 460px;
      border-radius: 8px; overflow: hidden;
      box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    }
    .fs-visual-card img {
      width: 100%; height: 420px;
      object-fit: cover; display: block;
    }
    /* Color overlay on image */
    .fs-visual-card::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(26,42,26,0.6) 100%
      );
    }
    /* Floating info pill on image */
    .fs-visual-pill {
      position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
      background: rgba(249,245,238,0.1);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(249,245,238,0.2);
      border-radius: 6px; padding: 1rem 1.25rem;
      z-index: 2;
      display: flex; align-items: center; gap: 0.75rem;
    }
    .fs-pill-icon {
      font-size: 1.8rem; line-height: 1; flex-shrink: 0;
    }
    .fs-pill-text p:first-child {
      font-weight: 700; font-size: 0.88rem; color: #f5f0e8;
    }
    .fs-pill-text p:last-child {
      font-size: 0.75rem; color: rgba(245,240,232,0.65);
      margin-top: 2px;
    }
    /* Decorative corner accent */
    .fs-visual-accent {
      position: absolute;
      top: 1.5rem; right: 0.5rem;
      width: 120px; height: 120px;
      border-top: 2px solid rgba(201,168,76,0.3);
      border-right: 2px solid rgba(201,168,76,0.3);
      border-radius: 0 8px 0 0;
      pointer-events: none;
    }
    .fs-visual-accent-bl {
      position: absolute;
      bottom: 1.5rem; left: 0.5rem;
      width: 90px; height: 90px;
      border-bottom: 2px solid rgba(138,171,138,0.3);
      border-left: 2px solid rgba(138,171,138,0.3);
      border-radius: 0 0 0 8px;
      pointer-events: none;
    }

    /* Navigation controls */
    .fs-controls {
      position: absolute; bottom: 2.5rem; left: 0; right: 0;
      z-index: 10;
      display: flex; align-items: center;
      justify-content: center; gap: 1.5rem;
    }
    .fs-arrow {
      width: 46px; height: 46px;
      border: 1.5px solid rgba(245,240,232,0.25);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: rgba(245,240,232,0.06);
      color: rgba(245,240,232,0.7);
      cursor: pointer;
      transition: all 0.25s ease;
      backdrop-filter: blur(4px);
    }
    .fs-arrow:hover {
      background: rgba(138,171,138,0.25);
      border-color: rgba(138,171,138,0.5);
      color: #f5f0e8;
      transform: scale(1.05);
    }
    .fs-dots {
      display: flex; align-items: center; gap: 0.5rem;
    }
    .fs-dot {
      width: 6px; height: 6px; border-radius: 3px;
      background: rgba(245,240,232,0.3);
      cursor: pointer;
      transition: all 0.35s ease;
    }
    .fs-dot.active {
      width: 28px;
      background: linear-gradient(to right, var(--sage), var(--gold));
    }

    /* Slide-in animation for text */
    @keyframes fsSlideInLeft {
      from { opacity: 0; transform: translateX(-30px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes fsSlideInRight {
      from { opacity: 0; transform: translateX(30px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    .fs-slide.is-active .fs-text  { animation: fsSlideInLeft  0.6s 0.15s ease both; }
    .fs-slide.is-active .fs-visual { animation: fsSlideInRight 0.6s 0.25s ease both; }

      /* ── RESPONSIVE ───────────────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .qual-grid  { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .wellness-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 900px) {
      .services-grid  { grid-template-columns: 1fr 1fr; }
      .products-grid  { grid-template-columns: 1fr 1fr; }
      .packages-grid  { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
      .contact-grid   { grid-template-columns: 1fr; }
      .about-grid     { grid-template-columns: 1fr; }
      .about-images   { max-width: 480px; margin: 0 auto 2rem; }
      .hero-inner     { grid-template-columns: 1fr; }
      .hero-images    { display: none; }
      .blog-grid      { grid-template-columns: 1fr; }
      /* Responsive slider */
      .fs-slide-inner { grid-template-columns: 1fr; padding: 6rem 1.5rem 6rem; gap: 2.5rem; }
      .fs-text        { padding: 0; }
      .fs-visual      { padding: 0; min-height: auto; }
      .fs-visual-card img { height: 280px; }
      .fs-visual-card { max-width: 100%; }
      .fs-heading     { font-size: clamp(1.8rem, 5vw, 2.5rem); }
    }

    @media (max-width: 768px) {
      .nav-links, .nav-book { display: none; }
      .hamburger { display: flex; }
      .services-grid  { grid-template-columns: 1fr; }
      .products-grid  { grid-template-columns: 1fr; }
      .footer-grid    { grid-template-columns: 1fr; }
      .form-row       { grid-template-columns: 1fr; }
      .qual-grid      { grid-template-columns: 1fr 1fr; }
      .hero-stats     { gap: 1.5rem; }
      .wellness-grid  { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .qual-grid      { grid-template-columns: 1fr; }
      .wellness-grid  { grid-template-columns: 1fr; }
      .hero-h1        { font-size: 2.4rem; }
      /* Responsive slider */
      .fs-slide-inner { padding: 5.5rem 1.25rem 5.5rem; }
      .fs-visual-card img { height: 220px; }
      .fs-controls { gap: 1rem; bottom: 1.75rem; }
      .fs-arrow { width: 38px; height: 38px; }
    }