:root {
  --navy-950: #020b0f;
  --navy-900: #031217;
  --navy-850: #061b24;
  --navy-800: #092a34;
  --navy-700: #0d3440;
  --gold-650: #9f6e1d;
  --gold-600: #b9862c;
  --gold-500: #d6a64f;
  --gold-300: #f2c46d;
  --cream: #f5f1e8;
  --paper: #fffaf0;
  --white: #ffffff;
  --ink: #0b2028;
  --muted-dark: #556064;
  --line-dark: rgba(214, 166, 79, 0.26);
  --line-light: rgba(3, 18, 23, 0.14);
  --shadow-dark: 0 24px 70px rgba(0, 0, 0, 0.28);
  --shadow-light: 0 24px 70px rgba(3, 18, 23, 0.12);
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1240px;
  --radius: 12px;
  --header-height: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--cream);
  background: var(--navy-950);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.24;
  background-image: radial-gradient(rgba(245, 241, 232, 0.14) 0.7px, transparent 0.7px);
  background-size: 5px 5px;
}
a { color: inherit; text-decoration: none; }
button, a { touch-action: manipulation; }
button, summary, .btn { cursor: pointer; }
img, svg { display: block; }
img { max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { position: relative; padding: 96px 0; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 3000;
  padding: 10px 16px;
  color: var(--navy-950);
  background: var(--gold-300);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--gold-300); outline-offset: 4px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(214, 166, 79, 0.16);
  background: rgba(2, 11, 15, 0.86);
  backdrop-filter: blur(18px);
  transition: background 200ms ease, box-shadow 200ms ease;
}
.site-header.is-scrolled { background: rgba(2, 11, 15, 0.97); box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2); }
.header-inner { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { min-height: 48px; display: grid; align-content: center; line-height: 1.04; text-transform: uppercase; }
.brand-name { color: var(--white); font-size: 1rem; font-weight: 800; }
.brand-area { color: var(--gold-300); font-size: 0.95rem; }
.brand small { margin-top: 4px; color: rgba(245, 241, 232, 0.72); font-size: 0.59rem; font-weight: 700; letter-spacing: 0.02em; }
.main-nav { display: flex; align-items: center; gap: 22px; color: rgba(245, 241, 232, 0.76); font-size: 0.82rem; font-weight: 600; }
.main-nav a { min-height: 44px; display: inline-flex; align-items: center; transition: color 180ms ease; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--gold-300); }

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.2; }
.btn:hover { transform: translateY(-2px); }
.btn-gold { color: var(--navy-950); background: linear-gradient(135deg, var(--gold-300), #e9a72e); box-shadow: 0 14px 30px rgba(214, 166, 79, 0.2); }
.btn-gold:hover { box-shadow: 0 18px 36px rgba(214, 166, 79, 0.3); }
.btn-outline-dark { color: var(--ink); border-color: rgba(3, 18, 23, 0.4); background: transparent; }
.btn-outline-dark:hover { color: var(--paper); background: var(--navy-900); }
.btn-large { min-height: 60px; padding-inline: 30px; font-size: 0.98rem; }
.btn-full { width: 100%; }
.header-cta { min-height: 48px; padding: 11px 20px; }

.eyebrow { margin-bottom: 18px; color: var(--gold-300); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.eyebrow-dark { color: var(--gold-650); }
.section-head { max-width: 860px; margin-bottom: 46px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2, .diagnosis-grid h2, .concerns-grid h2, .info-grid h2, .authority-intro h2, .final-panel h2 {
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 4.6rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.035em;
}
.section-head > p:last-child { max-width: 720px; margin-bottom: 0; color: var(--muted-dark); font-size: 1.05rem; }
.section-head.center > p:last-child { margin-inline: auto; }
.section-action { display: flex; justify-content: center; margin-top: 38px; }

.hero { position: relative; min-height: clamp(720px, calc(100svh - var(--header-height)), 800px); display: grid; overflow: hidden; background: var(--navy-950); }
.hero-image { position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(2, 11, 15, 0.98) 0%, rgba(2, 11, 15, 0.9) 38%, rgba(2, 11, 15, 0.26) 72%, rgba(2, 11, 15, 0.1) 100%), linear-gradient(0deg, rgba(2, 11, 15, 0.7), transparent 45%), url("assets/dr-pedro-escritorio.jpg"); background-size: cover; background-position: center 42%; }
.hero-inner { position: relative; z-index: 1; display: flex; align-items: center; padding-block: 52px; }
.hero-copy { width: min(760px, 64%); }
.hero h1 { margin-bottom: 24px; color: var(--paper); font-family: var(--font-heading); font-size: clamp(3rem, 5.2vw, 5.65rem); font-weight: 500; line-height: 0.99; letter-spacing: -0.045em; }
.hero h1 span { color: var(--gold-300); font-weight: 600; }
.hero-lead { max-width: 680px; margin-bottom: 28px; color: rgba(245, 241, 232, 0.86); font-size: 1.08rem; line-height: 1.72; }
.microcopy { max-width: 620px; margin: 20px 0 0; color: rgba(245, 241, 232, 0.58); font-size: 0.78rem; line-height: 1.55; }

.pain-section, .fronts-section, .process-section, .faq-section { color: var(--ink); background: radial-gradient(circle at 85% 10%, rgba(242, 196, 109, 0.16), transparent 24%), var(--cream); }
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.pain-card { min-height: 250px; padding: 34px; border: 1px solid var(--line-light); border-radius: var(--radius); background: rgba(255, 250, 240, 0.72); box-shadow: 0 8px 28px rgba(3, 18, 23, 0.05); }
.pain-card > span, .process-card > span { display: block; margin-bottom: 28px; color: var(--gold-650); font-family: var(--font-heading); font-size: 1.55rem; }
.pain-card h3 { max-width: 500px; margin-bottom: 13px; font-size: 1.22rem; line-height: 1.3; }
.pain-card p { margin-bottom: 0; color: var(--muted-dark); }

.diagnosis-section { background: radial-gradient(circle at 10% 20%, rgba(214, 166, 79, 0.13), transparent 28%), var(--navy-900); }
.diagnosis-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 90px; }
.diagnosis-grid h2 { max-width: 650px; margin-bottom: 0; }
.diagnosis-copy { padding-left: 34px; border-left: 1px solid var(--gold-500); }
.diagnosis-copy p { color: rgba(245, 241, 232, 0.72); font-size: 1.05rem; }
.diagnosis-copy strong { display: block; margin-top: 26px; color: var(--paper); font-size: 1.08rem; }

.fronts-section { padding-bottom: 110px; }
.fronts-list { display: grid; gap: 22px; }
.front-card { display: grid; grid-template-columns: 250px 1fr; border: 1px solid var(--line-light); border-radius: var(--radius); overflow: hidden; background: var(--paper); box-shadow: var(--shadow-light); scroll-margin-top: 110px; }
.front-index { display: flex; flex-direction: column; justify-content: space-between; padding: 36px; color: var(--paper); background: linear-gradient(155deg, var(--navy-800), var(--navy-950)); }
.front-index span { color: var(--gold-300); font-family: var(--font-heading); font-size: 4.5rem; line-height: 1; }
.front-index small { color: var(--gold-300); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.front-body { padding: 38px 42px; }
.front-body h3 { max-width: 820px; margin-bottom: 18px; font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 500; line-height: 1.08; }
.front-body p { max-width: 850px; color: var(--muted-dark); }
.front-body aside { margin: 22px 0; padding: 16px 20px; border-left: 3px solid var(--gold-500); color: #39474b; background: rgba(214, 166, 79, 0.09); font-size: 0.88rem; }
.time-note { max-width: 850px; margin: 22px 0; padding: 16px 18px; border: 1px solid rgba(185, 134, 44, 0.32); border-radius: 8px; background: linear-gradient(135deg, rgba(242, 196, 109, 0.17), rgba(214, 166, 79, 0.05)); }
.time-note-label { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; color: var(--gold-650); }
.time-note-label svg { width: 19px; height: 19px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.time-note-label strong { font-size: 0.76rem; letter-spacing: 0.09em; text-transform: uppercase; }
.front-body .time-note p { margin-bottom: 7px; color: #354449; font-size: 0.88rem; line-height: 1.55; }
.time-note small { display: block; color: #5d5b50; font-size: 0.8rem; line-height: 1.5; }
.time-note-priority { border-color: rgba(159, 110, 29, 0.58); background: linear-gradient(135deg, rgba(242, 196, 109, 0.28), rgba(214, 166, 79, 0.09)); box-shadow: inset 3px 0 0 var(--gold-500); }
.text-link { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 22px; border-radius: 999px; color: var(--navy-950); background: linear-gradient(135deg, var(--gold-300), #e9a72e); box-shadow: 0 12px 26px rgba(159, 110, 29, 0.18); font-size: 0.91rem; font-weight: 800; line-height: 1.2; transition: transform 180ms ease, box-shadow 180ms ease; }
.text-link span { transition: transform 180ms ease; }
.text-link:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(159, 110, 29, 0.26); }
.text-link:hover span { transform: translateX(4px); }

.concerns-section { background: radial-gradient(circle at 75% 5%, rgba(214, 166, 79, 0.12), transparent 30%), var(--navy-950); }
.concerns-grid { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 72px; align-items: center; }
.concerns-grid > div:first-child > p:not(.eyebrow) { color: rgba(245, 241, 232, 0.7); }
.concern-panel { padding: 34px; border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(9, 42, 52, 0.62); box-shadow: var(--shadow-dark); }
.concern-panel h3 { margin-bottom: 22px; font-family: var(--font-heading); font-size: 1.8rem; font-weight: 500; line-height: 1.2; }
.concern-options { display: grid; gap: 10px; margin-bottom: 22px; }
.concern-options button { min-height: 52px; padding: 13px 16px; border: 1px solid rgba(214, 166, 79, 0.25); border-radius: 7px; color: rgba(245, 241, 232, 0.86); background: rgba(2, 11, 15, 0.44); font: inherit; font-size: 0.91rem; text-align: left; transition: border-color 180ms ease, color 180ms ease, background 180ms ease; }
.concern-options button:hover, .concern-options button[aria-pressed="true"] { border-color: var(--gold-300); color: var(--navy-950); background: var(--gold-300); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 0; list-style: none; }
.process-card { min-height: 270px; padding: 30px; border: 1px solid var(--line-light); border-radius: var(--radius); background: var(--paper); }
.process-card h3 { margin-bottom: 12px; font-size: 1.08rem; line-height: 1.3; }
.process-card p { margin-bottom: 0; color: var(--muted-dark); font-size: 0.92rem; }

.info-section { background: var(--navy-850); }
.info-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center; }
.info-grid > div > p:not(.eyebrow) { color: rgba(245, 241, 232, 0.7); }
.info-grid strong { display: block; margin: 26px 0; padding-left: 20px; border-left: 2px solid var(--gold-500); color: var(--paper); }
.info-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 0; padding: 0; list-style: none; }
.info-list li { min-height: 92px; display: flex; align-items: center; gap: 16px; padding: 18px; border: 1px solid var(--line-dark); border-radius: 8px; color: rgba(245, 241, 232, 0.84); background: rgba(2, 11, 15, 0.38); }
.info-list span { color: var(--gold-300); font-family: var(--font-heading); font-size: 1.2rem; }

.authority { background: var(--navy-950); }
.authority-intro { max-width: 920px; margin-bottom: 56px; text-align: center; }
.authority-intro p:last-child { max-width: 820px; margin-inline: auto; color: rgba(245, 241, 232, 0.68); }
.authority-grid { display: grid; grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr); gap: 64px; align-items: center; padding-block: 34px 58px; }
.authority-grid + .authority-grid { margin-top: 18px; padding-top: 64px; border-top: 1px solid var(--line-dark); }
.authority-grid-reverse .authority-photo { order: 2; }
.authority-photo { overflow: hidden; border: 1px solid var(--line-dark); border-radius: var(--radius); background: var(--navy-800); box-shadow: var(--shadow-dark); }
.authority-photo img { width: 100%; height: 560px; object-fit: cover; object-position: center 22%; }
.authority-grid-reverse .authority-photo img { object-position: center 24%; }
.authority-copy h3 { margin-bottom: 10px; color: var(--paper); font-family: var(--font-heading); font-size: clamp(2.3rem, 4vw, 4.1rem); font-weight: 500; line-height: 1.05; }
.authority-copy .oab { margin-bottom: 24px; color: var(--gold-300); font-size: 0.92rem; font-weight: 800; }
.authority-copy > p:not(.oab) { color: rgba(245, 241, 232, 0.7); }
.authority-points { display: grid; gap: 9px; margin: 26px 0; }
.authority-points span { min-height: 50px; display: flex; align-items: center; padding: 11px 16px; border-left: 2px solid var(--gold-500); color: rgba(245, 241, 232, 0.82); background: rgba(9, 42, 52, 0.48); }

.faq-list { max-width: 940px; }
.faq-item { border-bottom: 1px solid var(--line-light); }
.faq-item:first-child { border-top: 1px solid var(--line-light); }
.faq-item summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 8px; color: var(--ink); font-weight: 700; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { flex: 0 0 auto; content: "+"; color: var(--gold-650); font-family: var(--font-heading); font-size: 1.8rem; font-weight: 400; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { max-width: 780px; padding: 0 8px 22px; color: var(--muted-dark); }

.final-cta { padding-block: 106px; background: radial-gradient(circle at 50% 0%, rgba(214, 166, 79, 0.16), transparent 36%), var(--navy-900); text-align: center; }
.final-panel { max-width: 940px; }
.final-panel > p { max-width: 700px; margin: 0 auto 28px; color: rgba(245, 241, 232, 0.74); font-size: 1.06rem; }
.final-panel .eyebrow { margin-bottom: 18px; color: var(--gold-300); }
.final-panel > span { max-width: 680px; display: block; margin: 20px auto 0; color: rgba(245, 241, 232, 0.5); font-size: 0.77rem; }

.site-footer { padding: 58px 0 32px; border-top: 1px solid var(--line-dark); background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.footer-brand { width: fit-content; margin-bottom: 20px; }
.footer-grid p, .footer-grid small, .footer-contact { color: rgba(245, 241, 232, 0.58); font-size: 0.76rem; }
.footer-contact { display: grid; align-content: start; gap: 6px; }
.footer-contact strong { margin-bottom: 4px; color: var(--paper); font-size: 0.88rem; }
.footer-note { margin-top: 34px; padding-top: 24px; border-top: 1px solid rgba(214, 166, 79, 0.13); }
.footer-note p { max-width: 880px; margin: 0; color: rgba(245, 241, 232, 0.44); font-size: 0.72rem; }
.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .main-nav { display: none; }
  .hero-copy { width: min(720px, 67%); }
  .hero h1 { font-size: clamp(3rem, 6.5vw, 5rem); }
  .front-card { grid-template-columns: 200px 1fr; }
  .authority-grid { gap: 42px; }
  .authority-photo img { height: 500px; }
}

@media (max-width: 760px) {
  :root { --header-height: 104px; }
  html { scroll-padding-top: 112px; }
  body { padding-bottom: calc(86px + env(safe-area-inset-bottom)); }
  .container { width: min(calc(100% - 32px), var(--max)); }
  .section { padding: 68px 0; }
  .header-inner { min-height: var(--header-height); gap: 12px; }
  .brand-name { font-size: 1.05rem; }
  .brand-area { font-size: 0.92rem; }
  .brand small { font-size: 0.55rem; }
  .header-cta { min-width: 122px; min-height: 48px; padding-inline: 17px; font-size: 0.88rem; }
  .header-cta svg { display: none; }
  .section-head { margin-bottom: 32px; }
  .section-head h2, .diagnosis-grid h2, .concerns-grid h2, .info-grid h2, .authority-intro h2, .final-panel h2 { font-size: clamp(2.1rem, 10vw, 3rem); line-height: 1.06; }
  .section-head > p:last-child { font-size: 0.98rem; }
  .section-action { margin-top: 28px; }
  .section-action .btn { width: 100%; }
  .eyebrow { margin-bottom: 14px; }

  .hero { min-height: auto; padding-top: 220px; }
  .hero-image { height: 290px; background-image: linear-gradient(0deg, var(--navy-950) 0%, rgba(2, 11, 15, 0.16) 66%), url("assets/dr-pedro-escritorio.jpg"); background-size: auto 320px; background-repeat: no-repeat; background-position: 61% top; }
  .hero-inner { align-items: flex-start; padding: 14px 0 48px; }
  .hero-copy { width: 100%; }
  .hero h1 { margin-bottom: 18px; font-size: clamp(2.15rem, 10vw, 2.8rem); line-height: 1.01; }
  .hero-lead { margin-bottom: 22px; font-size: 0.94rem; line-height: 1.58; }
  .hero .btn { width: 100%; padding-inline: 16px; gap: 8px; font-size: 0.88rem; }
  .microcopy { font-size: 0.74rem; }

  .pain-grid, .diagnosis-grid, .concerns-grid, .info-grid, .footer-grid, .authority-grid { grid-template-columns: 1fr; }
  .pain-grid { gap: 12px; }
  .pain-card { min-height: 0; padding: 24px; }
  .pain-card > span, .process-card > span { margin-bottom: 16px; }
  .pain-card h3 { font-size: 1.08rem; }
  .pain-card p { font-size: 0.91rem; }
  .diagnosis-grid, .concerns-grid, .info-grid { gap: 34px; }
  .diagnosis-copy { padding: 22px 0 0; border-top: 1px solid var(--gold-500); border-left: 0; }

  .fronts-section { padding-bottom: 76px; }
  .front-card { grid-template-columns: 1fr; }
  .front-index { min-height: 104px; flex-direction: row; align-items: center; padding: 22px 24px; }
  .front-index span { font-size: 3.2rem; }
  .front-index small { max-width: 180px; text-align: right; }
  .front-body { padding: 26px 24px 28px; }
  .front-body h3 { font-size: 1.8rem; }
  .front-body p { font-size: 0.93rem; }
  .front-body aside { margin-block: 18px; padding: 14px 16px; }
  .time-note { margin-block: 18px; padding: 14px 15px; }
  .front-body .time-note p { font-size: 0.86rem; }
  .time-note small { font-size: 0.78rem; }
  .text-link { width: 100%; font-size: 0.9rem; }

  .concern-panel { padding: 24px 20px; }
  .concern-panel h3 { font-size: 1.55rem; }
  .concern-options button { min-height: 56px; }

  .process-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .process-card { min-height: 250px; padding: 22px 18px; }
  .process-card p { font-size: 0.86rem; }
  .info-list { gap: 8px; }
  .info-list li { min-height: 106px; display: grid; align-content: center; gap: 4px; padding: 14px; font-size: 0.86rem; }

  .authority-intro { margin-bottom: 30px; text-align: left; }
  .authority-grid { gap: 24px; padding-block: 26px 46px; }
  .authority-grid + .authority-grid { margin-top: 4px; padding-top: 46px; }
  .authority-grid-reverse .authority-photo { order: 0; }
  .authority-photo img { height: 430px; object-position: center 18%; }
  .authority-grid-reverse .authority-photo img { height: 460px; object-position: center 20%; }
  .authority-copy h3 { font-size: 2.45rem; }
  .authority-copy .btn { width: 100%; }
  .authority-points span { min-height: 48px; font-size: 0.9rem; }

  .faq-item summary { min-height: 72px; padding-inline: 2px; font-size: 0.93rem; line-height: 1.45; }
  .faq-item p { padding-inline: 2px; font-size: 0.91rem; }
  .final-cta { padding-block: 76px; }
  .final-panel .btn { width: 100%; }
  .footer-grid { gap: 30px; }
  .site-footer { padding-top: 46px; }

  .mobile-cta { position: fixed; right: 0; bottom: 0; left: 0; z-index: 1200; display: block; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); border-top: 1px solid rgba(214, 166, 79, 0.26); background: rgba(2, 11, 15, 0.96); backdrop-filter: blur(16px); opacity: 0; pointer-events: none; transform: translateY(110%); transition: opacity 180ms ease, transform 180ms ease; }
  .mobile-cta.is-visible { opacity: 1; pointer-events: auto; transform: none; }
  .mobile-cta .btn { width: 100%; min-height: 58px; }
}

@media (max-width: 430px) {
  .header-cta { min-width: 116px; padding-inline: 14px; }
  .hero { padding-top: 210px; }
  .hero-image { height: 280px; background-size: auto 310px; background-position: 61% top; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 0; }
  .info-list { grid-template-columns: 1fr; }
  .info-list li { min-height: 76px; display: flex; gap: 14px; }
  .authority-photo img { height: 390px; }
  .authority-grid-reverse .authority-photo img { height: 430px; }
}

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