:root {
  --sage-deep: #1c3d4a;      /* deep ocean */
  --sage: #3a7d8c;            /* ocean teal */
  --sage-light: #7abdc8;      /* light seafoam */
  --cream: #f5f1e6;           /* warm sand +20% white */
  --cream-warm: #ebe0cd;      /* driftwood sand +20% white */
  --terracotta: #c06252;      /* sea coral */
  --terracotta-soft: #d8907a; /* soft coral blush */
  --ink: #1a2830;             /* deep ocean shadow */
  --ink-soft: #3a4d58;        /* ocean slate */
  --paper: #f9f5e9;           /* sea-washed sand +20% white */
  --moss: #1e5060;            /* deep kelp */
  --gold: #c4a05a;            /* sea-glass amber */

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter Tight', sans-serif;

  --max-w: 1280px;
  --radius-lg: 32px;
  --radius-md: 18px;
  --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}

/* Subtle grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* ---------- NAV ---------- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 242, 228, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(28, 61, 74, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 22px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 84px;
  width: auto;
  display: block;
}
.nav-logo-img {
  height: clamp(50px, 5.2vw, 66px);
  width: auto;
  display: block;
}
.footer-brand .logo-img {
  height: 59px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.nav-links {
  display: flex;
  gap: clamp(10px, 2vw, 36px);
  list-style: none;
  align-items: center;
  flex-wrap: nowrap;
}
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover { color: var(--cream); }
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: clamp(11px, 1.15vw, 14px);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--sage-deep); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0;
  height: 1.5px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.btn:hover::after { width: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--sage-deep);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--moss);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28, 61, 74, 0.25);
}
.btn-outline {
  background: transparent;
  color: var(--sage-deep);
  border: 1.5px solid var(--sage-deep);
}
.btn-outline:hover {
  background: var(--sage-deep);
  color: var(--cream);
}
.btn svg { width: 14px; height: 14px; }

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  width: 40px; height: 40px;
}
.mobile-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--sage-deep);
  margin: 5px 0;
  transition: transform 0.32s ease, opacity 0.22s ease, top 0.32s ease;
  position: absolute;
  left: 8px;
  transform-origin: center;
}
.mobile-toggle span:nth-child(1) { top: 11px; }
.mobile-toggle span:nth-child(2) { top: 18px; }
.mobile-toggle span:nth-child(3) { top: 25px; }

/* Animate to × when nav is open */
.nav-links.open ~ .mobile-toggle span:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
}
.nav-links.open ~ .mobile-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-links.open ~ .mobile-toggle span:nth-child(3) {
  top: 18px;
  transform: rotate(-45deg);
}
/* Make × visible — colour only, no background */
.nav-links.open ~ .mobile-toggle {
  z-index: 10001;
  position: relative;
}
.nav-links.open ~ .mobile-toggle span {
  background: var(--terracotta);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 189, 200, 0.38) 0%, transparent 70%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 144, 120, 0.22) 0%, transparent 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.20fr 1.50fr;
  gap: 2px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(28, 61, 74, 0.07);
  border-radius: 100px;
  color: var(--sage-deep);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .hero-eyebrow { font-size: 8.5px; gap: 6px; padding: 6px 12px; letter-spacing: 0.04em; }
  .eyebrow-sep { height: 10px; }
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.eyebrow-sep {
  width: 1px; height: 14px;
  background: rgba(28,61,74,0.20);
  border-radius: 1px;
  flex-shrink: 0;
}
.eyebrow-accent {
  color: var(--terracotta);
  font-weight: 600;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.035em;
  color: var(--sage-deep);
  margin-bottom: 28px;
  font-variation-settings: "opsz" 144;
}
.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 300;
}
.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 624px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(16px, 2.8vw, 36px);
  padding-top: 28px;
  border-top: 1px solid rgba(28, 61, 74, 0.15);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 500;
  color: var(--sage-deep);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.stat-label {
  font-size: clamp(9px, 0.85vw, 11px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-top: 3px;
  line-height: 1.5;
}

/* Hero photo */
.hero-visual {
  position: relative;
  aspect-ratio: 5/6;
  width: 100%;
  max-width: 80%;
  margin-left: auto;
  transform: translateX(22%);
}
@keyframes morph {
  0%, 100% { border-radius: 54% 46% 50% 50% / 50% 54% 46% 50%; }
  25%       { border-radius: 46% 54% 52% 48% / 52% 46% 54% 48%; }
  50%       { border-radius: 50% 50% 46% 54% / 48% 52% 52% 48%; }
  75%       { border-radius: 52% 48% 54% 46% / 54% 48% 46% 52%; }
}
/* Decorative ring behind the photo */
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 54% 46% 50% 50% / 50% 54% 46% 50%;
  animation: morph 12s ease-in-out infinite;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--cream-warm) 100%);
  z-index: 0;
  opacity: 0.5;
}
.hero-photo-frame {
  position: absolute;
  inset: 0;
  border-radius: 54% 46% 50% 50% / 50% 54% 46% 50%;
  animation: morph 12s ease-in-out infinite;
  overflow: hidden;
  z-index: 1;
  box-shadow:
    0 40px 80px -20px rgba(28, 61, 74, 0.45),
    0 0 0 2px rgba(122, 189, 200, 0.40);
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
/* ── Hero play button ── */
.hero-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hero-play-ring {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(246,241,232,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(246,241,232,0.35);
  display: grid;
  place-items: center;
  position: relative;
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero-play-ring::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(246,241,232,0.15);
  animation: play-pulse 2.4s ease-out infinite;
}
.hero-play svg {
  width: 32px;
  height: 32px;
  color: var(--cream);
  margin-left: 3px;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.3));
}
.hero-play-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246,241,232,0.75);
  white-space: nowrap;
}
.hero-play:hover .hero-play-ring {
  background: rgba(246,241,232,0.22);
  transform: scale(1.08);
}
@keyframes play-pulse {
  0%   { opacity: 0.6; transform: scale(1); }
  70%  { opacity: 0;   transform: scale(1.45); }
  100% { opacity: 0;   transform: scale(1.45); }
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(28, 61, 74, 0.04) 0%,
    transparent 45%,
    rgba(26, 40, 48, 0.28) 100%
  );
}
.hero-badge {
  position: absolute;
  background: var(--cream);
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge.bdg-1 {
  top: 12%;
  left: -5%;
  animation: float 6s ease-in-out infinite;
}
.hero-badge.bdg-2 {
  bottom: 14%;
  right: -5%;
  animation: float 6s ease-in-out infinite 2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.badge-icon {
  width: 36px; height: 36px;
  background: var(--cream-warm);
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--terracotta);
}
.badge-text { font-size: 12px; }
.badge-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--sage-deep);
  font-weight: 600;
}

/* ---------- SECTION HEADERS ---------- */
.section {
  padding: 110px 0;
  position: relative;
}
.section-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 16px;
  display: inline-block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--sage-deep);
  margin-bottom: 20px;
  max-width: 700px;
}
.section-title em { font-style: italic; color: var(--terracotta); }
.section-intro {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 580px;
  margin-bottom: 60px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 60px;
}
.section-head .text { max-width: 640px; }
.section-head .section-intro { margin-bottom: 0; }

/* ---------- WHY CHOOSE US ---------- */
.why {
  background: var(--cream);
  border-radius: var(--radius-lg);
  margin: 0 32px;
  padding: 100px 60px;
}
/* --- Why Accordion --- */
.why-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.why-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(28,61,74,0.10);
  background: var(--paper);
}
.why-summary {
  position: relative;
  height: 130px;
  transition: height 0.4s ease 0s;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.why-summary::-webkit-details-marker { display: none; }
.why-summary::marker { display: none; }
.why-summary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(20,50,65,0.80) 0%, rgba(20,50,65,0.48) 60%, rgba(20,50,65,0.32) 100%);
  transition: background 0.4s ease 0s;
}
.why-h3-row {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.why-icon {
  position: relative;
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--cream-warm);
  z-index: 1;
  box-shadow: none;
  top: auto; bottom: auto; left: auto;
}
.why-icon svg { width: 22px; height: 22px; }
.why-summary h3 {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.015em;
  margin: 0; padding: 0;
}
.why-chevron {
  position: relative; z-index: 1;
  width: 22px; height: 22px;
  color: rgba(255,255,255,0.65);
  flex-shrink: 0;
  transition: transform 0.4s ease 0s;
}
.why-item[open] .why-summary { height: 253px; }
.why-item[open] .why-chevron { transform: rotate(180deg); }
.why-item.closing .why-chevron { transform: rotate(0deg) !important; }

.why-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease 0s;
}
.why-item[open] .why-body { max-height: 520px; }
.why-item.closing .why-body { max-height: 0 !important; }

.why-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 28px 26px 28px;
}
.why-body li {
  font-size: 15px;
  color: var(--ink-soft);
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}
.why-body li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--terracotta-soft);
}
.why-body li strong { color: var(--sage-deep); font-weight: 600; }

/* why-img hidden on mobile/tablet — only used on desktop */
.why-img { display: none; }
/* why-bar: on mobile/tablet acts as a transparent pass-through flex row */
.why-bar {
  display: contents;
}

/* ---- DESKTOP: static card grid ---- */
@media (min-width: 881px) {
  .why-accordion {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .why-item {
    cursor: default;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
  }
  .why-item:hover { box-shadow: 0 8px 32px rgba(28,61,74,0.13); }

  /* Kill all accordion behaviour */
  .why-summary {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: auto !important;
    padding: 0;
    background-image: none !important;
    cursor: default;
    pointer-events: none;
    transition: none;
  }
  .why-summary::before { display: none; }
  .why-item .why-body,
  .why-item[open] .why-body,
  .why-item.closing .why-body {
    max-height: none !important;
    transition: none;
  }

  /* Image — tall, with fade gradient at bottom */
  .why-img {
    display: block;
    width: 100%;
    height: 312px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    position: relative;
  }
  .why-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent 0%, var(--paper) 100%);
  }

  /* Pull why-bar UP over the gradient so icon sits on the fade */
  .why-bar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0 22px 4px;
    margin-top: -52px;
    position: relative;
    z-index: 2;
  }

  /* Icon chip — restored box style, now inline with h3 */
  .why-h3-row {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-top: 2px;
  }
  .why-icon {
    background: rgba(246,241,232,0.92);
    color: var(--terracotta);
    width: 44px; height: 44px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(28,61,74,0.10);
  }
  .why-icon svg { width: 22px; height: 22px; }

  .why-summary h3 {
    color: var(--sage-deep);
    font-size: 21px;
    margin-top: 0;
  }
  .why-chevron { display: none; }

  /* Bullets always visible — override <details> hidden state */
  .why-body {
    display: block !important;
    border-top: none;
  }
  .why-body ul { padding: 4px 24px 26px; }
  .why-body li { font-size: 14px; }
}

/* ---------- SERVICES TAGS / TICKER ---------- */
/* ============================================================
   SERVICES STRIP — review marquee
   ============================================================ */
.services-strip {
  background: var(--sage-deep);
  overflow: hidden;
  padding: 44px 0;
  position: relative;
}

/* Fade edges left & right */
.services-strip::before,
.services-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.services-strip::before { left:  0; background: linear-gradient(to right, var(--sage-deep), transparent); }
.services-strip::after  { right: 0; background: linear-gradient(to left,  var(--sage-deep), transparent); }

/* Scrolling track */
.rv-track { overflow: hidden; }
.rv-inner {
  display: flex;
  gap: 20px;
  width: max-content;
  align-items: stretch;
  animation: rv-scroll 65s linear infinite;
  will-change: transform;
}
.services-strip:hover .rv-inner { animation-play-state: paused; }

@keyframes rv-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Review card */
.rv-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(246,241,232,0.10);
  border-radius: 14px;
  padding: 22px 24px 20px;
  width: 290px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.25s ease;
}
.rv-card:hover { background: rgba(255,255,255,0.09); }

/* Stars + source */
.rv-top {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rv-stars {
  color: #f0b429;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1;
}
.rv-source {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246,241,232,0.35);
}

/* Hook headline */
.rv-hook {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin: 0;
}

/* Review text */
.rv-text {
  font-size: 12.5px;
  color: rgba(246,241,232,0.52);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* Author */
.rv-author {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--terracotta-soft);
  margin-top: 4px;
}
.rv-author span {
  font-weight: 400;
  color: rgba(246,241,232,0.35);
}

/* ---------- SERVICES PREVIEW (homepage) ---------- */
.services-preview { background: var(--paper); padding-top: 35px; }

.services-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(28,61,74,0.10);
}

.srv-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 30px;
  border-bottom: 1px solid rgba(28,61,74,0.10);
  border-right: 1px solid rgba(28,61,74,0.10);
  text-decoration: none;
  background: var(--paper);
  transition: background 0.22s ease;
}
.srv-card:nth-child(2n) { border-right: none; }
.srv-card:nth-last-child(-n+2) { border-bottom: none; }
.srv-card:hover { background: var(--cream); }

.srv-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: rgba(58,125,140,0.08);
  border-radius: 9px;
  display: grid; place-items: center;
  color: var(--sage);
  transition: background 0.22s ease;
}
.srv-card:hover .srv-icon { background: rgba(58,125,140,0.15); }
.srv-icon svg { width: 19px; height: 19px; }

.srv-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  color: rgba(28,61,74,0.20);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  width: 34px;
}

.srv-info { flex: 1; min-width: 0; }
.srv-info h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--sage-deep);
  margin: 0 0 4px;
  letter-spacing: -0.015em;
}
.srv-info p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.45;
}

.srv-arrow {
  width: 18px;
  height: 18px;
  color: var(--sage);
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.srv-card:hover .srv-arrow { opacity: 1; transform: translateX(0); }

.srv-thumb {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  margin-left: 6px;
}
.srv-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.srv-card:hover .srv-thumb img { transform: scale(1.07); }

/* ---------- SERVICES PAGE HERO ---------- */
.services-page-hero {
  padding: 100px 0 70px;
  background: var(--paper);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px 8px 12px;
  border-radius: 100px;
  border: 1px solid rgba(28,61,74,0.18);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  text-decoration: none;
  margin-bottom: 44px;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.back-link:hover {
  border-color: var(--sage-deep);
  color: var(--sage-deep);
  transform: translateX(-3px);
}
.back-link svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.back-link:hover svg { transform: translateX(-2px); }

/* ---------- DETAILED SERVICES (services.html) ---------- */
.services-detail {
  background: var(--paper);
}
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 60px 0;
  border-top: 1px solid rgba(28, 61, 74, 0.12);
  align-items: start;
}
.service-block:first-child { border-top: none; }
.service-block.reverse {
  direction: rtl;
}
.service-block.reverse > * { direction: ltr; }

.service-visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  background: var(--cream);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background-size: cover;
  background-position: center;
}
.service-visual.v-hydro,
.service-visual.v-nutri { background: #f3ede0; }

.hydro-collage,
.nutri-collage {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 3px;
  background: #f3ede0;
  box-sizing: border-box;
  z-index: 0;
}
.collage-top {
  flex: 3;
  min-height: 0;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.collage-bottom {
  flex: 2;
  min-height: 0;
  display: flex;
  gap: 3px;
}
.collage-bottom > div {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.collage-bottom > div:first-child { border-radius: 0 0 0 10px; }
.collage-bottom > div:last-child  { border-radius: 0 0 10px 0; }
.hydro-collage img,
.nutri-collage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.collage-top:hover img,
.collage-bottom > div:hover img { transform: scale(1.07); }
/* ========================================
   Unified slideshow — pure opacity fade
   2-img: 5s cycle (2.5s each)
   3-img: 7.5s cycle (2.5s each)
   ======================================== */

/* 2-image keyframes */
@keyframes sv2-show {
  0%  { opacity:1; transform:scale(1.0);  }
  42% { opacity:1; transform:scale(1.05); }
  50% { opacity:0; transform:scale(1.05); }
  92% { opacity:0; transform:scale(1.0);  }
  100%{ opacity:1; transform:scale(1.0);  }
}
@keyframes sv2-hide {
  0%  { opacity:0; transform:scale(1.0);  }
  42% { opacity:0; transform:scale(1.0);  }
  50% { opacity:1; transform:scale(1.0);  }
  92% { opacity:1; transform:scale(1.05); }
  100%{ opacity:0; transform:scale(1.05); }
}
@-webkit-keyframes sv2-show {
  0%  { opacity:1; -webkit-transform:scale(1.0);  }
  42% { opacity:1; -webkit-transform:scale(1.05); }
  50% { opacity:0; -webkit-transform:scale(1.05); }
  92% { opacity:0; -webkit-transform:scale(1.0);  }
  100%{ opacity:1; -webkit-transform:scale(1.0);  }
}
@-webkit-keyframes sv2-hide {
  0%  { opacity:0; -webkit-transform:scale(1.0);  }
  42% { opacity:0; -webkit-transform:scale(1.0);  }
  50% { opacity:1; -webkit-transform:scale(1.0);  }
  92% { opacity:1; -webkit-transform:scale(1.05); }
  100%{ opacity:0; -webkit-transform:scale(1.05); }
}

/* 3-image keyframe — cross-fade, always ≥1 image visible */
@keyframes sv3-xfade {
  0%   { opacity:0; transform:scale(1.0);  }
  4%   { opacity:1; transform:scale(1.0);  }
  28%  { opacity:1; transform:scale(1.05); }
  40%  { opacity:0; transform:scale(1.05); }
  100% { opacity:0; transform:scale(1.0);  }
}
@-webkit-keyframes sv3-xfade {
  0%   { opacity:0; -webkit-transform:scale(1.0);  }
  4%   { opacity:1; -webkit-transform:scale(1.0);  }
  28%  { opacity:1; -webkit-transform:scale(1.05); }
  40%  { opacity:0; -webkit-transform:scale(1.05); }
  100% { opacity:0; -webkit-transform:scale(1.0);  }
}

/* Shared slide container + img base */
.hydro-slide, .laser-slide, .tens-slide, .acu-slide, .house-slide {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 0;
}
.hydro-slide img, .laser-slide img, .tens-slide img, .acu-slide img, .house-slide img {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  will-change: opacity, transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* --- Laser (2-img, ~4.8s) --- */
.service-visual.v-laser { background: var(--cream); }
.laser-slide img:nth-child(1) { opacity:1; -webkit-animation:sv2-show 4.8s ease-in-out infinite; animation:sv2-show 4.8s ease-in-out infinite; }
.laser-slide img:nth-child(2) { opacity:0; -webkit-animation:sv2-hide 4.8s ease-in-out infinite; animation:sv2-hide 4.8s ease-in-out infinite; }
@media(prefers-reduced-motion:reduce){
  .laser-slide img:nth-child(1){animation:none;opacity:1}
  .laser-slide img:nth-child(2){display:none}
}

/* --- TENS (2-img, ~5.3s) --- */
.service-visual.v-tens { background: var(--cream); }
.tens-slide img:nth-child(1) { opacity:1; -webkit-animation:sv2-show 5.3s ease-in-out infinite; animation:sv2-show 5.3s ease-in-out infinite; }
.tens-slide img:nth-child(2) { opacity:0; -webkit-animation:sv2-hide 5.3s ease-in-out infinite; animation:sv2-hide 5.3s ease-in-out infinite; }
@media(prefers-reduced-motion:reduce){
  .tens-slide img:nth-child(1){animation:none;opacity:1}
  .tens-slide img:nth-child(2){display:none}
}

/* --- Acupuncture (3-img, 7.5s) --- */
.service-visual.v-acu { background: var(--cream); }
.hydro-slide img { opacity:0; will-change:opacity,transform; }
.hydro-slide img:nth-child(1) { -webkit-animation:sv3-xfade 7.5s ease-in-out 0s    infinite; animation:sv3-xfade 7.5s ease-in-out 0s    infinite; }
.hydro-slide img:nth-child(2) { -webkit-animation:sv3-xfade 7.5s ease-in-out -5s   infinite; animation:sv3-xfade 7.5s ease-in-out -5s   infinite; }
.hydro-slide img:nth-child(3) { -webkit-animation:sv3-xfade 7.5s ease-in-out -2.5s infinite; animation:sv3-xfade 7.5s ease-in-out -2.5s infinite; }

.acu-slide img { opacity:0; will-change:opacity,transform; }
.acu-slide img:nth-child(1) { -webkit-animation:sv3-xfade 7.5s ease-in-out 0s    infinite; animation:sv3-xfade 7.5s ease-in-out 0s    infinite; }
.acu-slide img:nth-child(2) { -webkit-animation:sv3-xfade 7.5s ease-in-out -5s   infinite; animation:sv3-xfade 7.5s ease-in-out -5s   infinite; }
.acu-slide img:nth-child(3) { -webkit-animation:sv3-xfade 7.5s ease-in-out -2.5s infinite; animation:sv3-xfade 7.5s ease-in-out -2.5s infinite; }
@media(prefers-reduced-motion:reduce){
  .hydro-slide img:nth-child(1){animation:none;opacity:1}
  .hydro-slide img:nth-child(2),.hydro-slide img:nth-child(3){display:none}
  .acu-slide img:nth-child(1){animation:none;opacity:1}
  .acu-slide img:nth-child(2),.acu-slide img:nth-child(3){display:none}
}

/* --- Housecall (3-img, 8s) --- */
.service-visual.v-house { background: var(--cream); }
.house-slide img { opacity:0; will-change:opacity,transform; }
.house-slide img:nth-child(1) { -webkit-animation:sv3-xfade 8s ease-in-out 0s                infinite; animation:sv3-xfade 8s ease-in-out 0s                infinite; }
.house-slide img:nth-child(2) { -webkit-animation:sv3-xfade 8s ease-in-out -5.33s            infinite; animation:sv3-xfade 8s ease-in-out -5.33s            infinite; }
.house-slide img:nth-child(3) { -webkit-animation:sv3-xfade 8s ease-in-out -2.67s            infinite; animation:sv3-xfade 8s ease-in-out -2.67s            infinite; }
@media(prefers-reduced-motion:reduce){
  .house-slide img:nth-child(1){animation:none;opacity:1}
  .house-slide img:nth-child(2),.house-slide img:nth-child(3){display:none}
}

.service-tag-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.service-h2-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.service-h2-row h2 { margin-bottom: 0; }
.service-icon {
  display: grid;
  place-items: center;
  color: var(--sage-deep);
  flex-shrink: 0;
}
.service-icon svg {
  width: 36px;
  height: 36px;
}
.service-num { display: none; }

.service-content h3 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  color: var(--sage-deep);
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  line-height: 1;
}
.service-tag {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--terracotta);
  font-weight: 600;
}
.service-lead {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  line-height: 1.7;
}
.service-subhead {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--moss);
  margin-bottom: 14px;
  margin-top: 24px;
  font-style: italic;
}
.service-content p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 14px;
}
.service-conditions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.condition-pill {
  font-size: 13px;
  padding: 7px 14px;
  background: var(--cream-warm);
  color: var(--ink);
  border-radius: 100px;
  border: 1px solid rgba(28, 61, 74, 0.10);
}

/* ---------- TEAM ---------- */
.team-section {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
}
.team-hashtags {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--terracotta);
  font-size: 18px;
  margin-bottom: 60px;
  letter-spacing: -0.01em;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.team-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 40px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  align-items: start;
  border: 1px solid rgba(28, 61, 74, 0.08);
  transition: transform 0.3s;
}
.team-card:hover { transform: translateY(-4px); }
.team-avatar {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--cream-warm);
  display: grid; place-items: center;
  overflow: hidden;
  position: relative;
}
.team-avatar svg { width: 80%; height: 80%; color: var(--sage-deep); }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-name {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--sage-deep);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.team-role {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 18px;
}
.team-creds {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.team-creds li {
  font-size: 13px;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
}
.team-creds li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--sage-light);
}

/* ---------- SPACE / EXPERIENCE ---------- */
.space-section {
  background: linear-gradient(135deg, var(--sage-deep) 0%, var(--moss) 100%);
  color: var(--cream);
  border-radius: var(--radius-lg);
  margin: 0 32px;
  padding: 60px 60px;
  position: relative;
  overflow: hidden;
}
.space-section::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 189, 200, 0.22), transparent 70%);
}
.space-section .section-eyebrow { color: var(--terracotta-soft); }
.space-section .section-title { color: var(--cream); }
.space-section .section-title em { color: var(--terracotta-soft); }
.space-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}
.space-header {
  flex: 0 0 300px;
}
.space-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 0;
}
.space-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.space-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.space-icon {
  width: 44px; height: 44px;
  background: rgba(122, 189, 200, 0.20);
  color: var(--sage-light);
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.space-icon svg { width: 22px; height: 22px; }
.space-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.space-card p {
  font-size: 14px;
  color: rgba(243, 237, 224, 0.78);
  line-height: 1.55;
}

/* ---------- PACKAGES ---------- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.package-card {
  background: var(--cream);
  padding: 40px 36px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(28, 61, 74, 0.08);
  position: relative;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}
.package-card.featured {
  background: linear-gradient(135deg, var(--sage-deep) 0%, var(--moss) 100%);
  color: var(--cream);
  transform: scale(1.03);
}
.package-card.featured h3,
.package-card.featured .package-tag { color: var(--cream); }
.package-card.featured .package-tag { background: rgba(255,255,255,0.15); color: var(--terracotta-soft); }
.package-card.featured li { color: rgba(243, 237, 224, 0.85); }
.package-card.featured li::before { background: var(--terracotta-soft); }
.package-card.featured .btn-outline { color: var(--cream); border-color: var(--cream); }
.package-card.featured .btn-outline:hover { background: var(--cream); color: var(--sage-deep); }

.package-card:hover { transform: translateY(-6px); }
.package-card.featured:hover { transform: scale(1.03) translateY(-6px); }

.package-tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: var(--cream-warm);
  color: var(--terracotta);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
  font-weight: 600;
  align-self: flex-start;
}
.package-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--sage-deep);
  margin-bottom: 24px;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.package-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex-grow: 1;
}
.package-card li {
  font-size: 14px;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}
.package-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terracotta-soft);
}
.pkg-img {
  margin: -40px -36px 28px;
  height: 160px;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  position: relative;
  flex-shrink: 0;
}
.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.package-card:hover .pkg-img img { transform: scale(1.04); }
.pkg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(28,61,74,0.18) 100%);
}
.package-card.featured .pkg-img img {
  filter: brightness(0.72) saturate(0.75);
}

/* ---------- CTA / CONTACT ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--cream) 100%);
  border-radius: var(--radius-lg);
  margin: 100px 32px;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(216, 144, 120, 0.18), transparent 70%);
  border-radius: 50%;
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  color: var(--sage-deep);
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  font-weight: 400;
}
.cta-content h2 em { font-style: italic; color: var(--terracotta); }
.cta-content p {
  color: var(--ink-soft);
  margin-bottom: 32px;
  font-size: 17px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: var(--ink);
}
.contact-icon {
  width: 40px; height: 40px;
  background: var(--paper);
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--terracotta);
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-row strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 2px;
  font-weight: 600;
}

/* ---------- NEWSLETTER ---------- */
.newsletter {
  background: var(--moss);
  color: var(--cream);
  padding: 80px 0;
  margin-top: 0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.newsletter h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--cream);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1.1;
  font-weight: 400;
}
.newsletter h3 em { color: var(--terracotta-soft); font-style: italic; }
.newsletter p {
  color: rgba(243, 237, 224, 0.8);
  font-size: 16px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  padding: 8px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 22px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(243, 237, 224, 0.5); }
.newsletter-form button {
  background: var(--terracotta);
  color: var(--cream);
  border: none;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}
.newsletter-form button:hover { background: var(--terracotta-soft); color: var(--ink); }
.newsletter-consent {
  font-size: 12px;
  color: rgba(243, 237, 224, 0.6);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink);
  color: rgba(243, 237, 224, 0.7);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.6fr;
  gap: 60px;
  margin-bottom: 60px;
}
/* Tablet: shrink Navigate column, widen Hours+Contact column */
@media (min-width: 881px) and (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1.2fr 0.6fr 1.9fr; gap: 36px; }
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.65; max-width: 320px; }
footer h5 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer a {
  color: rgba(243, 237, 224, 0.65);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
footer a:hover { color: var(--terracotta-soft); }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
}
.hours-row span:first-child { color: rgba(243, 237, 224, 0.5); white-space: nowrap; }
.hours-row span:last-child { color: var(--cream); font-weight: 500; white-space: nowrap; }
/* Footer right column: Hours + Contact + Map */
.footer-right-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-right-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}

/* Footer map */
.footer-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.09);
  opacity: 0.80;
  transition: opacity 0.3s ease;
}
.footer-map:hover { opacity: 1; }
.footer-map iframe {
  width: 100%;
  height: 160px;
  display: block;
  border: 0;
  /* 3-colour palette: sage-deep bg, cream labels, terracotta pin */
  filter:
    grayscale(100%)
    brightness(0.45)
    contrast(1.2)
    sepia(40%)
    hue-rotate(155deg)
    saturate(2.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(243, 237, 224, 0.4);
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--cream);
  transition: all 0.3s;
}
.social-icon:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
}
.social-icon svg { width: 18px; height: 18px; }

/* ---------- ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 880px) {
  .hero-play-ring { width: 90px; height: 90px; }
  .hero-play svg  { width: 32px; height: 32px; }
  .hero-play-label { font-size: 11px; }
  .container { padding: 0 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 83vw; width: 83vw; margin: 0 auto; transform: none; aspect-ratio: 5/6; }
  /* ---------- WHY US — mobile / tablet reveal-card redesign ---------- */
  .why { padding: 56px 20px; margin: 0 12px; }
  .why-accordion { gap: 10px; }

  .why-item {
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(28,61,74,0.07);
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
  }
  .why-item[open] {
    box-shadow: 0 8px 32px rgba(28,61,74,0.13);
    border-color: rgba(58,125,140,0.22);
  }

  /* Closed: compact 70px strip — image hidden behind opaque overlay */
  .why-summary {
    height: 70px;
    padding: 0 18px;
    gap: 14px;
    transition: height 0.48s cubic-bezier(0.4, 0, 0.2, 1);
  }
  /* Opaque overlay hides the background photo when closed */
  .why-summary::before {
    background: var(--paper);
    transition: background 0.42s ease;
  }
  /* Dark text on light background when closed */
  .why-summary h3 {
    font-size: 15px;
    color: var(--sage-deep);
    transition: color 0.35s ease;
  }
  /* Icon chip: terracotta tint */
  .why-icon {
    background: rgba(192,98,82,0.10);
    color: var(--terracotta);
    transition: background 0.35s ease, color 0.35s ease;
  }
  /* Chevron always visible, terracotta, points down */
  .why-chevron {
    display: block;
    color: var(--terracotta);
    transition: transform 0.45s cubic-bezier(0.34, 1.0, 0.64, 1), color 0.35s ease;
  }
  /* Push chevron to the far right; min-width:0 lets h3 wrap within bounds */
  .why-h3-row { flex: 1; min-width: 0; }

  /* Open: expand to 200px, reveal photo with dark gradient */
  .why-item[open] .why-summary {
    height: 200px;
  }
  .why-item[open] .why-summary::before {
    background: linear-gradient(
      to bottom,
      rgba(20,50,65,0.72) 0%,
      rgba(20,50,65,0.42) 52%,
      rgba(20,50,65,0.74) 100%
    );
  }
  .why-item[open] .why-summary h3 { color: #fff; }
  .why-item[open] .why-icon {
    background: rgba(255,255,255,0.15);
    color: var(--cream-warm);
  }
  .why-item[open] .why-chevron {
    transform: rotate(180deg);
    color: rgba(255,255,255,0.72);
  }

  /* Closing: snap back to closed appearance while height animates */
  .why-item.closing .why-summary { height: 70px; }
  .why-item.closing .why-summary::before { background: var(--paper); }
  .why-item.closing .why-summary h3 { color: var(--sage-deep); }
  .why-item.closing .why-icon {
    background: rgba(192,98,82,0.10);
    color: var(--terracotta);
  }
  .why-item.closing .why-chevron {
    transform: rotate(0deg) !important;
    color: var(--terracotta);
  }

  /* Body: slide + fade in from just above */
  .why-body {
    opacity: 0;
    transform: translateY(-6px);
    transition:
      max-height 0.48s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.3s ease 0.1s,
      transform 0.38s ease 0.08s;
  }
  .why-item[open] .why-body {
    max-height: 520px;
    opacity: 1;
    transform: translateY(0);
  }
  .why-item.closing .why-body {
    max-height: 0 !important;
    opacity: 0 !important;
    transform: translateY(-6px) !important;
  }
  .services-grid { grid-template-columns: 1fr; }
  .srv-card { border-right: none; }
  .srv-card:nth-last-child(-n+2) { border-bottom: 1px solid rgba(28,61,74,0.10); }
  .srv-card:last-child { border-bottom: none; }
  .srv-arrow { opacity: 1; transform: translateX(0); }
  .srv-thumb { display: block; }
  .service-block { grid-template-columns: 1fr; gap: 32px; }
  .service-block.reverse { direction: ltr; }
  .service-visual { aspect-ratio: 4/3; }
  .acu-slide img:nth-child(3) { object-position: center 20%; }
  .laser-slide img:nth-child(2) { object-position: center 80%; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 120px 1fr; gap: 28px; padding: 28px; }
  .team-avatar { width: 120px; height: 120px; }
  .space-inner { flex-direction: column; gap: 36px; }
  .space-header { flex: none; }
  .space-grid { grid-template-columns: repeat(2, 1fr); }
  .space-section { padding: 50px 32px; margin: 0 16px; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }
  .package-card.featured:hover { transform: translateY(-6px); }
  .cta-section { grid-template-columns: 1fr; padding: 60px 32px; margin: 70px 16px; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .nav-links { display: none; }
  .mobile-toggle { display: block; }

  /* Remove backdrop-filter when menu is open so position:fixed works relative to viewport */
  nav:has(.nav-links.open) {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--paper);
    border-bottom-color: transparent;
  }

  /* ── Full-screen overlay menu ── */
  /* z-index:99 < nav z-index:100 so logo + × stay on top */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 99;
    background: var(--paper);
    padding: 90px 32px 48px;
    gap: 0;
    overflow: hidden;
    animation: nav-fade-in 0.3s ease forwards;
  }

  /* Decorative brand blobs */
  .nav-links.open::before {
    content: '';
    position: absolute;
    bottom: -80px; right: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122,189,200,0.24) 0%, transparent 65%);
    pointer-events: none;
  }
  .nav-links.open::after {
    content: '';
    position: absolute;
    top: 30px; left: -50px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192,98,82,0.14) 0%, transparent 65%);
    pointer-events: none;
  }

  /* Each menu item row */
  .nav-links.open li {
    width: 100%;
    max-width: 400px;
    text-align: center;
    border-bottom: 1px solid rgba(28,61,74,0.08);
    opacity: 0;
    animation: nav-item-in 0.42s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .nav-links.open li:last-child { border-bottom: none; margin-top: 28px; }

  /* Staggered entrance */
  .nav-links.open li:nth-child(1) { animation-delay: 0.06s; }
  .nav-links.open li:nth-child(2) { animation-delay: 0.11s; }
  .nav-links.open li:nth-child(3) { animation-delay: 0.16s; }
  .nav-links.open li:nth-child(4) { animation-delay: 0.21s; }
  .nav-links.open li:nth-child(5) { animation-delay: 0.26s; }
  .nav-links.open li:nth-child(6) { animation-delay: 0.31s; }
  .nav-links.open li:nth-child(7) { animation-delay: 0.36s; }
  .nav-links.open li:nth-child(8) { animation-delay: 0.41s; }

  /* Menu link typography */
  .nav-links.open li a {
    display: block;
    padding: 13px 0;
    font-family: var(--font-display);
    font-size: clamp(22px, 6vw, 32px);
    font-weight: 400;
    color: var(--sage-deep);
    letter-spacing: -0.02em;
    line-height: 1;
    font-variation-settings: "opsz" 72;
    white-space: nowrap;
    transition: color 0.2s ease;
  }
  .nav-links.open li a:hover { color: var(--terracotta); }
  .nav-links.open li a::after { display: none; }

  /* Book Now pill — last li */
  .nav-links.open li:last-child a {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 15px 44px;
    border-radius: 100px;
    background: var(--sage-deep);
    color: var(--cream) !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  }
  .nav-links.open li:last-child a:hover {
    background: var(--moss);
    color: var(--cream) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(28,61,74,0.22);
  }

  @keyframes nav-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  @keyframes nav-item-in {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .section { padding: 70px 0; }
  .rv-card { width: 250px; padding: 18px 18px 16px; }
  .rv-hook { font-size: 14px; }
  .rv-text { font-size: 12px; }
  .services-strip { padding: 32px 0; }
  .service-content h3 { font-size: 32px; }
  .hero { padding: 60px 0 80px; }
  .hero-stats { gap: clamp(10px, 2.5vw, 20px); }
  .hero-visual { max-width: 83vw; aspect-ratio: 5/6; }
  .hero-badge.bdg-1 { top: 10%; left: 16px; right: auto; bottom: auto; }
  .hero-badge.bdg-2 { bottom: 10%; right: 16px; left: auto; top: auto; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .space-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 1fr; text-align: center; }
  .team-avatar { margin: 0 auto; }
  .team-creds li { padding-left: 0; }
  .team-creds li::before { display: none; }
  .newsletter-form { flex-direction: column; border-radius: var(--radius-md); }
  .newsletter-form button { width: 100%; }
  .hero-visual { max-width: 90vw; transform: none; }
  .hero-badge { padding: 10px 12px; gap: 8px; }
  .hero-badge.bdg-1 { top: 10%; left: 12px; right: auto; bottom: auto; }
  .hero-badge.bdg-2 { bottom: 10%; right: 12px; left: auto; top: auto; }
}

@media (min-width: 981px) {
  .hero-photo { object-position: 75% 18%; }
  .hero-visual { max-width: 80%; transform: translateX(12%); }
}

/* ---------- GALLERY ---------- */
.gallery-strip { margin: 20px 0 0; overflow: hidden; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
}
.gallery-thumb {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 0;
  cursor: pointer;
}
.gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-thumb:hover img { transform: scale(1.07); }

/* Tap hint overlay on first thumb */
.gallery-hint {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(28,61,74,0.52);
  color: var(--cream);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.6s ease;
  animation: hint-pulse 1.8s ease-in-out infinite;
}
.gallery-thumb { position: relative; }
@keyframes hint-pulse {
  0%, 100% { background: rgba(28,61,74,0.52); }
  50%       { background: rgba(28,61,74,0.70); }
}


/* Gallery — tablet (up to 1180px covers iPad Pro 1024px): 4 cols × 2 rows, 30% shorter than mobile */
@media (max-width: 1180px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 3px; }
  .gallery-thumb { aspect-ratio: 1/1.26; }
}
/* Gallery — mobile: same */
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 3px; }
  .gallery-thumb { aspect-ratio: 1/1.8; }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  user-select: none;
}
.lb-close {
  position: fixed; top: 20px; right: 28px;
  background: none; border: none;
  color: #fff; font-size: 40px; line-height: 1;
  cursor: pointer; opacity: 0.8;
  transition: opacity 0.2s;
}
.lb-close:hover { opacity: 1; }
.lb-arrow {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); border: none;
  color: #fff; font-size: 26px;
  padding: 14px 18px; cursor: pointer;
  border-radius: 8px; transition: background 0.2s;
}
.lb-arrow:hover { background: rgba(255,255,255,0.28); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

/* ── Cookie Notice Banner ── */
#ark-cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99998;
  background: var(--ink);
  color: rgba(243,237,224,0.80);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  line-height: 1.5;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 1px solid rgba(255,255,255,0.07);
}
#ark-cookie-banner.visible { transform: translateY(0); }
#ark-cookie-banner p { margin: 0; flex: 1; min-width: 200px; }
#ark-cookie-banner a { color: var(--sage-light); text-decoration: underline; }
#ark-cookie-banner a:hover { color: var(--cream); }
.ark-cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.ark-cookie-accept {
  background: var(--terracotta);
  color: var(--cream);
  border: none;
  padding: 9px 20px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.ark-cookie-accept:hover { background: var(--terracotta-soft); transform: translateY(-1px); }
.ark-cookie-decline {
  background: transparent;
  color: rgba(243,237,224,0.55);
  border: 1px solid rgba(243,237,224,0.20);
  padding: 9px 16px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.ark-cookie-decline:hover { color: var(--cream); border-color: rgba(243,237,224,0.45); }
@media (max-width: 560px) {
  #ark-cookie-banner { flex-direction: column; align-items: flex-start; padding: 20px 20px 28px; }
  .ark-cookie-actions { width: 100%; }
  .ark-cookie-accept { flex: 1; text-align: center; }
  .ark-cookie-decline { flex: 1; text-align: center; }
}

/* ── Privacy Policy page ── */
.pp-hero {
  background: var(--sage-deep);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.pp-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,189,200,0.15) 0%, transparent 68%);
  pointer-events: none;
}
.pp-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246,241,232,0.45);
  margin-bottom: 16px;
}
.pp-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-variation-settings: "opsz" 72;
  margin-bottom: 14px;
}
.pp-hero-sub {
  font-size: 14px;
  color: rgba(246,241,232,0.52);
  max-width: 480px;
}
.pp-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px 100px;
}
.pp-body h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 500;
  color: var(--sage-deep);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 72;
  margin: 52px 0 14px;
  padding-top: 52px;
  border-top: 1px solid rgba(28,61,74,0.10);
}
.pp-body h2:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }
.pp-body p { font-size: 15px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 16px; }
.pp-body ul { padding-left: 20px; margin-bottom: 16px; }
.pp-body li { font-size: 15px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 6px; }
.pp-body a { color: var(--sage); text-decoration: underline; }
.pp-body a:hover { color: var(--sage-deep); }
.pp-cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 13.5px;
}
.pp-cookie-table th {
  background: var(--cream);
  color: var(--sage-deep);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 2px solid rgba(28,61,74,0.12);
}
.pp-cookie-table td {
  padding: 11px 14px;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(28,61,74,0.07);
  vertical-align: top;
}
.pp-cookie-table tr:last-child td { border-bottom: none; }
.pp-updated {
  font-size: 12px;
  color: rgba(28,61,74,0.40);
  margin-bottom: 48px;
}
