/* ═══════════════════════════════════════════════════════════════
   DR. ELEANOR VOSS — STYLE SHEET
   Palette: Deep Teal #0A5F6F · Mint #E8F5F7 · Gold #C9A84C
            Steel #2E86AB · Charcoal #1C2B33 · White #FAFEFE
   Type: Cormorant Garant (display) + Inter (body)
═══════════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:       #0A5F6F;
  --teal-dark:  #074a57;
  --teal-light: #1a7a8c;
  --mint:       #E8F5F7;
  --mint-deep:  #c8eaef;
  --gold:       #C9A84C;
  --gold-light: #dfc07a;
  --steel:      #2E86AB;
  --charcoal:   #1C2B33;
  --gray:       #6B7F87;
  --gray-light: #a8b8be;
  --white:      #FAFEFE;
  --off-white:  #f0f8fa;
  --shadow-sm:  0 2px 12px rgba(10,95,111,.08);
  --shadow-md:  0 8px 32px rgba(10,95,111,.12);
  --shadow-lg:  0 20px 60px rgba(10,95,111,.18);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --transition: all .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Cormorant Garant', serif; font-weight: 600; line-height: 1.18; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
p  { font-size: .975rem; color: var(--gray); }
em { font-style: italic; }

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

/* ─── LAYOUT UTILITIES ───────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 110px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-title { margin-top: 10px; }

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .75s cubic-bezier(.4,0,.2,1), transform .75s cubic-bezier(.4,0,.2,1);
}
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .03em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}
.btn-ghost {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.4rem 2rem;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(250,254,254,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: .9rem 2rem;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Cormorant Garant', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  transition: var(--transition);
}
.navbar.scrolled .nav-logo { color: var(--teal); }
.logo-mark { color: var(--gold); font-size: 1rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-link {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  letter-spacing: .02em;
  position: relative;
  transition: var(--transition);
}
.navbar.scrolled .nav-link { color: var(--charcoal); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--gold); }
.navbar.scrolled .nav-link:hover { color: var(--teal); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--charcoal); }

/* ─── HERO ────────────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--steel) 100%);
  overflow: hidden;
  padding: 0;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(7,74,87,.75) 0%, rgba(7,74,87,.2) 60%, transparent 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
  max-width: 780px;
  margin-left: calc(50% - 590px);
}
@media (max-width: 1220px) { .hero-content { margin-left: 2rem; } }

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-title {
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero-title em { color: var(--gold-light); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.reveal-up { transition-delay: 0s; }
.hero-content .reveal-up:nth-child(1) { transition-delay: .1s; }
.hero-content .reveal-up:nth-child(2) { transition-delay: .2s; }
.hero-content .reveal-up:nth-child(3) { transition-delay: .3s; }
.hero-content .reveal-up:nth-child(4) { transition-delay: .4s; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(.5); opacity: .4; }
}

/* ─── STATS STRIP ─────────────────────────────────────────────── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--teal);
  padding: 0;
}
.stat-item {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--teal-light); }
.stat-num {
  font-family: 'Cormorant Garant', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}
.stat-unit {
  font-family: 'Cormorant Garant', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
}
.stat-item p {
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: .35rem;
}

/* ─── ABOUT ───────────────────────────────────────────────────── */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap { margin-bottom: 2rem; }
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-deep) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
#aboutCanvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}
.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(250,254,254,.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  padding: .75rem 1.5rem;
  text-align: center;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.about-img-badge strong {
  display: block;
  font-family: 'Cormorant Garant', serif;
  font-size: 1.1rem;
  color: var(--teal);
}
.about-img-badge span { font-size: .78rem; color: var(--gray); }

.about-credentials { display: flex; flex-direction: column; gap: 1rem; }
.credential {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  transition: var(--transition);
}
.credential:hover { background: var(--mint); transform: translateX(6px); }
.cred-icon { font-size: 1.5rem; flex-shrink: 0; }
.credential strong { display: block; font-size: .9rem; color: var(--charcoal); margin-bottom: .15rem; }
.credential p { font-size: .8rem; margin: 0; }

.about-lead {
  font-size: 1.1rem;
  color: var(--charcoal);
  font-weight: 400;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}
.about-text p { margin-bottom: 1.1rem; }
.about-text .section-title { margin-bottom: 1.5rem; }

.about-quote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0 0;
  font-family: 'Cormorant Garant', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--teal);
  background: var(--mint);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.about-quote cite {
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: .8rem;
  color: var(--gray);
  margin-top: .5rem;
  font-weight: 500;
}

/* ─── SERVICES ────────────────────────────────────────────────── */
.services-section { background: var(--mint); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 1.25rem;
}
.service-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  background: var(--mint);
  border-radius: var(--radius-sm);
  width: 56px;
  height: 56px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--teal); }

.service-card h3 { margin-bottom: .65rem; color: var(--charcoal); font-size: 1.15rem; }
.service-card p  { font-size: .875rem; line-height: 1.7; margin-bottom: 1.25rem; }
.service-tag {
  display: inline-block;
  background: var(--mint);
  color: var(--teal);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 50px;
}

/* ─── BLOG ────────────────────────────────────────────────────── */
.blog-section { background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.blog-card { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card--featured { grid-row: span 2; display: flex; flex-direction: column; }
.blog-card--featured .blog-card-img { flex: 1; }
.blog-card-img { position: relative; }
.blog-img-placeholder {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
}
.blog-card--featured .blog-img-placeholder { height: 300px; }
#blogCanvas1 { position: absolute; inset: 0; width: 100% !important; height: 100% !important; }

.gradient-1 { background: linear-gradient(135deg, #0A5F6F 0%, #2E86AB 100%); }
.gradient-2 { background: linear-gradient(135deg, #1a6b4a 0%, #2eab76 100%); }
.gradient-3 { background: linear-gradient(135deg, #5a2d82 0%, #9b59b6 100%); }
.gradient-4 { background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%); }

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--charcoal);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 50px;
}
.blog-card-body { padding: 1.5rem; background: var(--white); flex: 0 0 auto; }
.blog-date { font-size: .75rem; color: var(--gray-light); margin-bottom: .5rem; }
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: .75rem; line-height: 1.3; color: var(--charcoal); }
.blog-card-body p { font-size: .875rem; }
.blog-read-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--teal);
  transition: color .2s, gap .2s;
}
.blog-read-more:hover { color: var(--gold); }
.blog-cta { text-align: center; margin-top: 3rem; }

/* ─── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials-section { background: var(--mint); overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: .5rem .25rem 1.5rem;
}
.testimonial-card {
  min-width: 320px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
@media (min-width: 900px) { .testimonial-card { min-width: 380px; } }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: .75rem; letter-spacing: .1em; }
.testimonial-card p { font-style: italic; color: var(--charcoal); line-height: 1.8; margin-bottom: 1.5rem; font-size: .925rem; }
.testimonial-author { display: flex; align-items: center; gap: .85rem; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .9rem; color: var(--charcoal); }
.testimonial-author span  { font-size: .78rem; color: var(--gray); }
.testimonial-controls { display: flex; gap: .75rem; margin-top: 1.5rem; justify-content: center; }
.tctrl {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  background: none;
  color: var(--teal);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}
.tctrl:hover { background: var(--teal); color: #fff; }

/* ─── CONTACT ─────────────────────────────────────────────────── */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.75rem; }
.contact-icon { font-size: 1.4rem; margin-top: .1rem; }
.contact-detail strong { display: block; font-size: .85rem; font-weight: 600; color: var(--charcoal); margin-bottom: .25rem; }
.contact-detail p, .contact-detail a { font-size: .9rem; color: var(--gray); }
.contact-detail a:hover { color: var(--teal); }

.contact-form-block { margin-top: 2.5rem; }
.contact-form-block h3 { font-size: 1.35rem; margin-bottom: 1.25rem; color: var(--charcoal); }
.form-group { margin-bottom: 1rem; }
.form-input {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--mint-deep);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  color: var(--charcoal);
  background: var(--off-white);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.form-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(10,95,111,.1); background: #fff; }
.form-textarea { height: 120px; resize: vertical; }

.map-wrap {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--mint);
}
.map-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: .82rem;
  color: var(--gray);
}
.map-link { color: var(--teal); font-weight: 500; }
.map-link:hover { text-decoration: underline; }

/* ─── FOOTER ──────────────────────────────────────────────────── */
.site-footer { background: var(--charcoal); padding: 80px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .nav-logo { color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.7; }
.footer-links strong { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-links ul li + li { margin-top: .6rem; }
.footer-links ul a { font-size: .875rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-links ul a:hover { color: #fff; }
.footer-social strong { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.social-icons { display: flex; gap: .65rem; margin-bottom: 1.5rem; }
.social-icons a {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}
.social-icons a:hover { border-color: var(--gold); color: var(--gold); }
.footer-legal { font-size: .75rem; color: rgba(255,255,255,.3); line-height: 1.6; }
.footer-bottom { padding: 1.5rem 0; text-align: center; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }

/* ─── FLOATING ACTION BUTTONS ─────────────────────────────────── */
.floating-actions {
  position: fixed;
  right: 1.5rem;
  bottom: 5.5rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
}
.fab:hover { transform: scale(1.12); }
.fab-whatsapp { background: #25D366; }
.fab-whatsapp:hover { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
.fab-phone { background: var(--teal); }
.fab-phone:hover { box-shadow: 0 6px 24px rgba(10,95,111,.45); }
.fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--charcoal);
  color: #fff;
  font-size: .72rem;
  font-weight: 500;
  white-space: nowrap;
  padding: .35rem .75rem;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.fab:hover .fab-tooltip { opacity: 1; }
.fab-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--charcoal);
}

/* ─── BACK TO TOP ─────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--teal-light); transform: translateY(-2px); }

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; }
  .about-img-placeholder { aspect-ratio: 16/9; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .container { padding: 0 1.25rem; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 280px;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.75rem;
    padding: 2rem;
    transform: translateX(110%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 40px rgba(0,0,0,.15);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { color: var(--charcoal) !important; font-size: 1.1rem; }
  .nav-toggle { display: flex; z-index: 1000; position: relative; }

  .hero-content { margin-left: 0; padding: 0 1.5rem; }

  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .services-grid { grid-template-columns: 1fr; }

  .blog-grid { grid-template-columns: 1fr; }
  .blog-card--featured { grid-row: span 1; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .map-wrap { height: 300px; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .floating-actions { right: 1rem; bottom: 5rem; }
  .fab { width: 48px; height: 48px; }
  .back-to-top { right: 1rem; bottom: 1.25rem; }

  .testimonials-track { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; justify-content: center; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
}

/* ─── REDUCED MOTION ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-left, .reveal-right { opacity: 1; transform: none; transition: none; }
  .scroll-line { animation: none; }
  * { transition-duration: .01ms !important; }
}
