
:root {
  --navy-950: #071522;
  --navy-900: #0b2034;
  --navy-800: #12324d;
  --teal-700: #176b73;
  --teal-600: #23838a;
  --teal-100: #dff1f1;
  --gold-500: #c6a768;
  --gold-300: #e0ca9b;
  --ink: #17212b;
  --muted: #5d6974;
  --line: #d9e0e4;
  --cream: #f7f4ed;
  --paper: #ffffff;
  --soft: #f2f6f7;
  --success: #18794e;
  --danger: #a43d3d;
  --shadow-sm: 0 8px 24px rgba(7, 21, 34, .08);
  --shadow-lg: 0 24px 70px rgba(7, 21, 34, .15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --content: 1180px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  background: #fff;
  color: var(--navy-900);
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--content)); margin-inline: auto; }
.section { padding: 92px 0; }
.section--soft { background: var(--soft); }
.section--cream { background: var(--cream); }
.section--dark { color: #fff; background: var(--navy-900); }
.section--compact { padding: 58px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--teal-700);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold-500); }
.section--dark .eyebrow { color: var(--gold-300); }

h1, h2, h3, h4 {
  margin: 0 0 .55em;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(2.55rem, 6vw, 5.35rem); }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
p { margin: 0 0 1.1rem; }
.lead { font-size: clamp(1.04rem, 2vw, 1.27rem); color: var(--muted); max-width: 760px; }
.section--dark .lead { color: rgba(255,255,255,.76); }
.text-small { font-size: .9rem; color: var(--muted); }
.text-center { text-align: center; }
.max-760 { max-width: 760px; }
.centered { margin-inline: auto; }

.topbar {
  background: var(--navy-950);
  color: rgba(255,255,255,.86);
  font-size: .82rem;
}
.topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.topbar a { color: #fff; text-decoration: none; font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217,224,228,.9);
}
.header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark {
  width: 45px; height: 45px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; background: linear-gradient(135deg, var(--navy-900), var(--teal-600));
  font-family: Georgia, serif; font-weight: 700; letter-spacing: -.05em;
  box-shadow: 0 6px 18px rgba(23,107,115,.24);
}
.brand__text { line-height: 1.15; }
.brand__text strong { display: block; color: var(--navy-900); font-family: Georgia, serif; font-size: 1.01rem; }
.brand__text span { color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .04em; }

.nav { display: flex; align-items: center; gap: 27px; }
.nav a { text-decoration: none; color: var(--navy-900); font-weight: 700; font-size: .91rem; }
.nav a:hover, .nav a:focus-visible { color: var(--teal-700); }
.menu-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--navy-900);
}
.menu-toggle svg { width: 24px; height: 24px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: #fff; background: var(--teal-700); box-shadow: 0 11px 26px rgba(23,107,115,.22); }
.btn--primary:hover { background: var(--teal-600); box-shadow: 0 14px 32px rgba(23,107,115,.28); }
.btn--navy { color: #fff; background: var(--navy-900); }
.btn--ghost { color: var(--navy-900); background: transparent; border-color: rgba(11,32,52,.25); }
.btn--light { color: var(--navy-900); background: #fff; }
.btn--small { min-height: 40px; padding: 9px 16px; font-size: .88rem; }
.btn svg { width: 19px; height: 19px; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, rgba(224,202,155,.25), transparent 28%),
    linear-gradient(120deg, #f7f4ed 0%, #fff 50%, #eef7f7 100%);
}
.hero::before {
  content: "";
  position: absolute;
  right: -180px;
  top: 34px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(23,107,115,.16);
  border-radius: 50%;
}
.hero__grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.05fr .78fr;
  align-items: center;
  gap: 64px;
  padding: 72px 0;
}
.hero h1 span { color: var(--teal-700); }
.hero__lead { font-size: 1.18rem; max-width: 650px; color: #4d5b66; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 22px; }
.credentials { display: flex; flex-wrap: wrap; gap: 9px 20px; color: var(--muted); font-size: .9rem; font-weight: 700; }
.credentials span { display: inline-flex; align-items: center; gap: 7px; }
.credentials span::before { content: "✓"; color: var(--teal-700); }
.hero__visual { position: relative; min-height: 610px; }
.hero__portrait {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(100%, 470px);
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 240px 240px 36px 36px;
  box-shadow: var(--shadow-lg);
}
.hero__badge {
  position: absolute;
  left: -22px;
  bottom: 56px;
  width: 220px;
  padding: 18px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(217,224,228,.8);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}
.hero__badge strong { display: block; color: var(--navy-900); font-family: Georgia, serif; font-size: 1.12rem; }
.hero__badge span { color: var(--muted); font-size: .83rem; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 26px 24px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--navy-900); font-family: Georgia, serif; font-size: 1.05rem; }
.trust-item span { color: var(--muted); font-size: .85rem; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.section-head > div:first-child { max-width: 760px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cards--four { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 1px 0 rgba(7,21,34,.02);
  transition: transform .2s ease, box-shadow .2s ease, border .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: rgba(23,107,115,.35); }
.card__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 14px;
  color: var(--teal-700);
  background: var(--teal-100);
  margin-bottom: 20px;
}
.card__icon svg { width: 25px; height: 25px; }
.card p { color: var(--muted); }
.card__link { color: var(--teal-700); text-decoration: none; font-weight: 800; }
.card__link:hover { text-decoration: underline; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split--reverse > :first-child { order: 2; }
.visual-card { position: relative; }
.visual-card img { width: 100%; max-height: 590px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.visual-card img.portrait-focus { object-position: center top; }
.visual-card__note {
  position: absolute;
  right: -24px;
  bottom: -24px;
  max-width: 270px;
  padding: 20px;
  background: var(--navy-900);
  color: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}
.visual-card__note strong { display: block; font-family: Georgia, serif; font-size: 1.1rem; margin-bottom: 4px; }
.visual-card__note span { color: rgba(255,255,255,.73); font-size: .85rem; }

.check-list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 12px; }
.check-list li { display: grid; grid-template-columns: 24px 1fr; gap: 10px; color: #3d4a54; }
.check-list li::before { content: "✓"; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--teal-700); font-size: .75rem; font-weight: 900; margin-top: 2px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: steps; }
.step {
  counter-increment: steps;
  padding: 27px 24px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
}
.step::before {
  content: "0" counter(steps);
  display: block;
  color: var(--gold-500);
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.step p { color: var(--muted); font-size: .93rem; }

.condition-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.condition {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
}
.condition__num { color: var(--gold-300); font-family: Georgia, serif; font-size: 1.55rem; }
.condition h3 { font-size: 1.15rem; margin-bottom: 5px; }
.condition p { color: rgba(255,255,255,.7); font-size: .9rem; margin: 0; }

.treatments { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.treatment { padding: 30px; border-radius: var(--radius-md); background: #fff; border: 1px solid var(--line); }
.treatment__label { display: inline-block; padding: 5px 10px; border-radius: 999px; background: var(--teal-100); color: var(--teal-700); font-size: .73rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.treatment ul { padding-left: 18px; color: var(--muted); }

.quote-block {
  padding: 45px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.quote-block::after { content: "“"; position: absolute; right: 24px; bottom: -54px; font: 220px Georgia, serif; color: rgba(255,255,255,.05); }
.quote-block blockquote { margin: 0; font: clamp(1.55rem, 3vw, 2.55rem)/1.25 Georgia, serif; max-width: 870px; }
.quote-block p { margin-top: 20px; color: rgba(255,255,255,.72); }

.doctor-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 26px 0; }
.fact { padding: 17px; border-radius: 14px; background: var(--soft); }
.fact strong { display: block; color: var(--navy-900); }
.fact span { color: var(--muted); font-size: .86rem; }

.location-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.location-card { overflow: hidden; border-radius: var(--radius-md); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); }
.location-card__image { height: 210px; background: var(--soft); display: grid; place-items: center; overflow: hidden; }
.location-card__image img { width: 100%; height: 100%; object-fit: cover; }
.location-card__image--logo img { object-fit: contain; padding: 45px; }
.location-card__body { padding: 25px; }
.location-card__meta { color: var(--muted); font-size: .9rem; min-height: 80px; }
.location-card__actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }

.review-panel { display: grid; grid-template-columns: .75fr 1.25fr; gap: 24px; align-items: stretch; }
.review-score { display: grid; place-items: center; text-align: center; padding: 38px; background: var(--cream); border-radius: var(--radius-md); }
.review-score strong { color: var(--navy-900); font: 4rem Georgia, serif; line-height: 1; }
.stars { color: #bd8c22; letter-spacing: .15em; font-size: 1.2rem; }
.review-card { padding: 38px; border-radius: var(--radius-md); border: 1px solid var(--line); }
.review-card blockquote { margin: 0 0 18px; font: 1.35rem/1.45 Georgia, serif; color: var(--navy-900); }
.review-card p { color: var(--muted); }

.faq { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  background: transparent;
  border: 0;
  color: var(--navy-900);
  text-align: left;
  font-weight: 800;
}
.faq-button span:last-child { font-size: 1.45rem; color: var(--teal-700); transition: transform .2s ease; }
.faq-button[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.faq-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-panel > div { overflow: hidden; }
.faq-panel p { color: var(--muted); padding: 0 0 22px; margin: 0; }
.faq-item.is-open .faq-panel { grid-template-rows: 1fr; }

.booking {
  position: relative;
  background: linear-gradient(135deg, var(--cream), #fff);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}
.booking-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 52px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: grid; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
label { font-weight: 800; font-size: .87rem; color: var(--navy-900); }
input, select, textarea {
  width: 100%;
  border: 1px solid #cdd7dc;
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--teal-700); box-shadow: 0 0 0 4px rgba(23,107,115,.11); }
textarea { min-height: 105px; resize: vertical; }
.checkbox { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; font-size: .8rem; color: var(--muted); }
.checkbox input { width: 18px; height: 18px; margin-top: 2px; }
.form-status { min-height: 24px; margin: 8px 0 0; font-size: .88rem; }
.form-status.is-error { color: var(--danger); }

.page-hero { padding: 95px 0 70px; background: linear-gradient(135deg, var(--cream), #eef7f7); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 920px; font-size: clamp(2.5rem, 5vw, 4.7rem); }
.page-hero__grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); gap: 48px; align-items: center; }
.page-hero__image { width: 100%; max-width: 420px; justify-self: end; }
.page-hero__image img { display: block; width: 100%; height: 320px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; color: var(--muted); font-size: .85rem; }
.breadcrumbs a { color: var(--teal-700); text-decoration: none; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 56px; align-items: start; }
.prose { font-size: 1.04rem; }
.prose h2 { margin-top: 2.2em; font-size: clamp(1.65rem, 3vw, 2.45rem); }
.prose h3 { margin-top: 1.7em; }
.prose p, .prose li { color: #41505b; }
.prose ul { padding-left: 23px; }
.alert { padding: 22px; border-left: 4px solid var(--gold-500); background: var(--cream); border-radius: 0 14px 14px 0; }
.alert--urgent { border-left-color: #a94a4a; background: #fff4f4; }
.sidebar { position: sticky; top: 112px; display: grid; gap: 18px; }
.sidebar-card { padding: 24px; border-radius: var(--radius-md); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); }
.sidebar-card ul { list-style: none; padding: 0; margin: 15px 0 0; display: grid; gap: 10px; }
.sidebar-card a { color: var(--teal-700); text-decoration: none; font-weight: 700; }
.sidebar-card .btn.btn--primary,
.sidebar-card .btn.btn--primary:visited,
.sidebar-card .btn.btn--primary:hover,
.sidebar-card .btn.btn--primary:focus-visible { color: #fff !important; }

.cta-band { padding: 64px 0; color: #fff; background: var(--teal-700); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-band h2 { color: #fff; margin: 0; max-width: 740px; }

.site-footer { background: var(--navy-950); color: rgba(255,255,255,.72); }
.footer__grid { display: grid; grid-template-columns: 1.35fr .65fr .8fr; gap: 55px; padding: 68px 0 48px; }
.site-footer h3 { color: #fff; font-size: 1.1rem; }
.site-footer a { color: rgba(255,255,255,.78); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.11); font-size: .8rem; }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 850;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  color: #fff;
  background: #1f9d5a;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(31,157,90,.35);
  text-decoration: none;
}
.whatsapp-float svg { width: 29px; height: 29px; }
.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .nav { gap: 16px; }
  .nav a:not(.btn) { font-size: .84rem; }
  .hero__grid { gap: 34px; }
  .hero__badge { left: -8px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  :root { --header-h: 68px; }
  .topbar__inner { justify-content: center; text-align: center; }
  .topbar__inner span:last-child { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .nav {
    position: absolute;
    left: 20px; right: 20px; top: calc(100% + 10px);
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px; border-radius: 10px; }
  .nav .btn { margin-top: 5px; }
  .hero__grid { grid-template-columns: 1fr; min-height: auto; padding: 58px 0 72px; }
  .page-hero__grid { grid-template-columns: 1fr; gap: 34px; }
  .page-hero__image { max-width: 480px; justify-self: center; }
  .page-hero__image img { height: auto; max-height: 360px; }
  .hero__visual { min-height: 570px; max-width: 520px; width: 100%; margin-inline: auto; }
  .hero__badge { left: 0; bottom: 20px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split, .booking-grid, .review-panel, .article-layout { grid-template-columns: 1fr; gap: 38px; }
  .split--reverse > :first-child { order: initial; }
  .condition-grid, .treatments { grid-template-columns: 1fr; }
  .visual-card__note { right: 15px; bottom: -15px; }
  .sidebar { position: static; }
  .cta-band__inner { align-items: flex-start; flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--content)); }
  .section { padding: 68px 0; }
  .brand__text span { display: none; }
  h1 { font-size: clamp(2.35rem, 12vw, 3.65rem); }
  .hero__visual { min-height: 470px; }
  .hero__portrait { border-radius: 180px 180px 28px 28px; }
  .hero__badge { width: 205px; padding: 15px; }
  .hero__actions .btn { width: 100%; }
  .trust-grid, .cards, .steps, .location-grid, .doctor-facts, .form-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .booking { padding: 28px 20px; }
  .form-field--full { grid-column: auto; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__grid > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .whatsapp-float { bottom: 82px; right: 16px; width: 52px; height: 52px; }
  .mobile-cta {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 900;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 9px 12px max(9px, env(safe-area-inset-bottom));
    background: rgba(255,255,255,.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }
  .mobile-cta .btn { min-height: 44px; padding: 10px 12px; font-size: .82rem; }
  body { padding-bottom: 65px; }
  .quote-block { padding: 30px 23px; }
  .location-card__image { height: 185px; }
}

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