
  /* ── TOKENS — Forest & Gold ─────────────────────────────────────────── */
  :root {
    --berry:       #2D6A4F;
    --berry-deep:  #1A3328;
    --berry-light: #4A8C6A;
    --sage:        #74B094;
    --sage-light:  #A8D5B8;
    --sage-pale:   #E4F0EB;
    --dusty:       #8bc3e3;
    --cream:       #FAF7F2;
    --warm-white:  #FDFAF7;
    --parchment:   #F2EDE4;
    --charcoal:    #1A2820;
    --mid:         #5A6352;
    --light-text:  #8A9483;
    --font-display:'Cormorant Garamond', Georgia, serif;
    --font-body:   'Jost', sans-serif;
    --radius:      12px;
    --forest-darker: #111D16;
    --shadow:      0 4px 32px rgba(45,106,79,0.08);
    --shadow-lg:   0 12px 64px rgba(45,106,79,0.14);
  }

  /* ── RESET ──────────────────────────────────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
    line-height: 1.7;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }

/* Image placeholders — replace src with your own image path */
  .img-placeholder {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .img-pump {
    width: 100%; height: 100%;
    display: block;
  }
  .img-logo {
    max-height: 72px;
    object-fit: scale-down;
    display: block;
  }
  .img-placeholder-wrap {
    position: relative; overflow: hidden;
  }
  /* Label shown over placeholder colour blocks */
  .img-label {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-body); font-size: 0.75rem;
    font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.6); pointer-events: none;
  }
  /* ── NAVIGATION ─────────────────────────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(250,247,244,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(132,181,159,0.2);
    padding: 0 5vw;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
    transition: box-shadow 0.3s;
    max-height: 72px;
  }
  nav.scrolled { box-shadow: 0 2px 24px rgba(45,106,79,0.08); }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--berry);
    letter-spacing: 0.01em;
    line-height: 1.1;
    
  }
  .nav-logo span { display: block; font-size: 0.65rem; font-family: var(--font-body); font-weight: 300; color: var(--mid); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 2px; }

  .nav-links {
    display: flex; align-items: center; gap: 2rem;
    list-style: none;
  }
  .nav-links a {
    font-size: 0.8rem; font-weight: 400; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--mid);
    position: relative; transition: color 0.2s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px;
    background: var(--sage); transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--berry); }
  .nav-links a:hover::after { width: 100%; }
  .nav-links a.active { color: var(--berry); }
  .nav-links a.active::after { width: 100%; }

  nav .nav-cta {
    background: var(--berry); color: white;
    padding: 0.5rem 1.25rem; border-radius: 50px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    transition: background 0.2s, transform 0.2s;
  }
  nav .nav-cta:hover { background: var(--berry-deep); transform: translateY(-1px); }
  nav .nav-cta::after { display: none; }
  nav .nav-cta.active { color: var(--cream); }

  .hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 6px;
  }
  .hamburger span {
    display: block; width: 22px; height: 1.5px;
    background: var(--berry); transition: 0.3s;
  }

  /* ── PAGE SYSTEM ────────────────────────────────────────────────────── */
  .page { display: block; padding-top: 72px; min-height: 100vh; }

  /* ── SECTION UTILITIES ──────────────────────────────────────────────── */
  .section { padding: 6rem 5vw; }
  .section-sm { padding: 4rem 5vw; }
  .container { max-width: 1100px; margin: 0 auto; }
  .container-narrow { max-width: 760px; margin: 0 auto; }
  .section-intro { max-width: 560px; margin: 0 auto; }

  .eyebrow {
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--sage); margin-bottom: 1rem;
  }
  h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; color: var(--berry); }
  h1 { font-size: clamp(2.8rem, 5vw, 4.5rem); }
  h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1.5rem; }
  h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
  h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }

  p { color: var(--mid); font-size: 0.95rem; line-height: 1.8; }
  p + p { margin-top: 1rem; }

  .text-center { text-align: center; }
  .text-large { font-size: 1.15rem !important; line-height: 1.7 !important; }

  .btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 2rem; border-radius: 50px;
    font-family: var(--font-body); font-size: 0.82rem;
    font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    cursor: pointer; border: none; transition: all 0.25s;
  }
  .btn-primary { background: var(--berry); color: white; }
  .btn-primary:hover { background: var(--berry-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,106,79,0.25); }
  .btn-outline { background: transparent; color: var(--berry); border: 1.5px solid var(--berry); }
  .btn-outline:hover { background: var(--berry); color: white; transform: translateY(-2px); }
  .btn-sage { background: var(--sage); color: white; }
  .btn-sage:hover { background: #6BA08A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(132,181,159,0.35); }

  /* decorative leaf */
  .leaf {
    display: inline-block; width: 40px; height: 40px;
    background: var(--sage-pale); border-radius: 50% 0 50% 0;
    transform: rotate(-20deg);
  }

  /* ── DIVIDERS ───────────────────────────────────────────────────────── */
  .wave-divider { width: 100%; overflow: hidden; line-height: 0; }
  .wave-divider svg { display: block; }
  .gold-rule { width: 100%; height: 3px; background: linear-gradient(90deg, transparent, rgba(139,195,227,0.5) 30%, rgba(139,195,227,0.5) 70%, transparent); }

  /* ─────────────────────────────────────────────────────────────────────
     PAGE: HOME
  ───────────────────────────────────────────────────────────────────── */

  /* Hero */
  .hero {
    min-height: calc(100vh - 72px);
    background: var(--warm-white);
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 4rem;
    padding: 6rem 5vw 4rem;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(132,181,159,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute; bottom: -100px; left: -60px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(139,195,227,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero-content { position: relative; z-index: 1; }
  .hero-eyebrow {
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--sage); margin-bottom: 1.25rem;
    display: flex; align-items: center; gap: 0.75rem;
  }
  .hero-eyebrow::before {
    content: ''; display: block; width: 28px; height: 1px; background: var(--sage);
  }
  .hero h1 { margin-bottom: 1.5rem; }
  .hero h1 em { font-style: italic; color: var(--dusty); }
  .hero-sub {
    font-size: 1.05rem; color: var(--mid); line-height: 1.8;
    margin-bottom: 2.5rem; max-width: 480px;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .hero-badges {
    display: flex; gap: 1.5rem; margin-top: 3rem; flex-wrap: wrap;
  }
  .hero-badge {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.78rem; color: var(--mid); font-weight: 400;
  }
  .hero-badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--sage); flex-shrink: 0;
  }
  .hero-badge-dot--gold { background: var(--dusty); }
  .hero-badge-dot--berry { background: var(--berry); }

  /* Hero illustration */
  .hero-visual {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-blob {
    width: 460px; height: 460px; max-width: 100%;
    position: relative;
    animation: floatBlob 6s ease-in-out infinite;
  }
  .hero-blob svg { width: 100%; height: 100%; }

  /* Values strip */
  .values-strip {
    background: var(--berry);
    padding: 2rem 5vw;
  }
  .values-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  .value-item { text-align: center; }
  .value-item h4 { color: white; font-size: 1.1rem; margin-bottom: 0.3rem; }
  .value-item p { color: rgba(255,255,255,0.65); font-size: 0.8rem; }

  /* How it works */
  .how-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem; margin-top: 4rem;
  }
  .how-card {
    background: white; border-radius: var(--radius);
    padding: 2.5rem 2rem; box-shadow: var(--shadow);
    position: relative; overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .how-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .how-card::before {
    content: attr(data-num);
    position: absolute; top: -10px; right: 16px;
    font-family: var(--font-display); font-size: 6rem;
    color: rgba(132,181,159,0.12); font-weight: 600;
    line-height: 1; pointer-events: none;
  }
  .how-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--sage-pale); display: flex; align-items: center;
    justify-content: center; margin-bottom: 1.25rem; font-size: 1.5rem;
  }

  /* Services preview */
  .services-preview { background: var(--parchment); }
  .services-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem; margin-top: 3rem;
  }
  .service-card {
    background: white; border-radius: var(--radius);
    padding: 2rem; cursor: pointer;
    border: 1.5px solid transparent;
    transition: all 0.3s;
    box-shadow: var(--shadow);
  }
  .service-card:hover {
    border-color: var(--sage);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
  }
  .service-icon { 
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
  }

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
  .service-price {
    display: inline-block; margin-top: 1rem;
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em;
    color: var(--sage); text-transform: uppercase;
  }

  /* Testimonials */
  .testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-top: 3rem;
  }
  .testimonial-card {
    background: white; border-radius: var(--radius);
    padding: 2rem; box-shadow: var(--shadow);
    position: relative;
  }
  .testimonial-card::before {
    content: '\201C';
    font-family: var(--font-display); font-size: 5rem;
    color: rgba(132,181,159,0.2); line-height: 0.8;
    position: absolute; top: 1.5rem; left: 1.5rem;
  }
  .testimonial-text {
    font-style: italic; font-size: 0.9rem; line-height: 1.8;
    color: var(--mid); margin-bottom: 1.25rem; padding-top: 1rem;
  }
  .testimonial-author { font-size: 0.8rem; font-weight: 500; color: var(--berry); }
  .testimonial-role { font-size: 0.75rem; color: var(--light-text); }
  .stars { color: var(--dusty); font-size: 0.85rem; margin-bottom: 0.75rem; }

  /* CTA band */
  .cta-band {
    background: linear-gradient(135deg, var(--berry) 0%, var(--berry-deep) 100%);
    padding: 5rem 5vw; text-align: center; position: relative; overflow: hidden;
  }
  .cta-band::before {
    content: '';
    position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(132,181,159,0.2) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-band h2 { color: white; position: relative; }
  .cta-band p { color: rgba(255,255,255,0.72); margin: 1rem auto 2.5rem; max-width: 520px; position: relative; }
  .cta-band .btn-sage { position: relative; }

  /* ─────────────────────────────────────────────────────────────────────
     PAGE: ABOUT
  ───────────────────────────────────────────────────────────────────── */
  .about-hero {
    background: var(--warm-white);
    padding: 5rem 5vw;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
  }
  .about-photo-wrap {
    position: relative;
  }
  .about-photo {
    width: 100%; aspect-ratio: 4/5; border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 50%, var(--berry) 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 5rem; color: white;
    overflow: hidden; box-shadow: var(--shadow-lg);
  }

  .about-photo .img-placeholder {
    width: 90%; 
    height: 90%;
    border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
  }
  .about-photo-badge {
    position: absolute; bottom: 2rem; right: -1rem;
    background: white; border-radius: var(--radius);
    padding: 1rem 1.25rem; box-shadow: var(--shadow-lg);
    text-align: center;
  }
  .about-photo-badge strong { display: block; font-size: 1.8rem; font-family: var(--font-display); color: var(--berry); }
  .about-photo-badge span { font-size: 0.72rem; color: var(--mid); text-transform: uppercase; letter-spacing: 0.1em; }

  .credentials-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1rem; margin-top: 4rem;
  }
  .credential-card {
    background: white; border-radius: var(--radius);
    padding: 1.5rem; border-left: 3px solid var(--sage);
    box-shadow: var(--shadow);
  }

  .values-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-top: 3rem;
  }
  .values-grid-2 {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem; margin-top: 1.5rem;
  }
  .value-card {
    background: var(--parchment); border-radius: var(--radius);
    padding: 2rem; text-align: center;
  }
  .value-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
  .value-card h3 { margin-bottom: 0rem;}

  /* ─────────────────────────────────────────────────────────────────────
     PAGE: SERVICES
  ───────────────────────────────────────────────────────────────────── */
  .services-page-hero {
    background: var(--warm-white); padding: 5rem 5vw 3rem;
    text-align: center;
  }
  .services-page-hero p { max-width: 620px; margin: 0 auto; }

  .service-section { padding: 4rem 5vw; }
  .service-section:nth-child(odd) { background: var(--parchment); }
  .service-section:nth-child(even) { background: white; }

  .service-detail {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center; max-width: 1100px; margin: 0 auto;
  }
  .service-detail.reverse > *:first-child { order: 2; }

  .service-detail-visual {
    aspect-ratio: 1;
    border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
    display: flex; align-items: center; justify-content: center;
    font-size: 6rem;
    box-shadow: var(--shadow-lg);
  }
  .service-detail-visual.berry-bg { background: linear-gradient(135deg, var(--berry-light), var(--berry)); }
  .service-detail-visual.sage-bg { background: linear-gradient(135deg, var(--sage), var(--sage-light)); }
  .service-detail-visual.dusty-bg { background: linear-gradient(135deg, var(--dusty), var(--sage)); }

  .service-features {
    list-style: none; margin: 1.5rem 0;
  }
  .service-features li {
    padding: 0.5rem 0; font-size: 0.9rem; color: var(--mid);
    display: flex; align-items: flex-start; gap: 0.75rem;
    border-bottom: 1px solid rgba(132,181,159,0.15);
  }
  .service-features li:last-child { border-bottom: none; }
  .service-features li::before { content: '✦'; color: var(--sage); font-size: 0.6rem; flex-shrink: 0; margin-top: 6px; }

  .price-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--sage-pale); border-radius: 50px;
    padding: 0.6rem 1.25rem; margin-top: 1.5rem;
    font-size: 0.85rem; color: var(--berry); font-weight: 500;
  }

  .products-grid {
    display: grid;
    /* 6 cards: minmax(280px) forces wrap at 3 cols (3+3), never 4+2 or 5+1 */
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 1.25rem; margin-top: 3rem;
  }
  .product-card {
    background: white; border-radius: var(--radius);
    padding: 1.5rem;
    border: 1.5px solid var(--sage-pale);
    box-shadow: var(--shadow); transition: all 0.3s;
  }
  .product-card:hover { border-color: var(--sage); transform: translateY(-3px); }
  .product-card .icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
  .product-card h4 {
    margin-bottom: 0.0rem;
  }

  /* ─────────────────────────────────────────────────────────────────────
     PAGE: RESOURCES
  ───────────────────────────────────────────────────────────────────── */
  .resources-hero {
    background: var(--warm-white); padding: 5rem 5vw 3rem; text-align: center;
  }

  .resources-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-top: 3rem;
  }
  .resource-card {
    background: white; border-radius: var(--radius);
    padding: 2rem; box-shadow: var(--shadow);
    border-top: 3px solid var(--sage);
    transition: transform 0.3s;
  }
  .resource-card:hover { transform: translateY(-3px); }
  .resource-card .icon { font-size: 2rem; margin-bottom: 1rem; }
  .resource-tag {
    display: inline-block; padding: 0.2rem 0.75rem;
    border-radius: 50px; background: var(--sage-pale);
    font-size: 0.7rem; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--sage);
  }
  .resource-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.8rem; color: var(--berry); font-weight: 500;
    margin-top: 1rem; transition: gap 0.2s;
  }
  .resource-link:hover { gap: 0.7rem; }

  .faq-list { max-width: 760px; margin: 3rem auto 0; }
  .faq-item {
    border-bottom: 1px solid rgba(132,181,159,0.2);
    overflow: hidden;
  }
  .faq-q {
    width: 100%; background: none; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.5rem 0; text-align: left;
    font-family: var(--font-display); font-size: 1.15rem; color: var(--berry);
    transition: color 0.2s;
  }
  .faq-q:hover { color: var(--berry-deep); }
  .faq-q-icon {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--sage-pale); display: flex; align-items: center;
    justify-content: center; font-size: 1.1rem; color: var(--sage);
    flex-shrink: 0; transition: transform 0.3s, background 0.3s;
  }
  .faq-item.open .faq-q-icon { transform: rotate(45deg); background: var(--sage); color: white; }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
  }
  .faq-a p { padding-bottom: 1.5rem; }
  .faq-item.open .faq-a { max-height: 300px; }

  .hotlines-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem; margin-top: 2rem;
  }
  .hotline-card {
    background: white; border-radius: var(--radius);
    padding: 1.5rem; border-left: 3px solid var(--berry);
    box-shadow: var(--shadow);
  }
  .hotline-card h4 { font-size: 1rem; }
  .hotline-number { font-size: 1.2rem; font-weight: 500; color: var(--berry); margin: 0.25rem 0; }

  /* ─────────────────────────────────────────────────────────────────────
     PAGE: BOOKING
  ───────────────────────────────────────────────────────────────────── */
  .booking-layout {
    display: grid; grid-template-columns: 1fr 1.6fr;
    min-height: calc(100vh - 72px);
  }
  .booking-sidebar {
    background: var(--berry); padding: 4rem 3rem;
    position: sticky; top: 72px; height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .booking-sidebar h2 { color: white; font-size: 2.2rem; margin-bottom: 1rem; }
  .booking-sidebar p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
  .booking-info-list { list-style: none; margin-top: 2.5rem; }
  .booking-info-list li {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.88rem; color: rgba(255,255,255,0.75);
  }
  .booking-info-list li:last-child { border-bottom: none; }
  .booking-info-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(255,255,255,0.12); display: flex;
    align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
  }
  .booking-info-list strong { display: block; color: white; margin-bottom: 0.15rem; }

  .service-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
  .service-chip {
    background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85);
    padding: 0.4rem 0.9rem; border-radius: 50px;
    font-size: 0.75rem; border: 1px solid rgba(255,255,255,0.2);
  }

  .booking-main { padding: 4rem 3rem; background: var(--cream); }
  .booking-main h3 { margin-bottom: 0.5rem; }
  .booking-main > p { margin-bottom: 2rem; }

  /* Two-column layout: Acuity left, contact form right */
  .booking-columns {
    display: grid;
    gap: 3rem;
    align-items: start;
  }
  .booking-col-form h3 { margin-bottom: 0.5rem; }
  .booking-col-form > p { margin-bottom: 1.5rem; font-size: 0.9rem; }


  /* Iconify icon sizing */
  .iconify {
    font-size: inherit;
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
  }
  .how-icon .iconify,
  .icon .iconify,
  .booking-info-icon .iconify,
  .addon-icon .iconify,
  .cal-icon .iconify {
    width: 1em;
    height: 1em;
  }
  .icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6BA08A;
  }

  /* Acuity embed */
  .acuity-embed-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
  }
  .acuity-embed-container iframe {
    width: 100%;
    min-height: 800px;
    border: none;
    display: block;
  }

  /* Booking form fallback */
  .booking-form { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-group label { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); }
  .form-group input, .form-group select, .form-group textarea {
    padding: 0.75rem 1rem; border: 1.5px solid rgba(132,181,159,0.3);
    border-radius: 8px; font-family: var(--font-body); font-size: 0.9rem;
    color: var(--charcoal); background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--sage); box-shadow: 0 0 0 3px rgba(132,181,159,0.12);
  }
  .form-group textarea { resize: vertical; min-height: 100px; }

  /* ── FOOTER ─────────────────────────────────────────────────────────── */
  footer {
    background: var(--charcoal); color: rgba(255,255,255,0.6);
    padding: 4rem 5vw 2rem;
  }
  .footer-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem; padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-brand h3 { font-family: var(--font-display); color: white; font-size: 1.6rem; margin-bottom: 0.75rem; }
  .footer-brand p { font-size: 0.85rem; line-height: 1.7; }
  .footer-col h5 { color: white; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1.25rem; font-family: var(--font-body); font-weight: 500; }
  .footer-col a { display: block; font-size: 0.85rem; margin-bottom: 0.6rem; color: rgba(255,255,255,0.5); transition: color 0.2s; cursor: pointer; }
  .footer-col a:hover { color: var(--sage-light); }
  .footer-bottom {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 2rem; font-size: 0.78rem;
    flex-wrap: wrap; gap: 1rem;
  }
  .footer-scope {
    background: rgba(132,181,159,0.1); border-radius: 8px;
    padding: 1rem 1.25rem; margin: 1.5rem 0;
    font-size: 0.78rem; color: rgba(255,255,255,0.5);
    border-left: 2px solid var(--sage);
  }

  /* ── MOBILE NAV ─────────────────────────────────────────────────────── */
  .mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 99;
    background: var(--warm-white); padding: 6rem 2rem 3rem;
    flex-direction: column; gap: 0.5rem;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    padding: 1rem; font-size: 1.1rem; font-family: var(--font-display);
    color: var(--berry); border-bottom: 1px solid var(--sage-pale);
  }
  .mobile-menu .nav-cta {
    margin-top: 0.75rem;
    background: var(--berry); color: var(--cream) !important;
    text-align: center; border-radius: 50px; border-bottom: none;
    padding: 0.85rem 1.25rem;
    font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.08em;
    transition: background 0.2s;
  }
  .mobile-menu .nav-cta:hover { background: var(--berry-deep); }

  .mobile-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: none; border: none; font-size: 1.5rem;
    color: var(--berry); cursor: pointer;
  }

  /* ── TESTIMONIALS PAGE ──────────────────────────────────────────────── */
  .testimonials-page-hero {
    background: var(--warm-white); padding: 5rem 5vw 3rem; text-align: center;
  }
  .testimonials-page-hero p { max-width: 600px; margin: 0 auto; }

  .testimonials-featured {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2rem; margin-top: 3rem;
  }
  .testimonial-featured {
    background: white; border-radius: var(--radius);
    padding: 2.5rem; box-shadow: var(--shadow);
    position: relative; overflow: hidden;
    border-top: 3px solid var(--sage);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .testimonial-featured:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .testimonial-featured::before {
    content: '\201C';
    font-family: var(--font-display); font-size: 7rem;
    color: rgba(132,181,159,0.15); line-height: 0.8;
    position: absolute; top: 1rem; left: 1.25rem;
    pointer-events: none;
  }
  .testimonial-featured .t-text {
    font-style: italic; font-size: 0.95rem; line-height: 1.85;
    color: var(--mid); margin-bottom: 1.5rem; padding-top: 0.75rem;
    position: relative; z-index: 1;
  }
  .testimonial-featured .t-meta { display: flex; align-items: center; gap: 1rem; }
  .testimonial-featured .t-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--sage-light), var(--sage));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
  }
  .testimonial-featured .t-name { font-weight: 500; font-size: 0.9rem; color: var(--berry); }
  .testimonial-featured .t-detail { font-size: 0.78rem; color: var(--light-text); }
  .testimonial-featured .t-stars { color: var(--dusty); font-size: 0.8rem; margin-bottom: 0.5rem; }

  .testimonial-highlight {
    background: linear-gradient(135deg, var(--berry), var(--berry-deep));
    border-radius: var(--radius); padding: 3rem;
    text-align: center; grid-column: 1 / -1;
    position: relative; overflow: hidden;
  }
  .testimonial-highlight::before {
    content: '\201C';
    font-family: var(--font-display); font-size: 10rem;
    color: rgba(255,255,255,0.06); line-height: 0.8;
    position: absolute; top: 0.5rem; left: 2rem;
    pointer-events: none;
  }
  .testimonial-highlight .t-text {
    font-style: italic; font-size: 1.2rem; line-height: 1.8;
    color: rgba(255,255,255,0.9); margin-bottom: 1.5rem;
    max-width: 680px; margin-left: auto; margin-right: auto;
    position: relative; z-index: 1;
  }
  .testimonial-highlight .t-name { color: var(--sage-light); font-weight: 500; }
  .testimonial-highlight .t-detail { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
  .testimonial-highlight .t-stars { color: var(--dusty); font-size: 0.9rem; margin-bottom: 0.75rem; }

  .testimonials-wall {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem; margin-top: 3rem;
  }
  .testimonial-mini {
    background: white; border-radius: var(--radius);
    padding: 1.5rem; box-shadow: var(--shadow);
    border-left: 3px solid var(--dusty);
  }
  .testimonial-mini .t-text {
    font-style: italic; font-size: 0.88rem; line-height: 1.75;
    color: var(--mid); margin-bottom: 1rem;
  }
  .testimonial-mini .t-stars { color: var(--dusty); font-size: 0.75rem; margin-bottom: 0.5rem; }
  .testimonial-mini .t-name { font-size: 0.82rem; font-weight: 500; color: var(--berry); }
  .testimonial-mini .t-detail { font-size: 0.74rem; color: var(--light-text); }

  .testimonials-stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem; margin-top: 4rem;
  }
  .t-stat {
    text-align: center; background: var(--parchment);
    border-radius: var(--radius); padding: 2rem 1rem;
  }
  .t-stat-num {
    font-family: var(--font-display); font-size: 3rem;
    color: var(--berry); line-height: 1; margin-bottom: 0.4rem;
  }
  .t-stat-label { font-size: 0.8rem; color: var(--mid); }

  @media (max-width: 900px) {
    .testimonials-featured { grid-template-columns: 1fr; }
    .testimonial-highlight { grid-column: 1; }
    .testimonials-wall { grid-template-columns: 1fr; }
    .testimonials-stats { grid-template-columns: repeat(2, 1fr); }
  }

  /* ── PACKAGES ───────────────────────────────────────────────────────── */
  .packages-section {
    padding: 5rem 5vw; background: var(--berry-deep);
  }
  .packages-section .eyebrow { color: var(--dusty); }
  .packages-section h2 { color: white; }
  .packages-section > .container > p { color: rgba(255,255,255,0.6); max-width: 580px; margin: 0 auto 3.5rem; text-align: center; }
  .packages-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; max-width: 1100px; margin: 0 auto;
  }
  .package-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius); padding: 2rem 1.75rem;
    display: flex; flex-direction: column;
    transition: transform 0.3s, background 0.3s;
    position: relative; overflow: hidden;
  }
  .package-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.08); }
  .package-card.featured {
    border-color: var(--dusty);
    background: rgba(139,195,227,0.08);
  }
  .package-badge {
    position: absolute; top: 0; right: 0;
    background: var(--dusty); color: var(--berry-deep);
    font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 0.35rem 0.85rem;
    border-radius: 0 var(--radius) 0 var(--radius);
    font-family: var(--font-body);
  }
  .package-name {
    font-family: var(--font-display); font-size: 1.5rem;
    color: white; margin-bottom: 0.4rem; font-weight: 400; line-height: 1.2;
  }
  .package-tagline {
    font-family: var(--font-body); font-size: 0.78rem;
    color: rgba(255,255,255,0.45); margin-bottom: 1.5rem;
    letter-spacing: 0.04em; text-transform: uppercase;
  }
  .package-includes {
    list-style: none; margin-bottom: 1.5rem; flex: 1;
  }
  .package-includes li {
    font-family: var(--font-body); font-size: 0.88rem;
    color: rgba(255,255,255,0.75); padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: flex; align-items: flex-start; gap: 0.65rem; line-height: 1.5;
  }
  .package-includes li:last-child { border-bottom: none; }
  .package-includes li::before {
    content: '✦'; color: var(--dusty); font-size: 0.55rem;
    flex-shrink: 0; margin-top: 5px;
  }
  .package-price {
    font-family: var(--font-display); font-size: 2.2rem;
    color: white; margin-bottom: 0.2rem; line-height: 1;
  }
  .package-price span {
    font-size: 0.8rem; font-family: var(--font-body);
    color: rgba(255,255,255,0.4); letter-spacing: 0.06em;
    text-transform: uppercase; margin-left: 4px;
  }
  .package-price-note {
    font-family: var(--font-body); font-size: 0.8rem;
    color: rgba(255,255,255,0.35); margin-bottom: 1.25rem;
  }
  .btn-package { width: 100%; justify-content: center; }
  .btn-package:hover { transform: translateY(-1px); }
  .package-card.featured .btn-package {
    background: var(--dusty); color: var(--berry-deep);
  }
  .package-card.featured .btn-package:hover { background: var(--dusty); }

  /* Add-ons strip */
  .addons-section {
    padding: 3rem 5vw 4rem; background: var(--forest-darker);
  }
  .addons-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem; max-width: 1100px; margin: 2rem auto 0;
  }
  
  .addon-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius); padding: 1.5rem;
    transition: background 0.2s;
  }
  .addon-card:hover { background: rgba(255,255,255,0.07); }
  .addon-icon { display: flex; font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--cream)}
  .addon-card h4 { font-size: 1.5rem; color: white; margin-bottom: 0.4rem; margin-left: 0.75rem;}
  .addon-card p { font-family: var(--font-body); font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.65; }
  .addon-price { font-family: var(--font-body); font-size: 0.8rem; color: var(--dusty); margin-top: 0.6rem; text-transform: uppercase; letter-spacing: 0.06em; }

  @media (max-width: 900px) {
    .packages-grid { grid-template-columns: 1fr; }
    .addons-grid { grid-template-columns: 1fr; }
  }

  /* ── ANIMATIONS ─────────────────────────────────────────────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes floatBlob {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
  }
  .hero-content > * {
    animation: fadeUp 0.7s ease both;
  }
  .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
  .hero-content > *:nth-child(2) { animation-delay: 0.2s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.3s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.4s; }
  .hero-content > *:nth-child(5) { animation-delay: 0.5s; }

  /* ── RESPONSIVE ─────────────────────────────────────────────────────── */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero { grid-template-columns: 1fr; text-align: center; }
    .hero-eyebrow { justify-content: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-badges { justify-content: center; }
    .hero-visual { display: none; }
    .values-inner { grid-template-columns: repeat(2, 1fr); }
    .how-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .about-hero { grid-template-columns: 1fr; }
    .about-photo { max-width: 280px; }
    .credentials-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .service-detail { grid-template-columns: 1fr; }
    .service-detail.reverse { direction: ltr; }
    .service-detail-visual { max-width: 220px; margin: 0 auto; }
    .resources-grid { grid-template-columns: 1fr; }
    .hotlines-grid { grid-template-columns: 1fr; }
    .booking-layout { grid-template-columns: 1fr; }
    .booking-sidebar { position: static; height: auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .values-inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
  }
