@font-face {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('assets/fonts/onest.woff2') format('woff2');
}

/* ── Tokens ───────────────────────────────────────────── */
:root {
  --teal: #0E5C63;
  --teal-dark: #0A464C;
  --teal-soft: #E4EDED;
  --ink: #0B2A2E;
  --body: #4A5B5D;
  --muted: #7A8A8C;
  --bg: #F2F2F0;
  --bg-alt: #EBEBE7;
  --surface: #FFFFFF;
  --line: #E0E0DB;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --wrap: 1320px;
  --gut: 32px;

  --shadow-sm: 0 1px 2px rgba(11, 42, 46, .06), 0 4px 12px rgba(11, 42, 46, .05);
  --shadow-md: 0 8px 28px rgba(11, 42, 46, .10);
  --shadow-lg: 0 24px 60px rgba(11, 42, 46, .14);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ── Reset ────────────────────────────────────────────── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: 'Onest', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { color: var(--ink); margin: 0; line-height: 1.12; letter-spacing: -.02em; font-weight: 600; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--teal); color: #fff; padding: 12px 20px; border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: inherit; font-weight: 500; cursor: pointer;
  border: 1px solid transparent; border-radius: 999px;
  padding: 13px 26px; white-space: nowrap;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.btn .arrow { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-light { background: #fff; color: var(--teal); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline-light { border-color: rgba(255, 255, 255, .45); color: #fff; }
.btn-outline-light:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }

.btn-ghost { background: transparent; color: var(--body); padding: 8px 16px; }
.btn-ghost:hover { color: var(--ink); }

.btn-lg { padding: 16px 30px; font-size: 1.0625rem; }
.btn-block { width: 100%; }

.link-underline {
  font-weight: 500; color: var(--ink);
  border-bottom: 1px solid currentColor; padding-bottom: 3px;
  transition: color .2s var(--ease), opacity .2s var(--ease);
}
.link-underline:hover { color: var(--teal); }

/* ── Header ───────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(242, 242, 240, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 1px 0 var(--line), var(--shadow-sm); background: rgba(242, 242, 240, .94); }

.header-inner {
  display: flex; align-items: center; gap: 28px;
  height: 88px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand-mark { width: 30px; height: 30px; fill: var(--teal); stroke: none; }
.brand-name { font-size: 1.5rem; font-weight: 600; color: var(--teal); letter-spacing: -.02em; }
.brand-light .brand-mark { fill: #fff; }
.brand-light .brand-name { color: #fff; }

.nav { display: flex; align-items: center; gap: 30px; margin-inline: auto; }
.nav a {
  position: relative; font-size: .9688rem; color: var(--body); padding: 6px 0;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: ''; position: absolute; left: 50%; bottom: 0; translate: -50% 0;
  width: 0; height: 2px; background: var(--teal); border-radius: 2px;
  transition: width .28s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a.is-active { color: var(--ink); font-weight: 500; }
.nav a.is-active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }

.icon-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--surface); color: var(--ink); cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

.burger {
  display: none; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--surface); cursor: pointer;
  padding: 0; place-items: center; gap: 5px;
}
.burger span {
  display: block; width: 18px; height: 1.8px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

.searchbar { border-top: 1px solid var(--line); background: var(--surface); padding: 16px 0; }
.searchbar-form { display: flex; align-items: center; gap: 12px; }
.searchbar-form svg { width: 20px; height: 20px; color: var(--muted); flex: 0 0 auto; }
.searchbar-form input {
  flex: 1; font: inherit; border: 0; background: transparent; color: var(--ink);
  padding: 8px 0; outline: none;
}

/* ── Hero ─────────────────────────────────────────────── */
.hero { padding: 28px 0 40px; }
.hero-grid {
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 48px; align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.15rem, 3.55vw, 3.2rem);
  color: var(--teal);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.08;
}
.hero-sub { margin-top: 26px; max-width: 46ch; font-size: 1.0625rem; }

.hero-cta { display: flex; align-items: center; gap: 30px; margin-top: 34px; flex-wrap: wrap; }

.hero-stat { margin-top: 96px; }
.hero-stat-row { display: flex; align-items: center; gap: 20px; }
.stat-num {
  font-size: 2.75rem; font-weight: 600; color: var(--ink);
  letter-spacing: -.03em; line-height: 1; font-variant-numeric: tabular-nums;
}
.stat-label { font-size: .9375rem; line-height: 1.4; }

.avatars { display: flex; align-items: center; margin-top: 18px; }
.avatars img, .avatar-more {
  width: 48px; height: 48px; border-radius: 50%;
  border: 3px solid var(--bg); object-fit: cover;
  margin-left: -14px;
}
.avatars img:first-child { margin-left: 0; }
.avatar-more {
  display: grid; place-items: center; background: var(--teal); color: #fff;
  border-color: var(--bg);
}
.avatar-more svg { width: 17px; height: 17px; stroke-width: 2; }

.hero-media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 615 / 730; box-shadow: var(--shadow-lg);
}
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }

.pill {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 999px; padding: 7px 18px 7px 7px;
  font-size: .9375rem; font-weight: 500; color: var(--ink);
  box-shadow: var(--shadow-md); white-space: nowrap;
  animation: float 5s ease-in-out infinite;
}
.pill img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex: 0 0 auto; }
.pill-a { top: 17%; left: 8%; }
.pill-b { top: 43%; right: 4%; animation-delay: -2.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.doc-card {
  position: absolute; z-index: 2; left: 5%; right: 5%; bottom: 4%;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: var(--r-md); padding: 14px; box-shadow: var(--shadow-md);
}
.doc-card-head { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.doc-card-head img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.doc-card-head strong { display: block; font-size: .9688rem; color: var(--ink); font-weight: 600; }
.doc-card-head span { font-size: .8125rem; color: var(--muted); }
.doc-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.doc-card-grid > div { background: var(--bg-alt); border-radius: var(--r-sm); padding: 11px 12px; }
.doc-card-grid h4 {
  display: flex; align-items: center; gap: 7px;
  font-size: .875rem; font-weight: 500; margin-bottom: 5px;
}
.doc-card-grid h4 svg { width: 15px; height: 15px; color: var(--teal); }
.doc-card-grid p { font-size: .75rem; line-height: 1.42; color: var(--body); }

/* ── Trust strip ──────────────────────────────────────── */
.strip { border-block: 1px solid var(--line); padding: 20px 0; }
.strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 26px; flex-wrap: wrap;
  font-size: .875rem; color: var(--muted); letter-spacing: .01em;
}
.strip-inner i { width: 4px; height: 4px; border-radius: 50%; background: var(--line); }

/* ── Section shells ───────────────────────────────────── */
.section { padding: 104px 0; }
.section-alt { background: var(--bg-alt); }

.eyebrow {
  display: inline-block; font-size: .8125rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .12em; color: var(--teal);
  margin-bottom: 16px;
}
.section h2 { font-size: clamp(1.9rem, 3.1vw, 2.85rem); letter-spacing: -.03em; }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 48px; margin-bottom: 56px;
}
.section-head h2 { max-width: 18ch; }
.section-lead { max-width: 38ch; font-size: 1.0313rem; }

/* ── About ────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.about-media { position: relative; }
.about-main {
  width: 100%; aspect-ratio: 10 / 11; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--shadow-md);
}
.about-inset {
  position: absolute; right: -28px; bottom: -34px;
  width: 46%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--r-md); border: 8px solid var(--bg);
  box-shadow: var(--shadow-md);
}
.about-badge {
  position: absolute; left: -26px; top: 34px;
  background: var(--teal); color: #fff;
  border-radius: var(--r-md); padding: 18px 22px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 4px;
}
.about-badge .stat-num { color: #fff; font-size: 2.125rem; }
.about-badge span:last-child { font-size: .8125rem; line-height: 1.35; opacity: .9; }

.about-copy h2 { margin-bottom: 22px; }
.about-copy p + p { margin-top: 16px; }

.ticks { margin: 30px 0; display: grid; gap: 13px; }
.ticks li { position: relative; padding-left: 34px; font-size: .9688rem; }
.ticks li::before {
  content: ''; position: absolute; left: 0; top: 2px;
  width: 21px; height: 21px; border-radius: 50%;
  background: var(--teal-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E5C63' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.about-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-top: 32px; }

/* ── Cards (services) ─────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--surface); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-media { aspect-ratio: 4 / 3; overflow: hidden; }
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 26px 26px 28px; }
.card-body h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card-body p { font-size: .9375rem; }
.card-meta {
  display: inline-block; margin-top: 16px; font-size: .8125rem;
  color: var(--teal); font-weight: 500;
  background: var(--teal-soft); border-radius: 999px; padding: 5px 14px;
}

/* ── Steps ────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step {
  position: relative; padding: 34px 26px 30px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--teal-soft); color: var(--teal);
  font-size: .9375rem; font-weight: 600; letter-spacing: 0;
  margin-bottom: 20px;
}
.step h3 { font-size: 1.1875rem; margin-bottom: 9px; }
.step p { font-size: .9375rem; }

/* ── Team ─────────────────────────────────────────────── */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.member-photo {
  aspect-ratio: 4 / 5; border-radius: var(--r-lg); overflow: hidden;
  margin-bottom: 20px; background: var(--teal-soft);
}
.member-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%;
  filter: grayscale(1) contrast(1.04) brightness(1.02);
  transition: filter .5s var(--ease), transform .6s var(--ease);
}
.member:hover .member-photo img {
  filter: grayscale(0) contrast(1) brightness(1); transform: scale(1.04);
}
.member h3 { font-size: 1.125rem; }
.member .role { font-size: .875rem; color: var(--teal); font-weight: 500; margin-top: 4px; }
.member-bio { font-size: .9063rem; margin-top: 12px; }

/* ── Why / gallery ────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: center; }
.why-copy h2 { margin-bottom: 20px; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 38px; }
.why-stats p { font-size: .875rem; margin-top: 8px; }
.why-stats .stat-num { color: var(--teal); }

.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--r-md); box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease);
}
.gallery img:hover { transform: scale(1.02); }
.gallery img:first-child { grid-row: span 2; aspect-ratio: 3 / 4.15; }
.gallery img:not(:first-child) { aspect-ratio: 4 / 3; }

/* ── Quotes ───────────────────────────────────────────── */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote {
  margin: 0; padding: 32px 30px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.quote:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stars { color: #E0A02A; letter-spacing: 3px; font-size: 1rem; }
.quote blockquote { margin: 16px 0 0; font-size: 1rem; color: var(--ink); line-height: 1.6; flex: 1; }
.quote figcaption { display: flex; align-items: center; gap: 12px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.quote figcaption img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.quote figcaption span { font-size: .8125rem; color: var(--muted); }
.quote figcaption strong { display: block; font-size: .9375rem; color: var(--ink); font-weight: 600; }

/* ── CTA band ─────────────────────────────────────────── */
.cta-band {
  position: relative; padding: 108px 0; text-align: center; color: #fff;
  background: linear-gradient(rgba(10, 70, 76, .88), rgba(10, 70, 76, .92)), url('assets/img/cta.jpg') center / cover fixed no-repeat;
}
.cta-inner h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 3rem); max-width: 20ch; margin-inline: auto; }
.cta-inner p { margin-top: 18px; color: rgba(255, 255, 255, .84); }
.cta-actions { display: flex; justify-content: center; gap: 16px; margin-top: 36px; flex-wrap: wrap; }

/* ── Booking ──────────────────────────────────────────── */
.book-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: start; }
.book-copy h2 { margin-bottom: 18px; }

.hours { margin-top: 38px; }
.hours h3 { font-size: 1.0625rem; margin-bottom: 14px; }
.hours dl { margin: 0; display: grid; gap: 10px; }
.hours dl > div {
  display: flex; justify-content: space-between; gap: 20px;
  padding-bottom: 10px; border-bottom: 1px dashed var(--line);
  font-size: .9375rem;
}
.hours dt { color: var(--body); }
.hours dd { margin: 0; color: var(--ink); font-weight: 500; }

.contact-mini { display: grid; gap: 12px; margin-top: 32px; }
.contact-mini a {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: .9688rem; color: var(--ink); font-weight: 500;
  transition: color .2s var(--ease);
}
.contact-mini a:hover { color: var(--teal); }
.contact-mini svg { width: 19px; height: 19px; color: var(--teal); flex: 0 0 auto; }

.book-form {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 34px; box-shadow: var(--shadow-sm);
  display: grid; gap: 18px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field > span { font-size: .875rem; font-weight: 500; color: var(--ink); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .9375rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 13px 15px; width: 100%; resize: vertical;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); background: var(--surface);
  box-shadow: 0 0 0 3px rgba(14, 92, 99, .12);
}
.field input.is-invalid, .field textarea.is-invalid { border-color: #C0492F; background: #FDF4F2; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237A8A8C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 17px;
  padding-right: 42px;
}
.form-note { font-size: .8125rem; color: var(--muted); text-align: center; }
.form-note.is-ok { color: var(--teal); font-weight: 500; }

/* ── FAQ ──────────────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-list details {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 4px 24px;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.faq-list details[open] { box-shadow: var(--shadow-sm); border-color: transparent; }
.faq-list summary {
  list-style: none; cursor: pointer; padding: 18px 34px 18px 0; position: relative;
  font-size: 1.0313rem; font-weight: 500; color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: ''; position: absolute; right: 0; top: 50%; translate: 0 -50%;
  width: 20px; height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E5C63' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .3s var(--ease);
}
.faq-list details[open] summary::after { transform: rotate(135deg); }
.faq-list details p { padding: 0 0 20px; font-size: .9375rem; max-width: 62ch; }

/* ── Footer ───────────────────────────────────────────── */
.site-footer { background: var(--teal-dark); color: rgba(255, 255, 255, .74); padding-top: 80px; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px;
}
.footer-brand p { margin-top: 20px; max-width: 38ch; font-size: .9375rem; }
.socials { display: flex; gap: 10px; margin-top: 24px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .22); color: #fff;
  display: grid; place-items: center;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.socials svg { width: 17px; height: 17px; }
.socials a:hover { background: rgba(255, 255, 255, .14); border-color: #fff; transform: translateY(-2px); }

.footer-col h4 { color: #fff; font-size: .9375rem; margin-bottom: 18px; font-weight: 600; }
.footer-col a, .footer-col address {
  display: block; font-size: .9375rem; font-style: normal; margin-bottom: 11px;
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  padding-block: 24px; border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .875rem;
}
.credit a { color: #fff; font-weight: 500; border-bottom: 1px solid rgba(255, 255, 255, .4); padding-bottom: 1px; }
.credit a:hover { border-color: #fff; }

/* ── Reveal ───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1180px) {
  .nav { gap: 22px; }
  .cards, .quotes { grid-template-columns: repeat(2, 1fr); }
  .steps, .team { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  :root { --gut: 24px; }
  .nav {
    position: fixed; inset: 88px 0 auto; z-index: 90;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-top: 1px solid var(--line);
    padding: 8px 24px 24px; margin: 0;
    box-shadow: var(--shadow-md);
    clip-path: inset(0 0 100% 0); opacity: 0;
    transition: clip-path .4s var(--ease), opacity .3s var(--ease);
  }
  .nav.is-open { clip-path: inset(0 0 0 0); opacity: 1; }
  .nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 1.0625rem; }
  .nav a::after { display: none; }
  .burger { display: grid; }
  .header-cta { display: none; }

  .hero { padding-top: 16px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-stat { margin-top: 44px; }
  .hero-media { aspect-ratio: 4 / 4.2; max-width: 620px; }

  .about-grid, .why-grid, .book-grid, .faq-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-media { max-width: 560px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 18px; }
  .section-head h2, .section-lead { max-width: none; }
  .cta-band { background-attachment: scroll; }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .cards, .quotes, .steps, .team { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-stats { grid-template-columns: 1fr; gap: 22px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery img:first-child { grid-row: auto; aspect-ratio: 4 / 3; }
  .field-row { grid-template-columns: 1fr; }
  .book-form { padding: 26px 22px; }
  .about-inset { right: -12px; bottom: -20px; }
  .about-badge { left: -12px; }
  .doc-card-grid { grid-template-columns: 1fr; }
  .pill-a { top: 12%; left: 5%; }
  .pill-b { top: 40%; right: 5%; }
  .pill { font-size: .8125rem; padding: 5px 14px 5px 5px; }
  .pill img { width: 24px; height: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .hero-cta { gap: 18px; }
  .btn-lg { padding: 14px 24px; font-size: 1rem; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
