/* =========================================================
   Highgate Dental Centre — Stylesheet
   Palette: deep teal + fresh mint + warm coral accent
   ========================================================= */

:root {
  --teal-900: #0a2e2e;
  --teal-800: #0e3d3c;
  --teal-700: #145150;
  --teal-600: #1a6b68;
  --teal-500: #24908c;
  --mint-400: #35c4b7;
  --mint-300: #7ee0d5;
  --mint-100: #d8f5f0;
  --coral: #ff7a5c;
  --coral-dark: #f2603f;
  --gold: #f5b942;

  --ink: #10231f;
  --ink-soft: #4a5f5b;
  --cream: #f6faf8;
  --cream-2: #eef6f2;
  --white: #ffffff;
  --line: #e2ede8;

  --grad-primary: linear-gradient(120deg, var(--teal-600), var(--mint-400));
  --grad-hero: radial-gradient(120% 120% at 80% 0%, #eafaf6 0%, #f6faf8 45%, #ffffff 100%);

  --shadow-sm: 0 4px 14px rgba(10, 46, 46, 0.06);
  --shadow-md: 0 14px 40px rgba(10, 46, 46, 0.10);
  --shadow-lg: 0 30px 70px rgba(10, 46, 46, 0.16);

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 30px;
  --r-full: 999px;

  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 2.6rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 8rem) 0; }
.hide-sm { }
@media (max-width: 720px) { .hide-sm { display: none !important; } }
@media (max-width: 900px) { .hide-md { display: none !important; } }

/* ---------- Typography ---------- */
.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--teal-900);
}
.section-sub {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 46ch;
  margin-inline: auto;
}
.eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 0.9rem;
}
.text-grad {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 0.85rem;
  --pad-x: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: var(--pad-y) var(--pad-x);
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s;
  will-change: transform;
}
.btn--lg { --pad-y: 1.05rem; --pad-x: 2rem; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(26, 107, 104, 0.28);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(26, 107, 104, 0.36); }
.btn--ghost {
  background: var(--white);
  color: var(--teal-700);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--mint-400); box-shadow: var(--shadow-sm); }

/* ---------- Pills ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: var(--r-full);
  background: var(--mint-100);
  color: var(--teal-700);
  font-weight: 600;
  font-size: 0.85rem;
}
.pill--soft { background: var(--cream-2); color: var(--teal-600); font-weight: 500; }

.stars { color: var(--gold); letter-spacing: 2px; font-size: 0.95rem; }
.eyebrow, .stars { }

/* =========================================================
   Preloader
   ========================================================= */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: var(--teal-900);
  transition: opacity 0.6s ease, visibility 0.6s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.preloader__tooth { width: 56px; height: 56px; color: var(--mint-300); animation: pulse 1.2s ease-in-out infinite; }
.preloader__text { color: #cdeae5; font-family: var(--font-serif); letter-spacing: 0.03em; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.12); opacity: 0.7; } }

/* =========================================================
   Top bar
   ========================================================= */
.topbar { background: var(--teal-900); color: #cfe7e3; font-size: 0.85rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; height: 42px; }
.topbar__items { display: flex; align-items: center; gap: 1.4rem; }
.topbar__item { display: inline-flex; align-items: center; gap: 0.4rem; transition: color 0.2s; }
.topbar__item:hover { color: var(--white); }
.topbar__item .ic { font-size: 0.8rem; }
.topbar__socials { display: flex; gap: 0.5rem; }
.topbar__socials a {
  width: 26px; height: 26px; display: grid; place-items: center;
  border-radius: var(--r-full); background: rgba(255,255,255,0.08);
  font-size: 0.8rem; transition: background 0.25s, transform 0.25s;
}
.topbar__socials a:hover { background: var(--mint-400); color: var(--teal-900); transform: translateY(-2px); }

/* =========================================================
   Navigation
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.35s, background 0.35s, border-color 0.35s;
}
.nav.is-stuck { box-shadow: var(--shadow-sm); border-color: var(--line); background: rgba(255,255,255,0.95); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand__mark {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 14px; background: var(--grad-primary); color: var(--white);
  box-shadow: 0 8px 18px rgba(26,107,104,0.3);
}
.brand__mark svg { width: 26px; height: 26px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong { font-family: var(--font-serif); font-size: 1.28rem; color: var(--teal-900); font-weight: 600; }
.brand__text small { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-500); margin-top: 3px; }
.brand--light .brand__text strong { color: var(--white); }
.brand--light .brand__text small { color: var(--mint-300); }

.nav__links { display: flex; align-items: center; gap: 0.4rem; }
.nav__links > a {
  padding: 0.55rem 0.95rem;
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--ink-soft);
  border-radius: var(--r-full);
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav__links > a:hover { color: var(--teal-700); background: var(--cream-2); }
.nav__cta-mobile { display: none; }

.nav__actions { display: flex; align-items: center; gap: 1rem; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--teal-800); border-radius: 2px; transition: 0.3s var(--ease); }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: 118px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    background: var(--white);
    padding: 1.4rem 1.6rem 2rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-140%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.45s var(--ease), opacity 0.35s, visibility 0.35s;
  }
  .nav.is-open .nav__links { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav__links > a { padding: 0.9rem 1rem; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__cta-mobile { display: flex !important; margin-top: 1rem; border-bottom: none !important; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; background: var(--grad-hero); overflow: hidden; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4rem, 8vw, 7rem);
}
.hero__bg-orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; z-index: 0; }
.hero__bg-orb--1 { width: 480px; height: 480px; background: var(--mint-300); top: -140px; right: -120px; }
.hero__bg-orb--2 { width: 380px; height: 380px; background: #ffd5c9; bottom: -160px; left: -120px; opacity: 0.4; }
.hero__content { position: relative; z-index: 2; }
.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.2vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--teal-900);
  margin: 1.2rem 0 1.3rem;
}
.hero__lead { font-size: 1.14rem; color: var(--ink-soft); max-width: 48ch; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.4rem; }
.hero__trust { display: flex; align-items: center; gap: 1rem; }
.hero__trust small { color: var(--ink-soft); font-size: 0.86rem; }
.hero__avatars { display: flex; }
.hero__avatars span {
  width: 40px; height: 40px; border-radius: 50%;
  border: 3px solid var(--white); margin-left: -12px;
  background: var(--grad-primary);
}
.hero__avatars span:first-child { margin-left: 0; }
.hero__avatars span:nth-child(2) { background: linear-gradient(135deg,#ffb199,#ff7a5c); }
.hero__avatars span:nth-child(3) { background: linear-gradient(135deg,#8fd3c8,#35c4b7); }
.hero__avatars span:nth-child(4) { background: linear-gradient(135deg,#f7cf6b,#f5b942); }

/* hero visual */
.hero__visual { position: relative; z-index: 2; }
.hero__image-wrap {
  position: relative;
  border-radius: 32px 32px 120px 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/4.4;
}
.hero__image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero__glow { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,46,46,0.18)); }

.float-card {
  position: absolute;
  display: flex; align-items: center; gap: 0.7rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 0.8rem 1.05rem;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.float-card__icon { font-size: 1.5rem; }
.float-card strong { display: block; font-family: var(--font-serif); font-size: 1.05rem; color: var(--teal-800); line-height: 1.1; }
.float-card small { color: var(--ink-soft); font-size: 0.78rem; }
.float-card--1 { top: 8%; left: -34px; }
.float-card--2 { top: 44%; right: -30px; }
.float-card--3 { bottom: 6%; left: -20px; }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 44px; border: 2px solid var(--teal-500); border-radius: var(--r-full);
  display: grid; justify-items: center; padding-top: 7px; z-index: 3;
}
.hero__scroll-dot { width: 5px; height: 8px; border-radius: 4px; background: var(--teal-500); animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .hero__visual { max-width: 440px; margin-inline: auto; width: 100%; }
  .float-card--1 { left: -8px; }
  .float-card--2 { right: -8px; }
  .hero__scroll { display: none; }
}

/* =========================================================
   Partners marquee
   ========================================================= */
.partners { padding: 2.4rem 0; border-bottom: 1px solid var(--line); background: var(--white); }
.partners__label { text-align: center; color: var(--ink-soft); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.4rem; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; align-items: center; gap: 2.4rem; width: max-content; animation: marquee 26s linear infinite; }
.marquee__track span { font-family: var(--font-serif); font-size: 1.5rem; color: var(--teal-700); font-weight: 500; white-space: nowrap; }
.marquee__track span:nth-child(even) { color: var(--mint-400); font-size: 1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   About
   ========================================================= */
.about__inner { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__media { position: relative; }
.about__img-main { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/4.6; }
.about__img-main img { width: 100%; height: 100%; object-fit: cover; }
.about__img-sub {
  position: absolute; bottom: -34px; right: -24px; width: 52%;
  border-radius: var(--r-md); overflow: hidden; border: 6px solid var(--white); box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.about__img-sub img { width: 100%; height: 100%; object-fit: cover; }
.about__badge {
  position: absolute; top: -22px; left: -22px;
  background: var(--teal-800); color: var(--white);
  padding: 1rem 1.2rem; border-radius: var(--r-md); text-align: center; box-shadow: var(--shadow-md);
}
.about__badge strong { font-family: var(--font-serif); font-size: 1.9rem; display: block; line-height: 1; color: var(--mint-300); }
.about__badge small { font-size: 0.72rem; line-height: 1.3; display: block; margin-top: 4px; opacity: 0.9; }

.about__content p { color: var(--ink-soft); margin-bottom: 1rem; }
.about__list { margin: 1.6rem 0 2rem; display: grid; gap: 0.75rem; }
.about__list li { display: flex; align-items: center; gap: 0.7rem; font-weight: 500; color: var(--ink); }
.check { width: 26px; height: 26px; flex: 0 0 26px; display: grid; place-items: center; border-radius: 50%; background: var(--mint-100); color: var(--teal-600); font-size: 0.8rem; font-weight: 700; }

@media (max-width: 860px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; margin: 0 auto 2rem; }
}

/* =========================================================
   Stats
   ========================================================= */
.stats { background: var(--teal-900); color: var(--white); padding: clamp(3rem,6vw,4.5rem) 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat { display: flex; flex-direction: column; align-items: center; position: relative; }
.stat__num, .stat__plus { font-family: var(--font-serif); font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 600; color: var(--mint-300); line-height: 1; }
.stat__plus { display: inline; }
.stat small { color: #b7d5d0; margin-top: 0.6rem; font-size: 0.95rem; }
.stat + .stat::before { content: ""; position: absolute; left: -0.75rem; top: 10%; height: 80%; width: 1px; background: rgba(255,255,255,0.12); }
@media (max-width: 680px) { .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; } .stat + .stat::before { display: none; } }

/* =========================================================
   Services
   ========================================================= */
.services { background: var(--cream); }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem 1.7rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--grad-primary); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 58px; height: 58px; display: grid; place-items: center;
  border-radius: 16px; background: var(--mint-100); font-size: 1.6rem; margin-bottom: 1.2rem;
  transition: transform 0.4s var(--ease);
}
.service-card:hover .service-card__icon { transform: scale(1.08) rotate(-4deg); }
.service-card h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600; color: var(--teal-900); margin-bottom: 0.5rem; }
.service-card > p { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 1rem; }
.service-card ul { display: grid; gap: 0.45rem; margin-bottom: 1.3rem; }
.service-card ul li { position: relative; padding-left: 1.2rem; font-size: 0.92rem; color: var(--ink); }
.service-card ul li::before { content: "•"; position: absolute; left: 0; color: var(--mint-400); font-weight: 700; }
.service-card__link { font-weight: 600; color: var(--teal-600); font-size: 0.94rem; transition: gap 0.3s, color 0.3s; }
.service-card__link:hover { color: var(--coral-dark); }
@media (max-width: 1000px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services__grid { grid-template-columns: 1fr; } }

/* =========================================================
   Why
   ========================================================= */
.why__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.why__content p { color: var(--ink-soft); }
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 2rem; }
.feature { padding: 1.4rem; background: var(--cream); border-radius: var(--r-md); border: 1px solid var(--line); transition: transform 0.35s var(--ease), box-shadow 0.35s; }
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.feature__icon { font-size: 1.7rem; display: block; margin-bottom: 0.6rem; }
.feature h4 { font-size: 1.05rem; color: var(--teal-900); margin-bottom: 0.3rem; }
.feature p { font-size: 0.9rem; color: var(--ink-soft); }
.why__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/4.6; }
.why__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) { .why__inner { grid-template-columns: 1fr; } .why__media { max-width: 480px; margin-inline: auto; order: -1; aspect-ratio: 16/10; } }
@media (max-width: 480px) { .why__grid { grid-template-columns: 1fr; } }

/* =========================================================
   Offers
   ========================================================= */
.offers { background: var(--cream); }
.offers__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; align-items: stretch; }
.offer-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 2rem 1.7rem; display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.offer-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.offer-card h3 { font-family: var(--font-serif); font-size: 1.22rem; font-weight: 600; color: var(--teal-900); margin-bottom: 0.8rem; }
.offer-card__price { font-family: var(--font-serif); font-size: 2.7rem; font-weight: 600; color: var(--teal-700); line-height: 1; margin-bottom: 0.9rem; }
.offer-card__price span { font-size: 1.4rem; vertical-align: super; }
.offer-card__price small { font-size: 0.9rem; color: var(--ink-soft); font-family: var(--font-sans); font-weight: 500; }
.offer-card__price--free, .offer-card__price--text { color: var(--coral-dark); font-size: 2.2rem; }
.offer-card p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 1.4rem; flex: 1; }
.offer-card--feature { background: var(--teal-800); border-color: transparent; color: var(--white); position: relative; box-shadow: var(--shadow-md); }
.offer-card--feature h3, .offer-card--feature .offer-card__price { color: var(--white); }
.offer-card--feature .offer-card__price span { color: var(--mint-300); }
.offer-card--feature p { color: #c5ded9; }
.offer-card__tag {
  position: absolute; top: 1.1rem; right: 1.1rem;
  background: var(--coral); color: var(--white); font-size: 0.72rem; font-weight: 700;
  padding: 0.3rem 0.7rem; border-radius: var(--r-full); text-transform: uppercase; letter-spacing: 0.05em;
}
@media (max-width: 1000px) { .offers__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .offers__grid { grid-template-columns: 1fr; } }

/* =========================================================
   Team
   ========================================================= */
.team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.team-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-card--lead { grid-column: span 1; }
.team-card__img { aspect-ratio: 4/3.4; overflow: hidden; }
.team-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.team-card:hover .team-card__img img { transform: scale(1.06); }
.team-card__body { padding: 1.5rem 1.6rem 1.8rem; }
.team-card__body h3 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--teal-900); }
.team-card__role { display: block; color: var(--mint-400); font-weight: 600; font-size: 0.85rem; margin: 0.2rem 0 0.7rem; }
.team-card__body p { color: var(--ink-soft); font-size: 0.93rem; }
@media (max-width: 860px) { .team__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .team__grid { grid-template-columns: 1fr; } }

/* =========================================================
   Reviews
   ========================================================= */
.reviews { background: var(--cream); overflow: hidden; }
.reviews__track { display: flex; gap: 1.6rem; width: max-content; padding: 0 1.3rem; }
.review {
  width: 380px; flex: 0 0 380px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.8rem; box-shadow: var(--shadow-sm);
}
.review blockquote { font-family: var(--font-serif); font-size: 1.12rem; line-height: 1.5; color: var(--teal-900); margin: 0.8rem 0 1.1rem; font-weight: 500; }
.review figcaption { color: var(--ink-soft); font-weight: 600; font-size: 0.92rem; }
@media (max-width: 480px) { .review { width: 300px; flex-basis: 300px; } }

/* =========================================================
   Info (hours + fees)
   ========================================================= */
.info__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 1.6rem; }
.info__card { border-radius: var(--r-lg); padding: clamp(1.8rem, 4vw, 2.6rem); }
.info__card h3 { font-family: var(--font-serif); font-size: 1.5rem; display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.2rem; }
.info__card--hours { background: var(--teal-800); color: var(--white); }
.info__card--hours h3 { color: var(--white); }
.hours { display: grid; gap: 0.2rem; }
.hours li { display: flex; justify-content: space-between; padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.hours li span { color: #c5ded9; }
.hours li strong { color: var(--mint-300); font-weight: 600; }
.info__note { margin-top: 1.2rem; color: #b7d5d0; font-size: 0.9rem; }
.info__card--fees { background: var(--cream); border: 1px solid var(--line); }
.info__card--fees h3 { color: var(--teal-900); }
.info__card--fees p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.info__pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.6rem; }
@media (max-width: 780px) { .info__grid { grid-template-columns: 1fr; } }

/* =========================================================
   Contact
   ========================================================= */
.contact { background: var(--white); }
.contact__inner { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__info > p { color: var(--ink-soft); margin-bottom: 1.6rem; }
.contact__list { display: grid; gap: 1rem; margin-bottom: 1.8rem; }
.contact__list li { display: flex; align-items: center; gap: 1rem; }
.contact__icon { width: 48px; height: 48px; flex: 0 0 48px; display: grid; place-items: center; border-radius: 14px; background: var(--mint-100); font-size: 1.3rem; }
.contact__list small { display: block; color: var(--ink-soft); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; }
.contact__list a, .contact__list span { color: var(--teal-800); font-weight: 600; }
.contact__map { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.contact__map iframe { width: 100%; height: 240px; border: 0; display: block; filter: grayscale(0.2); }

.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.contact__form { padding: clamp(1.6rem, 4vw, 2.4rem); }
.contact__form h3 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--teal-900); margin-bottom: 1.4rem; }
.field { margin-bottom: 1.05rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--teal-800); margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.8rem 1rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--cream); color: var(--ink); font-size: 0.96rem; transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--mint-400); background: var(--white); box-shadow: 0 0 0 4px rgba(53,196,183,0.14);
}
.field textarea { resize: vertical; }
.contact__consent { text-align: center; color: var(--ink-soft); font-size: 0.8rem; margin-top: 0.9rem; }
@media (max-width: 820px) { .contact__inner { grid-template-columns: 1fr; } }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--teal-900); color: #b7d5d0; padding-top: clamp(3.5rem, 7vw, 5rem); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__brand p { margin: 1.1rem 0 1.3rem; font-size: 0.94rem; max-width: 32ch; }
.footer__socials { display: flex; gap: 0.6rem; }
.footer__socials a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,0.08); transition: background 0.25s, transform 0.25s; }
.footer__socials a:hover { background: var(--mint-400); color: var(--teal-900); transform: translateY(-3px); }
.footer__col h4 { color: var(--white); font-size: 1rem; margin-bottom: 1.1rem; font-family: var(--font-serif); font-weight: 600; }
.footer__col a, .footer__col span { display: block; color: #a9cbc5; font-size: 0.93rem; margin-bottom: 0.6rem; transition: color 0.2s; }
.footer__col a:hover { color: var(--mint-300); }
.footer__bar { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.3rem 0; }
.footer__bar-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer__bar small { color: #86aaa4; font-size: 0.84rem; }
@media (max-width: 860px) { .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 500px) { .footer__inner { grid-template-columns: 1fr; } }

/* =========================================================
   Reveal animation base (GSAP toggles these)
   ========================================================= */
[data-reveal] { opacity: 0; transform: translateY(28px); }
.no-js [data-reveal] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}
