:root {
  --cream: #fff4f7;
  --rose: #ea9aba;
  --magenta: #da659a;
  --brown: #502e23;
  --white: #ffffff;
  --ink: #301c17;
  --muted: #765b54;
  --line: rgba(80, 46, 35, 0.14);
  --shadow: 0 22px 60px rgba(80, 46, 35, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 244, 247, 0.86);
  box-shadow: 0 14px 40px rgba(80, 46, 35, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: min(230px, 32vw);
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.brand-mark,
.doctor-initials {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--cream);
  background: var(--brown);
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
}

.nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--brown);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover {
  background: rgba(234, 154, 186, 0.24);
}

.header-cta,
.menu-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.header-cta {
  padding: 0 16px;
  color: var(--cream);
  background: var(--magenta);
}

.menu-button {
  display: none;
  width: 44px;
  color: var(--brown);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 144px max(24px, calc((100vw - 1180px) / 2)) 72px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/dra-corina-hero.jpg") right 28% / cover no-repeat;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 244, 247, 0.98) 0%, rgba(255, 244, 247, 0.88) 42%, rgba(255, 244, 247, 0.22) 78%),
    linear-gradient(180deg, rgba(255, 244, 247, 0.16), rgba(255, 244, 247, 0.72));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--magenta);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  color: var(--brown);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
}

h1 {
  max-width: 11ch;
  font-size: clamp(46px, 7vw, 82px);
}

.hero h1 span {
  display: block;
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
}

h3 {
  margin: 0;
  color: var(--brown);
  font-size: 20px;
  line-height: 1.2;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.hero-copy {
  max-width: 590px;
  margin: 24px 0;
  color: #5d4038;
  font-size: 19px;
}

.hero-actions,
.contact-actions,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-width: 180px;
  padding: 0 20px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--cream);
  background: var(--brown);
  box-shadow: 0 16px 34px rgba(80, 46, 35, 0.24);
}

.button.ghost,
.button.secondary {
  color: var(--brown);
  background: var(--white);
  border: 1px solid var(--line);
}

.hero-panel {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 34px;
  width: min(420px, calc(100% - 48px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  overflow: visible;
}

.panel-mark {
  position: absolute;
  right: -34px;
  bottom: -44px;
  width: 150px;
  opacity: 0.12;
  pointer-events: none;
}

.hero-panel span {
  position: relative;
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--magenta);
  font-weight: 800;
}

.hero-panel strong {
  position: relative;
  display: block;
  color: var(--brown);
  font-size: 21px;
}

.hero-panel p {
  position: relative;
  margin: 8px 0 0;
  font-size: 14px;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 190px;
  padding: 32px 34px;
  background: var(--white);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  color: var(--brown);
  font-size: 20px;
  line-height: 1.15;
}

.trust-band span {
  margin-top: 5px;
  color: var(--muted);
  white-space: normal;
  line-height: 1.65;
}

.section,
.feature,
.contact {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 94px 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 48px;
  align-items: end;
}

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

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

.service-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 32px rgba(80, 46, 35, 0.06);
}

.service-card svg {
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  color: var(--magenta);
}

.feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: stretch;
  padding: 62px;
  border-radius: 8px;
  color: var(--cream);
  background: var(--brown);
  box-shadow: var(--shadow);
}

.feature h2,
.feature p,
.feature .eyebrow {
  color: var(--cream);
}

.feature p {
  opacity: 0.82;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.check-list svg {
  flex: 0 0 22px;
  color: var(--rose);
}

.feature-metrics {
  display: grid;
  gap: 14px;
}

.feature-metrics > div,
.social-preview {
  padding: 24px;
  border: 1px solid rgba(255, 244, 247, 0.22);
  border-radius: 8px;
  background: rgba(255, 244, 247, 0.08);
}

.social-preview {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  background: rgba(255, 244, 247, 0.14);
}

.social-preview img {
  width: 104px;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.feature-metrics > div > strong,
.feature-metrics > div > span,
.social-preview strong,
.social-preview span {
  display: block;
}

.feature-metrics > div > strong {
  color: var(--rose);
  font-family: "Playfair Display", serif;
  font-size: 42px;
}

.feature-metrics > div > span {
  margin-top: 8px;
  line-height: 1.5;
}

.social-preview strong {
  color: var(--cream);
  font-size: 18px;
}

.social-preview span {
  margin-top: 8px;
  color: rgba(255, 244, 247, 0.82);
  line-height: 1.5;
}

.doctor {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 20px;
  align-items: stretch;
}

.doctor-card,
.quote-box {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
}

.doctor-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  padding: 34px;
}

.doctor-photo-wrap {
  position: relative;
  width: 112px;
  height: 112px;
}

.doctor-photo {
  display: block;
  width: 96px;
  height: 96px;
  border: 5px solid var(--cream);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(80, 46, 35, 0.16);
}

.doctor-photo-mark {
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 42px;
  height: 42px;
  padding: 7px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 20px rgba(80, 46, 35, 0.12);
}

.doctor-initials {
  width: 96px;
  height: 96px;
  font-size: 34px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--brown);
  font-weight: 800;
}

.quote-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 310px;
  padding: 34px;
  background: var(--rose);
  overflow: hidden;
}

.quote-photo {
  width: calc(100% + 68px);
  height: 220px;
  margin: -34px -34px 26px;
  object-fit: cover;
  object-position: center 24%;
}

.quote-box svg {
  width: 42px;
  height: 42px;
  color: var(--cream);
}

.quote-box p {
  margin: 0;
  color: var(--brown);
  font-family: "Playfair Display", serif;
  font-size: 28px;
  line-height: 1.18;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--brown);
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
}

.keyword-band {
  padding-top: 0;
}

.keyword-band > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.keyword-band a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--brown);
  background: var(--white);
  font-weight: 800;
}

.locations {
  padding-top: 38px;
}

.location-card {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}

.location-label {
  color: var(--magenta);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-info h3 {
  margin-top: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.location-map {
  width: 100%;
  min-height: 390px;
  border: 0;
}

.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 90px;
  padding: 42px;
  border-radius: 8px;
  background: var(--magenta);
}

.contact h2,
.contact p,
.contact .eyebrow {
  color: var(--cream);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px max(24px, calc((100vw - 1180px) / 2));
  color: var(--cream);
  background: var(--brown);
  font-size: 14px;
}

.footer-logo {
  display: block;
  width: 210px;
  height: 52px;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--cream);
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
}

.footer-links a {
  color: var(--cream);
  font-weight: 700;
}

.seo-page {
  background: var(--cream);
}

.seo-shell {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 80px;
}

.seo-shell .brand {
  margin-bottom: 38px;
}

.seo-hero,
.seo-content {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.seo-hero {
  padding: clamp(32px, 6vw, 62px);
}

.seo-hero h1 {
  max-width: 12ch;
}

.seo-content {
  margin-top: 20px;
  padding: 34px;
}

.seo-content h2 {
  margin-top: 24px;
  font-size: clamp(28px, 3vw, 40px);
}

.seo-content h2:first-child {
  margin-top: 0;
}

svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

@media (max-width: 900px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: none;
    width: min(300px, 100%);
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: grid;
  }

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

  .header-cta span {
    display: none;
  }

  .hero {
    min-height: 880px;
    padding-top: 126px;
    align-items: start;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 244, 247, 0.99) 0%, rgba(255, 244, 247, 0.94) 48%, rgba(255, 244, 247, 0.34) 82%),
      linear-gradient(90deg, rgba(255, 244, 247, 0.86), rgba(255, 244, 247, 0.18));
  }

  h1 {
    max-width: 9.5ch;
  }

  .hero-panel {
    left: 20px;
    right: 20px;
    bottom: 24px;
    width: auto;
  }

  .trust-band,
  .intro,
  .feature,
  .doctor,
  .location-card,
  .contact {
    grid-template-columns: 1fr;
  }

  .trust-band article {
    padding: 22px;
  }

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

  .feature,
  .location-info,
  .contact {
    padding: 32px 24px;
  }

  .location-map {
    min-height: 330px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .header-cta {
    display: none;
  }

  .brand-logo {
    width: 190px;
    height: 44px;
  }

  .hero {
    min-height: 820px;
    padding-inline: 20px;
  }

  .hero-media {
    background-position: 62% center;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .section {
    width: calc(100% - 32px);
    padding: 66px 0;
  }

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

  .service-card {
    min-height: auto;
  }

  .doctor-card {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .social-preview {
    grid-template-columns: 86px 1fr;
  }

  .social-preview img {
    width: 86px;
  }

  .quote-box p {
    font-size: 24px;
  }

  .contact {
    width: calc(100% - 32px);
  }
}
