:root {
  --ink: #142329;
  --muted: #60727c;
  --line: #dbe6e8;
  --paper: #f7fbfb;
  --white: #ffffff;
  --teal: #0c8d92;
  --teal-dark: #075d68;
  --red: #d9353b;
  --gold: #d89b32;
  --shadow: 0 24px 70px rgba(11, 72, 81, 0.16);
  --soft-gradient: linear-gradient(135deg, #f9ffff 0%, #e8f6f4 48%, #fff7ee 100%);
  --accent-gradient: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 48%, var(--gold) 100%);
  --warm-gradient: linear-gradient(135deg, rgba(217, 53, 59, 0.1), rgba(216, 155, 50, 0.16));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f9ffff 0%, var(--paper) 44%, #fffaf3 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(232, 246, 244, 0.88), rgba(255, 248, 239, 0.88));
  border-bottom: 1px solid rgba(219, 230, 232, 0.7);
  backdrop-filter: blur(18px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.menu-open .menu-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.brand,
.site-footer > div:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand img,
.site-footer img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.main-nav {
  display: flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.main-nav a,
.header-call {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  background: linear-gradient(135deg, #e7f4f4, #fff3e4);
  color: var(--teal-dark);
}

.header-call {
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--teal-dark));
}

.section-band {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(34px, 5vw, 80px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 22%, rgba(12, 141, 146, 0.18), transparent 34%),
    radial-gradient(circle at 92% 14%, rgba(216, 155, 50, 0.18), transparent 30%),
    linear-gradient(135deg, #fbffff 0%, #e9f6f5 45%, #fff4e6 100%);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: clamp(30px, 5vw, 80px);
  min-height: 560px;
  background:
    radial-gradient(circle at 12% 20%, rgba(12, 141, 146, 0.14), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(217, 53, 59, 0.08), transparent 28%),
    linear-gradient(135deg, #fbffff 0%, #eaf7f6 58%, #fff8ef 100%);
  overflow: hidden;
}

.page-hero.compact-hero {
  grid-template-columns: minmax(0, 880px);
  min-height: 430px;
}

.page-hero img {
  width: min(100%, 420px);
  max-height: 500px;
  object-fit: contain;
  object-position: bottom;
  justify-self: center;
  border-radius: 28px;
  background: linear-gradient(160deg, #eaf7f6, #ffffff);
  box-shadow: var(--shadow);
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 20px;
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 5.8vw, 5.7rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4.1rem);
}

h3 {
  margin-bottom: 10px;
  line-height: 1.2;
  font-size: 1.15rem;
}

.hero-copy p,
.section-heading p,
.gallery-copy p,
.split > div > p {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 24px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(20, 35, 41, 0.15);
}

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #a8202b 55%, #7b1e2a);
}

.btn.ghost {
  color: var(--teal-dark);
  border-color: rgba(12, 141, 146, 0.28);
  background: rgba(255, 255, 255, 0.72);
}

.btn.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
}

.btn.compact {
  min-height: 46px;
  color: var(--white);
  background: var(--ink);
}

.trust-row {
  margin-top: 18px;
  color: var(--muted);
}

.trust-row span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.hero-visual {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: end center;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.82)),
    radial-gradient(circle at 50% 40%, rgba(216, 155, 50, 0.2), transparent 35%),
    linear-gradient(145deg, #0f6e74, #dff4f2 54%, #fff2de);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  z-index: -1;
}

.hero-visual img {
  width: min(92%, 520px);
  max-height: 570px;
  object-fit: contain;
  object-position: bottom;
}

.pulse-card {
  position: absolute;
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 46px rgba(20, 35, 41, 0.15);
  backdrop-filter: blur(12px);
}

.pulse-card.top {
  top: 28px;
  right: 24px;
}

.pulse-card.bottom {
  left: 24px;
  bottom: 28px;
}

.pulse-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #ffffff 0%, #f0fbfa 54%, #fff7ed 100%);
}

.stats-strip div {
  min-height: 148px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.stats-strip div:last-child {
  border-right: 0;
}

.stats-strip strong {
  color: var(--red);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.stats-strip span {
  max-width: 430px;
  color: var(--muted);
  font-weight: 600;
}

.split,
.section-heading,
.gallery,
.cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
}

.timeline {
  display: grid;
  gap: 14px;
  counter-reset: experience;
}

.timeline p {
  position: relative;
  margin: 0;
  padding: 20px 20px 20px 64px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 253, 252, 0.96)),
    var(--warm-gradient);
  box-shadow: 0 10px 34px rgba(20, 35, 41, 0.06);
}

.timeline p::before {
  counter-increment: experience;
  content: "0" counter(experience);
  position: absolute;
  top: 20px;
  left: 18px;
  color: var(--red);
  font-weight: 800;
}

.services,
.locations,
.home-preview,
.subtle-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(12, 141, 146, 0.1), transparent 28%),
    linear-gradient(135deg, #eef7f6 0%, #f7fffd 55%, #fff4e7 100%);
}

.section-heading {
  margin-bottom: 34px;
  align-items: end;
}

.service-grid,
.location-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.seo-focus {
  background: var(--white);
}

.seo-keyword-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.seo-keyword-grid article {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(219, 230, 232, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 253, 252, 0.98)),
    var(--warm-gradient);
  box-shadow: 0 14px 44px rgba(20, 35, 41, 0.06);
}

.seo-keyword-grid span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.seo-keyword-grid h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.seo-keyword-grid p {
  margin-bottom: 16px;
  color: var(--muted);
}

.seo-keyword-grid a {
  color: var(--teal-dark);
  font-weight: 800;
}

.error-hero {
  min-height: 58vh;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(12, 141, 146, 0.12), rgba(217, 53, 59, 0.08)),
    var(--paper);
}

.error-hero p {
  max-width: 720px;
  margin-inline: auto;
}

.error-code {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: clamp(4rem, 14vw, 8rem);
  font-weight: 800;
  line-height: 0.9;
}

.review-grid {
  align-items: start;
}

.service-card-link {
  display: block;
  height: 100%;
}

.service-card-link article {
  height: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card-link:hover article {
  transform: translateY(-4px);
  border-color: rgba(12, 141, 146, 0.35);
  box-shadow: 0 22px 58px rgba(20, 35, 41, 0.12);
}

.service-grid article > span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-grid article > strong {
  display: inline-flex;
  margin-top: 8px;
  color: var(--teal-dark);
}

.detail-grid,
.procedure-grid {
  display: grid;
  gap: 18px;
}

.detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-grid article,
.procedure-grid div {
  border: 1px solid rgba(219, 230, 232, 0.86);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 44px rgba(20, 35, 41, 0.06);
}

.detail-grid article {
  padding: 26px;
}

.detail-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.procedure-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.procedure-grid div {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 150px;
  padding: 22px;
}

.procedure-grid strong {
  color: var(--red);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

.procedure-grid span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.featured-grid {
  margin-bottom: 22px;
}

.text-link {
  display: inline-flex;
  margin-top: 6px;
  color: var(--teal-dark);
  font-weight: 800;
}

.text-link::after {
  content: ">";
  margin-left: 8px;
}

.service-grid article,
.location-grid article,
.review-grid blockquote {
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(219, 230, 232, 0.86);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 253, 252, 0.98)),
    linear-gradient(135deg, rgba(12, 141, 146, 0.08), rgba(216, 155, 50, 0.1));
  box-shadow: 0 14px 44px rgba(20, 35, 41, 0.06);
}

.review-platforms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 46px;
  padding-bottom: 46px;
  background:
    radial-gradient(circle at 88% 18%, rgba(216, 155, 50, 0.16), transparent 28%),
    linear-gradient(135deg, #eef7f6, #fff5e7);
}

.rating-card {
  display: grid;
  grid-template-columns: minmax(104px, 150px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  min-width: 0;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(219, 230, 232, 0.86);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 253, 252, 0.98)),
    linear-gradient(135deg, rgba(12, 141, 146, 0.1), rgba(217, 53, 59, 0.08));
  box-shadow: 0 16px 48px rgba(20, 35, 41, 0.08);
}

.rating-card img {
  width: 100%;
  max-width: 150px;
  height: auto;
  border: 1px solid rgba(219, 230, 232, 0.72);
  border-radius: 16px;
}

.rating-score {
  display: block;
  color: var(--ink);
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  font-weight: 850;
  line-height: 0.95;
}

.rating-stars {
  display: inline-flex;
  gap: 2px;
  color: #f4b400;
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 1;
}

.rating-card p {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.service-grid article {
  min-height: 270px;
}

.service-grid img {
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
  object-fit: contain;
}

.service-grid p,
.location-grid p,
.review-grid p {
  color: var(--muted);
}

.symptoms-strip {
  background: var(--white);
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.symptom-grid article,
.service-sidebar,
.service-main {
  border: 1px solid rgba(219, 230, 232, 0.86);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 44px rgba(20, 35, 41, 0.06);
}

.symptom-grid article {
  padding: 24px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.service-detail-hero img {
  max-width: 320px;
  padding: 24px;
}

.service-main,
.service-sidebar {
  padding: clamp(24px, 4vw, 42px);
}

.service-main p,
.service-main li,
.service-sidebar p,
.symptom-grid p,
.faq-section p {
  color: var(--muted);
}

.service-main ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.service-sidebar {
  position: sticky;
  top: 104px;
}

.service-sidebar .btn {
  width: 100%;
  margin-top: 14px;
}

.service-links {
  background:
    radial-gradient(circle at 92% 10%, rgba(216, 155, 50, 0.12), transparent 26%),
    linear-gradient(135deg, #ffffff, #f1fbfa);
}

.service-links h2 {
  max-width: 720px;
}

.related-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.related-service-links a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--teal-dark);
  background: linear-gradient(135deg, #eef7f6, #fff4e6);
  font-weight: 800;
}

.gallery {
  align-items: center;
  background:
    radial-gradient(circle at 16% 18%, rgba(12, 141, 146, 0.42), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(216, 155, 50, 0.18), transparent 30%),
    linear-gradient(135deg, #0c171b 0%, #102f33 52%, #20151a 100%);
  color: var(--white);
}

.gallery p {
  color: rgba(255, 255, 255, 0.72);
}

.gallery .section-kicker {
  color: #83dad9;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-grid img:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  background: linear-gradient(160deg, #eaf7f6, #ffffff 58%, #fff1dd);
}

.full-gallery img:first-child {
  grid-row: auto;
  aspect-ratio: 1;
}

.gallery-page-hero {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
}

.gallery-page-hero img {
  width: min(100%, 520px);
  aspect-ratio: 4 / 3;
  max-height: none;
  object-fit: cover;
}

.gallery-showcase {
  background:
    radial-gradient(circle at 14% 12%, rgba(12, 141, 146, 0.1), transparent 24%),
    linear-gradient(135deg, #f8fbfa, #fff7ed);
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 253, 252, 0.98)),
    linear-gradient(135deg, rgba(12, 141, 146, 0.08), rgba(216, 155, 50, 0.1));
  box-shadow: 0 14px 38px rgba(20, 35, 41, 0.08);
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-card.wide img {
  aspect-ratio: 16 / 9;
}

.gallery-card.tall img {
  aspect-ratio: 3 / 4;
}

.gallery-card figcaption {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}

.location-grid article {
  display: grid;
  gap: 12px;
}

.location-grid span {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.location-grid a {
  color: var(--teal-dark);
  font-weight: 800;
}

.review-grid blockquote {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 180px;
}

.review-grid p {
  font-size: 1rem;
  line-height: 1.65;
}

.review-grid p + p {
  margin-top: -4px;
}

.review-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.review-card-top .rating-stars {
  flex: 0 0 auto;
}

.review-card-top div {
  display: grid;
  gap: 4px;
}

.review-card-top span:not(.rating-stars) {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.review-grid cite {
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
}

@media (min-width: 981px) {
  .review-grid {
    align-items: stretch;
  }

  .review-grid blockquote {
    height: 360px;
    overflow-y: auto;
    scrollbar-gutter: stable;
  }
}

.cta {
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 16%, rgba(216, 155, 50, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(12, 141, 146, 0.94), rgba(20, 35, 41, 0.96) 58%, rgba(89, 22, 31, 0.92)),
    url("assets/gallery/dr-gaurav-gallery-21.webp") center/cover;
}

.cta h2 {
  margin-bottom: 0;
}

.cta .eyebrow {
  color: #c4fbf7;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background:
    radial-gradient(circle at 10% 14%, rgba(12, 141, 146, 0.1), transparent 28%),
    linear-gradient(135deg, #ffffff, #f0fbfa 56%, #fff6e9);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(260px, 0.78fr) minmax(360px, 1.1fr) minmax(520px, 1.5fr);
  grid-template-areas:
    "brand bio clinics maps"
    "bottom bottom bottom bottom";
  align-items: start;
  gap: 30px clamp(24px, 3vw, 44px);
  padding: 32px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 8% 0%, rgba(12, 141, 146, 0.34), transparent 24%),
    radial-gradient(circle at 92% 18%, rgba(216, 155, 50, 0.18), transparent 22%),
    linear-gradient(135deg, #0c171b 0%, #102f33 48%, #160f14 100%);
}

.site-footer > div:first-child {
  grid-area: brand;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 2px 12px;
  min-width: 0;
}

.site-footer > div:first-child img {
  grid-row: 1 / span 2;
}

.site-footer > div:first-child strong,
.site-footer > div:first-child span {
  min-width: 0;
  overflow-wrap: break-word;
}

.site-footer > div:first-child strong {
  line-height: 1.25;
}

.site-footer strong {
  color: var(--white);
}

.site-footer span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.site-footer p {
  grid-area: bio;
  min-width: 0;
  max-width: 760px;
  margin: 0;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.footer-clinics {
  grid-area: clinics;
  display: grid;
  gap: 12px;
  min-width: 0;
}

.footer-clinics > strong {
  color: var(--white);
}

.footer-clinics ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-clinics li {
  display: grid;
  gap: 3px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-clinics li:last-child {
  border-bottom: 0;
}

.footer-clinics a,
.footer-credit {
  color: #83dad9;
  font-weight: 800;
}

.footer-credit {
  width: fit-content;
}

.footer-bottom {
  grid-area: bottom;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 18px;
  min-width: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-legal-links,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  min-width: 0;
}

.footer-legal-links {
  flex: 1 1 520px;
}

.footer-socials {
  justify-content: flex-end;
  flex: 0 1 auto;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom .footer-credit {
  margin-right: clamp(4px, 2vw, 28px);
  color: #83dad9;
  font-weight: 850;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(131, 218, 217, 0.08));
}

.footer-social-link:hover {
  border-color: rgba(131, 218, 217, 0.42);
  background: linear-gradient(135deg, rgba(131, 218, 217, 0.16), rgba(216, 155, 50, 0.12));
}

.footer-social-link img {
  width: 20px;
  height: 20px;
  border-radius: 6px;
}

.site-footer > .footer-locations {
  grid-area: maps;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.site-footer .footer-map {
  display: grid;
  gap: 8px;
  align-items: start;
  font-weight: 400;
}

.footer-map strong {
  color: var(--white);
}

.footer-map span {
  line-height: 1.45;
}

.footer-map iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 170px;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #2db742;
  box-shadow: 0 16px 40px rgba(45, 183, 66, 0.36);
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
}

.policy-content {
  display: grid;
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}

.policy-card,
.sitemap-card {
  border: 1px solid rgba(219, 230, 232, 0.86);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 44px rgba(20, 35, 41, 0.06);
}

.policy-card {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 38px);
}

.policy-card p,
.policy-card li,
.sitemap-card li {
  color: var(--muted);
}

.policy-card ul,
.sitemap-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.policy-card h2,
.sitemap-card h2 {
  margin-bottom: 2px;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sitemap-card {
  padding: 26px;
}

.sitemap-card a {
  color: var(--teal-dark);
  font-weight: 750;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1700px) {
  .site-footer {
    grid-template-columns: minmax(220px, 0.75fr) minmax(360px, 1.25fr);
    grid-template-areas:
      "brand clinics"
      "bio clinics"
      "maps maps"
      "bottom bottom";
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    flex-wrap: nowrap;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border-radius: 18px;
    box-shadow: 0 18px 54px rgba(20, 35, 41, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero,
  .page-hero,
  .service-detail,
  .split,
  .section-heading,
  .gallery,
  .gallery-page-hero,
  .cta,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .page-hero,
  .page-hero.compact-hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 560px;
  }

  .stats-strip,
  .service-grid,
  .location-grid,
  .review-platforms,
  .review-grid,
  .seo-keyword-grid,
  .symptom-grid,
  .detail-grid,
  .detail-grid.three,
  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-sidebar {
    position: static;
  }

  .procedure-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-footer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "bio"
      "clinics"
      "maps"
      "bottom";
  }

  .site-footer > .footer-locations {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    padding: 10px 14px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand span {
    max-width: 210px;
    line-height: 1.1;
    font-size: 0.98rem;
  }

  .header-call {
    display: none;
  }

  .main-nav {
    left: 14px;
    right: 14px;
    grid-template-columns: 1fr;
    gap: 6px;
    border-radius: 16px;
  }

  .main-nav a {
    min-height: 44px;
    justify-content: flex-start;
    padding: 0 14px;
    border-radius: 10px;
    font-size: 0.95rem;
  }

  h1 {
    font-size: clamp(2.24rem, 10.8vw, 3.22rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }

  .section-band {
    padding: 44px 18px;
  }

  .hero {
    padding-top: 34px;
    gap: 30px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-row span {
    width: 100%;
  }

  .hero-visual {
    min-height: 430px;
    border-radius: 18px;
  }

  .hero-visual img {
    max-height: 410px;
  }

  .pulse-card {
    max-width: 180px;
    padding: 10px 12px;
  }

  .pulse-card.top {
    top: 14px;
    right: 14px;
  }

  .pulse-card.bottom {
    left: 14px;
    bottom: 14px;
  }

  .page-hero img {
    width: min(100%, 320px);
    max-height: 380px;
    border-radius: 18px;
  }

  .stats-strip div {
    min-height: auto;
    padding: 24px 18px;
  }

  .service-grid article,
  .location-grid article,
  .review-grid blockquote,
  .seo-keyword-grid article,
  .detail-grid article,
  .procedure-grid div {
    padding: 20px;
  }

  .service-grid article {
    min-height: auto;
  }

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

  .procedure-grid div {
    min-height: auto;
  }

  .contact-actions .btn {
    width: 100%;
  }

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

  .gallery-page-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card.wide {
    grid-column: auto;
  }

  .gallery-card.wide img,
  .gallery-card.tall img {
    aspect-ratio: 4 / 3;
  }

  .gallery-grid img:first-child {
    grid-column: span 2;
    height: 360px;
  }

  .site-footer {
    padding-bottom: 86px;
  }

  .footer-map iframe {
    min-height: 240px;
  }

  .rating-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rating-card img {
    max-width: 132px;
  }

  .review-card-top {
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom,
  .footer-legal-links,
  .footer-socials {
    justify-content: flex-start;
  }

  .footer-socials {
    width: 100%;
  }

  .site-footer > .footer-locations {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}
