:root {
  --garnet: #8e1b1b;
  --garnet-deep: #5e1212;
  --garnet-soft: #b8514f;
  --leaf: #2e6f4e;
  --leaf-deep: #1f5238;
  --sage-wash: #e9f0ea;
  --cream: #fbf6ef;
  --stone: #f5ebe6;
  --gold: #be9460;
  --gold-deep: #9a7440;
  --ink: #2b2421;
  --muted: #6e635b;
  --line: #e7ddd2;
  --white: #fff;
  --shadow-sm: 0 2px 10px rgba(94, 18, 18, 0.06);
  --shadow: 0 18px 50px -20px rgba(67, 30, 20, 0.28);
  --shadow-lg: 0 40px 90px -40px rgba(67, 30, 20, 0.45);
  --r: 18px;
  --r-lg: 28px;
  --display: "Fraunces", Georgia, serif;
  --body: "Plus Jakarta Sans", system-ui, sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.sec {
  padding: clamp(64px, 9vw, 118px) 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--leaf);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--gold);
}
.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 60ch;
}
.center {
  text-align: center;
}
.center .lead {
  margin-inline: auto;
}
.center .eyebrow::before {
  display: none;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.96rem;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--garnet);
  color: #fff;
  box-shadow: 0 12px 28px -12px rgba(142, 27, 27, 0.6);
}
.btn-primary:hover {
  background: var(--garnet-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -12px rgba(142, 27, 27, 0.7);
}
.btn-ghost {
  background: transparent;
  color: var(--garnet);
  border-color: rgba(142, 27, 27, 0.35);
}
.btn-ghost:hover {
  background: var(--garnet);
  color: #fff;
  transform: translateY(-2px);
}
.btn-light {
  background: #fff;
  color: var(--garnet);
  box-shadow: var(--shadow-sm);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* NAV */
header.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease,
    padding 0.3s ease;
  padding: 18px 0;
}
header.nav.scrolled {
  background: rgba(251, 246, 239, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 3vw, 20px);
}
.brand {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
}
.brand img {
  width: 185px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  object-position: left center;
  transition: max-height 0.3s ease, width 0.3s ease;
}
header.nav.scrolled .brand img {
  width: 168px;
  max-height: 48px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover {
  color: var(--garnet);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 14px);
  flex-shrink: 0;
}
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--garnet);
  font-size: 0.95rem;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--garnet);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  display: none;
}

/* HERO */
.hero {
  position: relative;
  padding-top: 150px;
  padding-bottom: 60px;
  overflow: hidden;
  background: radial-gradient(
      1100px 600px at 88% -8%,
      var(--stone),
      transparent 60%
    ),
    radial-gradient(
      800px 500px at -10% 110%,
      var(--sage-wash),
      transparent 55%
    ),
    var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.3rem);
  font-weight: 500;
  color: var(--ink);
  margin-top: 18px;
}
.hero h1 em {
  font-style: italic;
  color: var(--garnet);
}
.hero p.sub {
  margin: 22px 0 14px;
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 46ch;
}
.hero .meaning {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--leaf);
  margin-bottom: 30px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-trust {
  display: flex;
  gap: 26px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.hero-trust .t {
  display: flex;
  flex-direction: column;
}
.hero-trust .t b {
  font-family: var(--display);
  font-size: 1.7rem;
  color: var(--garnet);
  font-weight: 600;
  line-height: 1;
}
.hero-trust .t span {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
}
.hero-trust .t + .t {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.hero-media {
  position: relative;
}
.hero-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/10;
  background: #fff;
  padding: clamp(18px, 4vw, 32px);
  display: grid;
  place-items: center;
}
.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.hero-ring {
  position: absolute;
  inset: -14px;
  border: 1.5px dashed rgba(190, 148, 96, 0.55);
  border-radius: calc(var(--r-lg) + 6px);
  z-index: -1;
}
.hero-badge {
  position: absolute;
  left: -26px;
  bottom: 46px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 240px;
}
.hero-badge .ic {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--sage-wash);
  display: grid;
  place-items: center;
  color: var(--leaf);
}
.hero-badge b {
  font-family: var(--display);
  font-size: 1rem;
  display: block;
}
.hero-badge span {
  font-size: 0.78rem;
  color: var(--muted);
}
.hero-leaf {
  position: absolute;
  top: -10px;
  right: -6px;
  color: var(--leaf);
  opacity: 0.9;
  z-index: 2;
}

/* TRUST CARDS */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.tcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.tcard .ic {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--sage-wash);
  color: var(--leaf);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.tcard h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.tcard p {
  font-size: 0.94rem;
  color: var(--muted);
}

/* split sections */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split .media {
  position: relative;
}
.split .media img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3.4;
  object-fit: cover;
  width: 100%;
}
.about .stat-strip {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.about .stat-strip div b {
  font-family: var(--display);
  font-size: 1.9rem;
  color: var(--garnet);
  display: block;
  line-height: 1;
}
.about .stat-strip div span {
  font-size: 0.85rem;
  color: var(--muted);
}
.media-tag {
  position: absolute;
  bottom: -22px;
  left: 24px;
  background: var(--garnet);
  color: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: var(--shadow);
  font-family: var(--display);
  font-size: 1.05rem;
}
.media-tag span {
  display: block;
  font-family: var(--body);
  font-size: 0.78rem;
  opacity: 0.85;
  font-weight: 500;
}

/* SPECIALISTS */
.doctors {
  background: var(--stone);
}
.doc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 48px;
}
.doc {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.doc:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.doc .ph {
  background: var(--sage-wash);
}
.doc .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  min-height: 300px;
}
.doc .info {
  padding: 30px 28px;
}
.doc .info h3 {
  font-size: 1.42rem;
  color: var(--ink);
}
.doc .role {
  color: var(--garnet);
  font-weight: 600;
  font-size: 0.92rem;
  margin: 4px 0 12px;
}
.doc .quals {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.doc .reg {
  font-size: 0.78rem;
  color: var(--gold-deep);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.doc .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}
.doc .tags span {
  font-size: 0.76rem;
  background: var(--sage-wash);
  color: var(--leaf-deep);
  padding: 5px 11px;
  border-radius: 999px;
  font-weight: 500;
}

/* SERVICES */
.services-women {
  background: var(--cream);
}
.services-child {
  background: var(--sage-wash);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 46px;
}
.svc {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.svc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.svc .lf {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--sage-wash);
  color: var(--leaf);
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.services-child .svc .lf {
  background: #fff;
}
.svc h4 {
  font-size: 1rem;
  font-family: var(--body);
  font-weight: 600;
  color: var(--ink);
}
.svc p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 2px;
}

/* WHY */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.why {
  background: #fff;
  border-radius: var(--r);
  padding: 32px 28px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.why::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--garnet), var(--gold));
}
.why .ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--stone);
  color: var(--garnet);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.why h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.why p {
  font-size: 0.93rem;
  color: var(--muted);
}

/* JOURNEY */
.journey {
  background: var(--garnet-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.journey .eyebrow {
  color: #e8c9a0;
}
.journey .eyebrow::before {
  background: var(--gold);
}
.journey h2 {
  color: #fff;
}
.journey .lead {
  color: rgba(255, 255, 255, 0.78);
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 54px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(232, 201, 160, 0.5) 0 8px,
    transparent 8px 16px
  );
}
.step {
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.step .num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--garnet-deep);
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.3rem;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px var(--garnet-deep);
}
.step h4 {
  font-family: var(--body);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 6px;
}
.step p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.72);
}

/* TESTIMONIALS */
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.tst {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px 28px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tst:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.tst .stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.tst p {
  font-size: 0.96rem;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 18px;
}
.tst .who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tst .av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--stone);
  color: var(--garnet);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 600;
}
.tst .who b {
  font-size: 0.92rem;
  display: block;
}
.tst .who span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* FAQ */
.faq-wrap {
  max-width: 820px;
  margin: 46px auto 0;
}
.faq {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 1.02rem;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary .pl {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sage-wash);
  color: var(--leaf);
  display: grid;
  place-items: center;
  transition: transform 0.3s ease;
  font-size: 1.1rem;
}
.faq[open] summary .pl {
  transform: rotate(45deg);
}
.faq .ans {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* APPOINTMENT */
.appt {
  background: var(--stone);
}
.appt-card {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  overflow: hidden;
}
.appt-card .left {
  background: var(--garnet);
  color: #fff;
  padding: 48px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.appt-card .left h2 {
  color: #fff;
  font-size: 2.1rem;
}
.appt-card .left p {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 14px;
}
.appt-card .left ul {
  list-style: none;
  margin-top: 26px;
  display: grid;
  gap: 14px;
}
.appt-card .left li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.95rem;
}
.appt-card .left li svg {
  flex: 0 0 auto;
  color: var(--gold);
}
.appt-card .right {
  padding: 44px 42px;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: var(--body);
  font-size: 0.95rem;
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--garnet);
  box-shadow: 0 0 0 3px rgba(142, 27, 27, 0.1);
}
.field textarea {
  resize: vertical;
  min-height: 84px;
}
.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.consent {
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.5;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 42px;
  align-items: stretch;
}
.contact-info .ci {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info .ci:last-child {
  border-bottom: 0;
}
.contact-info .ic {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--sage-wash);
  color: var(--leaf);
  display: grid;
  place-items: center;
}
.contact-info .ci b {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: block;
  margin-bottom: 3px;
}
.contact-info .ci a,
.contact-info .ci p {
  font-size: 1.02rem;
  color: var(--ink);
  font-weight: 500;
}
.map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
  border: 1px solid var(--line);
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  min-height: 420px;
}

/* FOOTER */
footer {
  background: var(--garnet-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 70px 0 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.foot-brand img {
  width: min(100%, 220px);
  height: auto;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-bottom: 18px;
}
.foot-brand p {
  font-size: 0.92rem;
  max-width: 32ch;
}
footer h4 {
  color: #fff;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
footer ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
footer ul a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s, padding 0.2s;
}
footer ul a:hover {
  color: #fff;
  padding-left: 4px;
}
.foot-areas {
  font-size: 0.86rem;
  line-height: 1.9;
}
.foot-bottom {
  margin-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}
.disclaimer {
  background: rgba(0, 0, 0, 0.18);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 16px 0;
  text-align: center;
  line-height: 1.6;
}

/* FLOATING */
.floaters {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 26px -8px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease;
}
.float-btn:hover {
  transform: scale(1.08);
}
.float-wa {
  background: #25d366;
}
.float-call {
  background: var(--garnet);
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .appt-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid,
  .svc-grid,
  .why-grid,
  .tst-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .doc-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
  .steps::before {
    display: none;
  }
  .nav-links {
    display: none;
  }
  .burger {
    display: flex;
  }
  .nav-cta > .btn-primary {
    display: none;
  }
  .brand img {
    width: clamp(178px, 38vw, 235px);
    max-height: clamp(86px, 9.5vw, 106px);
  }
  header.nav.scrolled .brand img {
    width: clamp(168px, 36vw, 218px);
    max-height: clamp(82px, 8.5vw, 98px);
  }
  .hero {
    padding-top: 128px;
  }
  .hero-media {
    max-width: 440px;
    margin: 10px auto 30px;
  }
  .appt-card .left {
    padding: 38px 30px;
  }
  .appt-card .right {
    padding: 34px 30px;
  }
  .map iframe,
  .map {
    min-height: 340px;
  }
  .mobile-menu.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(251, 246, 239, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    border-top: 1px solid var(--line);
    padding: 8px 24px 22px;
  }
  .mobile-menu.open a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 500;
    font-size: 1rem;
  }
  .mobile-menu.open .btn {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .wrap {
    padding: 0 16px;
  }
  .sec {
    padding: clamp(48px, 12vw, 72px) 0;
  }
  .trust-grid,
  .svc-grid,
  .why-grid,
  .tst-grid,
  .steps,
  .foot-grid,
  .row2 {
    grid-template-columns: 1fr;
  }
  .doc {
    grid-template-columns: 1fr;
  }
  .doc .ph img {
    min-height: 280px;
    max-height: 340px;
  }
  .hero {
    padding-top: 112px;
    padding-bottom: 44px;
  }
  .hero h1 {
    font-size: clamp(2rem, 8.5vw, 2.4rem);
  }
  .hero p.sub {
    font-size: 1rem;
  }
  .hero-cta .btn {
    flex: 1 1 100%;
    justify-content: center;
  }
  .hero-trust {
    gap: 16px;
  }
  .hero-trust .t {
    flex: 1 1 calc(50% - 8px);
    min-width: 120px;
  }
  .hero-trust .t + .t {
    padding-left: 0;
    border-left: 0;
  }
  .hero-badge {
    left: 0;
    right: 0;
    max-width: none;
    bottom: 20px;
  }
  .hero-ring {
    display: none;
  }
  .nav-call span {
    display: none;
  }
  .nav-call {
    width: 40px;
    height: 40px;
    justify-content: center;
    border-radius: 50%;
    background: rgba(142, 27, 27, 0.08);
  }
  header.nav,
  header.nav.scrolled {
    padding: 12px 0;
  }
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .foot-brand img {
    width: min(100%, 180px);
    padding: 0;
  }
  .foot-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    margin-top: 40px;
  }
  .floaters {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }
  .float-btn {
    width: 50px;
    height: 50px;
  }
  .faq summary {
    padding: 16px 18px;
    font-size: 0.96rem;
  }
  .faq .ans {
    padding: 0 18px 18px;
    font-size: 0.9rem;
  }
  .appt-card .left,
  .appt-card .right {
    padding: 28px 20px;
  }
  .media-tag {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 16px;
    display: inline-block;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

#trust,
#testimonials {
  background: var(--cream);
}

#about,
#contact,
#faq,
.sec-white {
  background: var(--white);
}

.sec-intro {
  margin-bottom: 46px;
}

.sec-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-top: 12px;
}

.sec-title--about {
  margin: 14px 0 18px;
}

.about-note {
  margin-top: 16px;
  color: var(--muted);
}

.btn-block {
  width: 100%;
  justify-content: center;
}