:root {
  --cream: #f4efe5;
  --ivory: #fbf8f1;
  --paper: #fffdf8;
  --forest: #18382d;
  --forest-soft: #28483c;
  --olive: #68745a;
  --sage: #aab39a;
  --sage-light: #dfe4d7;
  --petal: #d9a9a2;
  --petal-deep: #b97872;
  --gold: #b6a36c;
  --ink: #1d2924;
  --muted: #5f6963;
  --line: rgba(24, 56, 45, .16);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 30px 80px rgba(24, 56, 45, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--petal-deep); outline-offset: 4px; }

.shell { width: min(1240px, calc(100% - 64px)); margin-inline: auto; }
.narrow { width: min(820px, 100%); }
.section { padding: 112px 0; }
.section--soft { background: var(--cream); }
.section--forest { background: var(--forest); color: var(--ivory); }
.section--line { border-block: 1px solid var(--line); }
.eyebrow {
  margin: 0 0 20px;
  color: var(--olive);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; margin: 0 12px 4px 0; display: inline-block; background: currentColor; }
.eyebrow--light { color: #dfe8d9; }
h1, h2, h3, .display {
  margin-top: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(3.45rem, 6vw, 6.25rem); line-height: .96; }
h2 { font-size: clamp(2.55rem, 4.6vw, 4.65rem); line-height: 1; }
h3 { font-size: 1.65rem; line-height: 1.15; }
.section--forest h1, .section--forest h2, .section--forest h3 { color: var(--ivory); }
.lead { color: var(--muted); font-size: 1.12rem; line-height: 1.75; }
.section--forest .lead { color: rgba(255,255,255,.75); }
.muted { color: var(--muted); }

.site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 80;
  background: rgba(251, 248, 241, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav-bar { min-height: 94px; display: flex; align-items: center; gap: 20px; }
.brand { width: 270px; min-width: 270px; height: 72px; margin-right: auto; display: flex; align-items: center; gap: 14px; overflow: visible; }
.brand-symbol { width: 78px; min-width: 78px; height: 58px; display: grid; place-items: center; overflow: visible; }
.brand-symbol img { width: 76px; max-width: none; height: 50px; object-fit: contain; filter: sepia(1) saturate(.55) brightness(.63); }
.brand-copy { min-width: 0; display: grid; line-height: 1; color: #5c573f; white-space: nowrap; }
.brand-copy strong { font-family: var(--serif); font-size: 1.48rem; font-weight: 600; letter-spacing: .14em; }
.brand-copy small { margin-top: 8px; font-size: .55rem; font-weight: 800; letter-spacing: .24em; }
.desktop-nav { display: flex; align-items: center; gap: clamp(14px, 1.4vw, 24px); }
.desktop-nav > a, .nav-dropdown > summary { color: var(--forest); font-size: .89rem; font-weight: 650; cursor: pointer; list-style: none; }
.nav-dropdown { position: relative; }
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after { content: "⌄"; margin-left: 6px; color: var(--olive); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 28px;
  left: -24px;
  width: 280px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.nav-dropdown[open] .nav-dropdown-menu, .nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -18px; height: 18px; }
.nav-dropdown-menu a { display: block; padding: 10px 12px; border-bottom: 1px solid var(--line); font-size: .86rem; }
.nav-dropdown-menu a:last-child { border-bottom: 0; }
.social-links { display: flex; align-items: center; gap: 7px; }
.social-links > a { width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--forest); background: rgba(255,255,255,.52); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.social-links > a:hover { transform: translateY(-2px); border-color: var(--olive); background: var(--paper); }
.social-links svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.social-links .linktree-mark { fill: currentColor; stroke: none; }
.social-links .doctoralia-link img { width: 23px; height: 23px; object-fit: contain; }
.mobile-socials { margin-top: 12px; }
.mobile-toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--line); color: var(--forest); background: transparent; }
.mobile-panel { display: none; }

.button {
  min-height: 54px;
  padding: 14px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--forest);
  border-radius: 14px;
  color: white;
  background: var(--forest);
  font-size: .92rem;
  font-weight: 750;
  box-shadow: 0 16px 34px rgba(24,56,45,.16);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { background: var(--forest-soft); transform: translateY(-2px); box-shadow: 0 20px 42px rgba(24,56,45,.22); }
.button--small { min-height: 48px; padding: 12px 19px; }
.button--ghost { color: var(--forest); background: transparent; box-shadow: none; }
.button--light { color: var(--forest); background: var(--ivory); border-color: var(--ivory); }
.text-link { display: inline-flex; gap: 10px; align-items: center; padding-bottom: 4px; border-bottom: 1px solid currentColor; color: var(--forest); font-weight: 750; }
.actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }

.hero { min-height: calc(100vh - 94px); overflow: hidden; display: grid; align-items: center; }
.hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 56px; padding: 52px 0 66px; }
.hero-copy { position: relative; z-index: 3; }
.hero-copy h1 { margin-bottom: 26px; }
.hero-copy .lead { max-width: 620px; }
.care-pill { width: fit-content; margin-bottom: 26px; padding: 10px 17px; border: 1px solid rgba(104,116,90,.5); border-radius: 999px; color: var(--olive); font-size: .82rem; font-weight: 700; }
.credentials { margin-top: 30px; color: var(--olive); font-size: .82rem; font-weight: 700; letter-spacing: .05em; }
.hero-art { min-height: 690px; position: relative; display: flex; align-items: center; }
.hero-art::before { content: ""; position: absolute; width: 74%; aspect-ratio: 1; right: -10%; top: 2%; border-radius: 50%; background: var(--sage-light); }
.hero-art::after { content: ""; position: absolute; width: 220px; height: 420px; left: -35px; bottom: 40px; border-radius: 100% 0; border: 1px solid rgba(182,163,108,.58); transform: rotate(18deg); }
.hero-image-frame { position: relative; z-index: 2; width: 100%; height: 640px; overflow: hidden; border-radius: 48% 48% 24px 24px; box-shadow: var(--shadow); }
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }

.trust-strip { padding: 28px 0; border-block: 1px solid var(--line); background: var(--paper); }
.trust-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 24px 46px; }
.trust-item { display: flex; gap: 12px; align-items: center; color: var(--forest); font-size: .87rem; font-weight: 700; }
.trust-item span { width: 33px; height: 33px; border-radius: 50%; display: grid; place-items: center; background: var(--sage-light); }

.heading-row { display: grid; grid-template-columns: 1.05fr .75fr; gap: 80px; align-items: end; margin-bottom: 54px; }
.heading-row h2 { margin-bottom: 0; }
.heading-row p { margin: 0 0 7px; }
.care-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.care-card {
  position: relative;
  min-height: 290px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.44);
  transition: transform .24s ease, background .24s ease, box-shadow .24s ease;
}
.care-card:hover { transform: translateY(-5px); background: var(--paper); box-shadow: 0 24px 58px rgba(24,56,45,.10); }
.care-card:nth-child(1), .care-card:nth-child(2) { grid-column: span 6; }
.care-card:nth-child(n+3) { grid-column: span 4; }
.care-card__number { display: block; margin-bottom: 62px; color: var(--olive); font-family: var(--serif); }
.care-card p { color: var(--muted); font-size: .92rem; }
.care-card__arrow { position: absolute; right: 28px; top: 26px; color: var(--forest); font-size: 1.3rem; }
.care-card--accent { background: var(--forest); }
.care-card--accent h3, .care-card--accent p, .care-card--accent .care-card__number, .care-card--accent .care-card__arrow { color: var(--ivory); }

.journey-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: start; }
.journey-intro { position: sticky; top: 140px; }
.journey-list { counter-reset: step; }
.journey-step { counter-increment: step; display: grid; grid-template-columns: 72px 1fr; gap: 24px; padding: 30px 0; border-top: 1px solid rgba(255,255,255,.2); }
.journey-step:last-child { border-bottom: 1px solid rgba(255,255,255,.2); }
.journey-step::before { content: counter(step, decimal-leading-zero); width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; font-family: var(--serif); }
.journey-step p { margin: 0; color: rgba(255,255,255,.72); }

.doctor-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 88px; align-items: center; }
.doctor-photo { position: relative; padding: 0 0 46px 42px; }
.doctor-photo::before { content: ""; position: absolute; inset: 45px 42px 0 0; border-radius: 48% 48% 20px 20px; background: var(--petal); opacity: .5; }
.doctor-photo img { position: relative; width: 100%; height: 650px; object-fit: cover; object-position: 50% 20%; border-radius: 48% 48% 18px 18px; filter: saturate(.84) contrast(.98); }
.doctor-note { position: absolute; right: 0; bottom: 0; max-width: 320px; padding: 22px; background: var(--forest); color: var(--ivory); box-shadow: var(--shadow); }
.doctor-note strong { display: block; font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.fact-list { margin: 28px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.fact-list li { padding: 14px 0 14px 24px; border-bottom: 1px solid var(--line); position: relative; }
.fact-list li::before { content: "•"; position: absolute; left: 4px; color: var(--petal-deep); }

.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.content-card { border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: var(--paper); }
.content-card__visual { height: 220px; position: relative; overflow: hidden; background: linear-gradient(140deg, var(--sage-light), var(--cream)); }
.content-card__visual::before, .content-card__visual::after { content: ""; position: absolute; border: 1px solid var(--gold); border-radius: 100% 0; transform: rotate(25deg); }
.content-card__visual::before { width: 180px; height: 90px; right: -30px; bottom: 18px; }
.content-card__visual::after { width: 120px; height: 60px; right: 48px; bottom: 72px; }
.content-card__body { padding: 26px; }
.content-card__body small { color: var(--olive); font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.content-card h3 { margin: 13px 0 12px; }

.soon-panel { position: relative; overflow: hidden; padding: 72px; border-radius: 34px; background: var(--forest); color: var(--ivory); }
.soon-panel::after { content: ""; position: absolute; width: 430px; height: 210px; right: -130px; bottom: -80px; border: 1px solid rgba(255,255,255,.24); border-radius: 100% 0; transform: rotate(-20deg); }
.soon-panel h2 { max-width: 850px; color: var(--ivory); }
.soon-panel p { max-width: 780px; color: rgba(255,255,255,.72); }
.soon-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.soon-tags span { padding: 9px 17px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 140px; }
.faq-list details { padding: 25px 0; border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 18px; cursor: pointer; list-style: none; color: var(--forest); font-family: var(--serif); font-size: 1.42rem; font-weight: 600; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-family: var(--sans); font-weight: 300; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list p { max-width: 730px; margin: 16px 0 0; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: center; }
.contact-card { padding: 42px; border: 1px solid rgba(255,255,255,.18); border-radius: 28px; }
.contact-map { min-height: 480px; overflow: hidden; border-radius: 32px; background: var(--sage-light); }
.contact-map iframe { width: 100%; height: 480px; border: 0; filter: saturate(.55) sepia(.12); }

.page-hero { padding: 82px 0 92px; overflow: hidden; background: var(--cream); border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .75fr; gap: 90px; align-items: center; }
.page-hero h1 { margin-bottom: 24px; }
.page-hero-visual { position: relative; min-height: 440px; overflow: hidden; border-radius: 48% 48% 22px 22px; background: linear-gradient(145deg, var(--sage-light), #f3e3dc); }
.page-hero-visual--brand { display: grid; place-items: center; padding: 58px; }
.page-hero-visual::before, .page-hero-visual::after { content: ""; position: absolute; border: 1px solid var(--gold); border-radius: 100% 0; }
.page-hero-visual::before { width: 360px; height: 180px; right: 16px; bottom: 72px; transform: rotate(-24deg); }
.page-hero-visual::after { width: 230px; height: 115px; right: 110px; bottom: 190px; transform: rotate(30deg); }
.page-hero-visual--photo > img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; border-radius: inherit; }
.page-hero-visual .page-hero-logo { position: relative; z-index: 2; width: min(82%, 360px); height: auto; min-height: 0; object-fit: contain; border-radius: 0; filter: sepia(.18) saturate(.86) contrast(1.05); }
.breadcrumb { margin-bottom: 22px; color: var(--olive); font-size: .82rem; font-weight: 700; }
.breadcrumb a { border-bottom: 1px solid var(--line); }
.service-index { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-index .care-card { min-height: 250px; }
.service-index .care-card { grid-column: auto !important; }
.symptom-row { display: flex; flex-wrap: wrap; gap: 10px; }
.symptom-row a, .symptom-row span { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; color: var(--forest); background: rgba(255,255,255,.5); font-size: .86rem; font-weight: 650; }

.service-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.service-aside { position: sticky; top: 130px; padding: 28px; border-radius: 22px; background: var(--cream); border: 1px solid var(--line); }
.service-aside strong { display: block; margin-bottom: 14px; color: var(--forest); font-family: var(--serif); font-size: 1.3rem; }
.service-aside a { display: block; padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.service-copy h2 { margin: 54px 0 22px; font-size: clamp(2.15rem, 3vw, 3.3rem); }
.service-copy h2:first-child { margin-top: 0; }
.service-copy h3 { margin: 34px 0 12px; }
.service-copy p, .service-copy li { color: var(--muted); }
.service-copy ul { padding-left: 20px; }
.answer-box { margin: 30px 0; padding: 30px; border-left: 3px solid var(--petal-deep); background: var(--cream); }
.answer-box strong { display: block; margin-bottom: 7px; color: var(--forest); font-family: var(--serif); font-size: 1.35rem; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.process-card { padding: 25px; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); }
.process-card span { color: var(--petal-deep); font-family: var(--serif); }
.process-card h3 { margin: 24px 0 10px; font-size: 1.35rem; }

.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 86px; align-items: center; }
.about-photo { min-height: 620px; overflow: hidden; border-radius: 48% 48% 24px 24px; }
.about-photo img { width: 100%; height: 620px; object-fit: cover; object-position: 50% 20%; }
.doctor-gallery { display: grid; grid-template-columns: .72fr 1.28fr; gap: 86px; align-items: center; }
.doctor-gallery figure { margin: 0; }
.doctor-gallery img { width: 100%; height: 620px; object-fit: cover; object-position: center 24%; border-radius: 26px 26px 48% 48%; }
.doctor-gallery figcaption { margin-top: 14px; color: var(--muted); font-size: .82rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { padding: 30px; border-top: 1px solid var(--line); }
.value-card span { color: var(--petal-deep); font-family: var(--serif); font-size: 2rem; }
.article-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.article-card { min-height: 300px; padding: 34px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 25px; background: var(--paper); }
.article-card small { color: var(--olive); text-transform: uppercase; letter-spacing: .1em; font-weight: 750; }
.article-card h2 { margin: 38px 0 14px; font-size: 2.2rem; }
.article-card .text-link { margin-top: auto; align-self: flex-start; }

.site-footer { padding: 70px 0 30px; background: #e8e4d9; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr .75fr; gap: 48px; }
.brand--footer { width: 270px; height: 72px; margin: 0; }
.footer-grid strong { color: var(--forest); }
.footer-grid p, .footer-grid a { color: var(--muted); font-size: .86rem; }
.footer-links { display: grid; gap: 8px; margin-top: 12px; }
.footer-socials { margin-top: 18px; }
.footer-legal { margin-top: 44px; padding-top: 24px; display: grid; justify-items: start; gap: 8px; border-top: 1px solid var(--line); color: var(--muted); font-size: .76rem; }
.footer-legal-links { display: flex; align-items: center; gap: 8px; }
.footer-legal a { border-bottom: 1px solid currentColor; }
.legal-copy { width: min(880px, calc(100% - 64px)); }
.legal-copy h2 { margin: 58px 0 18px; font-size: clamp(2rem, 3.2vw, 3rem); }
.legal-copy p, .legal-copy li { color: var(--muted); font-size: 1rem; }
.legal-copy a { color: var(--forest); border-bottom: 1px solid var(--line); }
.legal-copy ul { padding-left: 22px; }
.legal-updated { padding-bottom: 24px; border-bottom: 1px solid var(--line); font-weight: 700; }
.legal-alert { margin: 34px 0; padding: 28px; border-left: 3px solid var(--petal-deep); background: var(--cream); }
.legal-alert strong { color: var(--forest); font-family: var(--serif); font-size: 1.3rem; }
.legal-alert p { margin-bottom: 0; }
.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 70; padding: 13px 17px; display: flex; align-items: center; gap: 10px; border-radius: 999px; color: white; background: var(--forest); box-shadow: 0 18px 45px rgba(24,56,45,.3); font-size: .83rem; font-weight: 750; }
.floating-whatsapp span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.14); }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .desktop-nav, .nav-bar > .button, .header-socials { display: none; }
  .mobile-toggle { display: grid; place-items: center; }
  .mobile-panel { position: fixed; inset: 94px 0 auto; padding: 20px 32px 30px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .mobile-panel.is-open { display: grid; gap: 8px; }
  .mobile-panel a { padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--forest); font-weight: 700; }
  .mobile-panel .social-links { display: flex; }
  .mobile-panel .social-links a { padding: 0; border: 1px solid var(--line); }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero-art { min-height: 590px; }
  .hero-image-frame { height: 560px; }
  .care-card:nth-child(n) { grid-column: span 6; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 2 / 4; }
}

@media (max-width: 800px) {
  .shell { width: min(100% - 36px, 720px); }
  .section { padding: 78px 0; }
  .nav-bar { min-height: 78px; }
  .brand { width: 244px; min-width: 244px; height: 66px; gap: 10px; }
  .brand-symbol { width: 66px; min-width: 66px; height: 52px; }
  .brand-symbol img { width: 64px; height: 45px; }
  .brand-copy strong { font-size: 1.3rem; }
  .mobile-panel { top: 78px; }
  .hero { min-height: auto; }
  .hero-grid, .page-hero-grid, .heading-row, .journey-grid, .doctor-grid, .doctor-gallery, .faq-grid, .contact-grid, .service-layout, .about-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero-art { min-height: 540px; }
  .hero-image-frame { height: 520px; }
  .heading-row { margin-bottom: 38px; }
  .journey-intro, .faq-intro, .service-aside { position: static; }
  .care-card:nth-child(n) { grid-column: span 12; }
  .content-grid, .values-grid, .process-grid { grid-template-columns: 1fr; }
  .doctor-photo img { height: 580px; }
  .soon-panel { padding: 45px 28px; }
  .service-index, .article-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
}

@media (max-width: 520px) {
  h1 { font-size: clamp(3rem, 14vw, 4rem); }
  h2 { font-size: clamp(2.35rem, 12vw, 3.4rem); }
  .hero-art { min-height: 420px; }
  .hero-image-frame { height: 400px; }
  .brand { width: 218px; min-width: 218px; }
  .brand-symbol { width: 58px; min-width: 58px; }
  .brand-copy strong { font-size: 1.16rem; }
  .brand-copy small { font-size: .48rem; letter-spacing: .2em; }
  .page-hero-visual--brand { padding: 36px; }
  .doctor-photo { padding-left: 18px; }
  .doctor-photo img { height: 500px; }
  .doctor-note { max-width: 270px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal { padding-bottom: 76px; }
  .floating-whatsapp { right: 14px; bottom: 14px; }
}

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