/* Amadeo Medical Group — local review · brand kit (medical blue) */
:root {
  --blue: #2B7CB3;
  --blue-logo: #1E73BE;
  --blue-dark: #1A5A87;
  --blue-deep: #0E3754;
  --blue-light: #5AADE0;
  --blue-pale: #E3F1FA;
  --blue-wash: #F0F7FC;
  --warm: #FDFAF6;
  --cream: #FBF7F0;
  --ink: #1F1C18;
  --ink-soft: #504B44;
  --muted: #6E6860;
  --line: #DDD9D4;
  --white: #fff;
  --wa: #25D366;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 6px 20px rgba(14, 55, 84, 0.07), 0 2px 6px rgba(14, 55, 84, 0.03);
  --shadow-lg: 0 16px 48px rgba(14, 55, 84, 0.1);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --wrap: 1120px;
  --header-h: 72px;
  --banner-h: 36px;
  --sticky-h: 64px;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--warm);
  line-height: 1.6;
  padding-top: calc(var(--banner-h) + var(--header-h));
  padding-bottom: calc(var(--sticky-h) + 12px);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-logo); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--blue-dark); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 0.6em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.skip {
  position: absolute; left: -999px; top: 0; background: var(--blue); color: #fff; padding: 0.5rem 1rem; z-index: 1000;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }

.wrap { width: min(100% - 2rem, var(--wrap)); margin-inline: auto; }
.narrow { width: min(100% - 2rem, 720px); }

/* Review banner */
.review-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--banner-h); display: flex; align-items: center; justify-content: center;
  background: #7A1F1F; color: #fff; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; text-align: center; padding: 0 0.75rem;
}

/* Header */
.site-header {
  position: fixed; top: var(--banner-h); left: 0; right: 0; z-index: 150;
  height: var(--header-h); background: rgba(253, 250, 246, 0.92);
  backdrop-filter: blur(12px); border-bottom: 1px solid rgba(221, 217, 212, 0.7);
}
.header-inner {
  height: 100%; display: flex; align-items: center; gap: 1.25rem;
}
.brand {
  display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: inherit; margin-right: auto;
}
.brand img { width: 44px; height: 44px; border-radius: 10px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 0.95rem; font-weight: 700; color: var(--blue-deep); }
.brand-text em { font-style: normal; font-size: 0.7rem; color: var(--muted); font-weight: 500; }
.nav { display: none; gap: 1.1rem; }
.nav a {
  text-decoration: none; color: var(--ink-soft); font-size: 0.88rem; font-weight: 500;
}
.nav a:hover { color: var(--blue); }
.header-ctas { display: none; gap: 0.5rem; }
.nav-toggle {
  width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--white); display: grid; place-content: center; gap: 5px; cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--blue-deep); }
.mobile-nav {
  display: flex; flex-direction: column; gap: 0.75rem; padding: 1rem 1.25rem 1.25rem;
  background: var(--white); border-bottom: 1px solid var(--line);
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav a { text-decoration: none; color: var(--ink); font-weight: 560; }
@media (min-width: 900px) {
  .nav, .header-ctas { display: flex; }
  .nav-toggle, .mobile-nav { display: none !important; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.92rem;
  border-radius: 999px; border: 2px solid transparent; padding: 0.7rem 1.25rem;
  text-decoration: none; cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 0.45rem 0.95rem; font-size: 0.82rem; }
.btn-lg { padding: 0.9rem 1.45rem; font-size: 1rem; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--blue-dark); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue-pale); color: var(--blue-dark); }
.btn-ghost { background: var(--white); color: var(--blue-dark); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-on-blue { background: #fff; color: var(--blue-dark); }
.btn-on-blue:hover { background: var(--blue-pale); color: var(--blue-deep); }
.btn-on-blue-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-on-blue-outline:hover { background: rgba(255,255,255,0.12); color: #fff; }
.ico { width: 1.15em; height: 1.15em; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; }
.cta-row.center { justify-content: center; }

/* Hero */
.hero {
  position: relative; padding: 3.5rem 0 3rem; overflow: hidden;
  background: linear-gradient(165deg, #0A2E47 0%, var(--blue-deep) 28%, var(--blue-dark) 58%, var(--blue) 88%, var(--blue-light) 100%);
  color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(90,173,224,0.35), transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 90%, rgba(14,55,84,0.5), transparent 55%);
  pointer-events: none;
}
.hero-grid {
  position: relative; display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 900px) {
  .hero { padding: 4.5rem 0 4rem; }
  .hero-grid { grid-template-columns: 1.25fr 0.85fr; gap: 2.5rem; }
}
.eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue); margin: 0 0 0.85rem;
}
.hero .eyebrow { color: rgba(255,255,255,0.78); }
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.15rem); color: #fff; max-width: 16ch; margin-bottom: 1rem;
}
.hero-lede {
  font-size: 1.05rem; color: rgba(255,255,255,0.86); max-width: 42ch; margin-bottom: 0.25rem;
}
.hero-fine { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-top: 1.1rem; }
.hero-fine a { color: #fff; }

.hero-card {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px); border-radius: 22px; padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-lg);
}
.hero-card-logo { width: 64px; height: 64px; margin-bottom: 1rem; }
.hero-card-tag { font-family: var(--font-display); font-size: 1.15rem; margin: 0 0 0.25rem; color: #fff; }
.hero-card-line { font-size: 0.88rem; color: rgba(255,255,255,0.75); margin-bottom: 1.25rem; }
.hero-card-list li {
  display: flex; flex-direction: column; gap: 0.1rem;
  padding: 0.7rem 0; border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.92rem;
}
.hero-card-list strong { color: #fff; }
.hero-card-list span { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

/* Stats */
.stats {
  background: var(--white); border-bottom: 1px solid var(--line);
  margin-top: -1.5rem; position: relative; z-index: 2;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; border: 1px solid var(--line);
}
@media (min-width: 800px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  padding: 1.5rem 1.1rem; text-align: center;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stat:nth-child(2n) { border-right: none; }
@media (min-width: 800px) {
  .stat { border-bottom: none; }
  .stat:nth-child(2n) { border-right: 1px solid var(--line); }
  .stat:last-child { border-right: none; }
}
.stat-num {
  display: block; font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--blue); font-weight: 600; line-height: 1.1;
}
.stat-label { display: block; margin-top: 0.35rem; font-size: 0.82rem; color: var(--muted); font-weight: 500; }

/* Sections */
.section { padding: 4.25rem 0; }
.section-wash { background: linear-gradient(180deg, var(--cream) 0%, var(--blue-wash) 100%); }
.section-blue {
  background: linear-gradient(160deg, var(--blue-deep), var(--blue-dark) 45%, var(--blue));
  color: #fff;
}
.section-head { max-width: 40rem; margin-bottom: 2.25rem; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); color: var(--blue-deep); }
.section-head .lede, .lede { color: var(--ink-soft); font-size: 1.05rem; max-width: 48ch; }
.on-dark h2 { color: #fff; }
.on-dark .eyebrow { color: rgba(255,255,255,0.7); }
.on-dark .lede { color: rgba(255,255,255,0.78); }

/* Services */
.services-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.svc {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.35rem 1.25rem; box-shadow: var(--shadow); text-decoration: none; color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
a.svc:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow-lg); color: inherit; }
.svc-ico {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
  background: var(--blue-pale); color: var(--blue); font-size: 1.1rem; margin-bottom: 0.9rem;
}
.svc h3 { font-size: 1.15rem; color: var(--blue-deep); margin-bottom: 0.4rem; }
.svc p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* Split / surgery */
.split { display: grid; gap: 1.75rem; align-items: stretch; }
@media (min-width: 880px) { .split { grid-template-columns: 1.15fr 0.85fr; gap: 2.25rem; } }
.split-copy h2 { font-size: clamp(1.6rem, 2.8vw, 2.15rem); color: var(--blue-deep); }
.check-list { margin: 1.25rem 0 0.5rem; }
.check-list li {
  position: relative; padding: 0.45rem 0 0.45rem 1.6rem; color: var(--ink-soft); font-size: 0.95rem;
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 0.7rem; width: 0.7rem; height: 0.7rem;
  border-radius: 50%; background: var(--blue); box-shadow: inset 0 0 0 3px var(--blue-pale);
}
.quote-panel {
  margin: 0; background: var(--blue-deep); color: #fff; border-radius: 22px;
  padding: 2rem 1.6rem; display: flex; flex-direction: column; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.quote-panel p {
  font-family: var(--font-display); font-size: 1.25rem; line-height: 1.35; margin-bottom: 1.1rem;
}
.quote-panel cite { font-style: normal; font-size: 0.88rem; color: rgba(255,255,255,0.7); }

/* Hours */
.hours-grid {
  display: grid; gap: 1rem; grid-template-columns: 1fr;
  margin-bottom: 1.5rem;
}
@media (min-width: 700px) { .hours-grid { grid-template-columns: repeat(3, 1fr); } }
.hours-card {
  text-align: center; padding: 1.5rem 1rem; border-radius: var(--radius);
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
}
.hours-card h3 { color: #fff; font-size: 1.35rem; margin-bottom: 0.35rem; }
.hours-card p { margin: 0; color: rgba(255,255,255,0.75); }
.visit-bar {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.35rem; border-radius: var(--radius); background: rgba(0,0,0,0.18);
}
.visit-bar strong { display: block; color: #fff; }
.visit-bar span { color: rgba(255,255,255,0.72); font-size: 0.9rem; }
.visit-ctas { display: flex; flex-wrap: wrap; gap: 0.55rem; }

/* Trust strip */
.trust-strip { background: var(--white); border-block: 1px solid var(--line); padding: 1.25rem 0; }
.trust-row {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: center;
  font-size: 0.88rem; font-weight: 600; color: var(--blue-dark);
}
.trust-row span { position: relative; padding-left: 1rem; }
.trust-row span::before {
  content: ""; position: absolute; left: 0; top: 0.45em; width: 0.4rem; height: 0.4rem;
  border-radius: 50%; background: var(--blue);
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; }
.faq {
  border-bottom: 1px solid var(--line); padding: 1rem 0;
}
.faq summary {
  cursor: pointer; font-weight: 600; color: var(--blue-deep); font-size: 1.02rem;
  list-style: none; display: flex; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--blue); font-weight: 700; }
.faq[open] summary::after { content: "–"; }
.faq p { margin: 0.75rem 0 0.25rem; color: var(--ink-soft); font-size: 0.95rem; }

/* Closing */
.closing {
  padding: 4rem 0; background: var(--blue-wash);
  border-top: 1px solid var(--line);
}
.closing-inner { text-align: center; max-width: 40rem; margin-inline: auto; }
.closing h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--blue-deep); }
.closing p { color: var(--ink-soft); }

/* Footer */
.footer {
  background: var(--blue-deep); color: rgba(255,255,255,0.78); padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid; gap: 2rem; grid-template-columns: 1fr;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand img { width: 56px; height: 56px; margin-bottom: 0.9rem; }
.footer-brand p { font-size: 0.92rem; max-width: 36ch; margin: 0; }
.footer h3 {
  font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 0.9rem;
}
.footer ul li { margin-bottom: 0.45rem; font-size: 0.92rem; }
.footer a { color: #fff; text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer small { opacity: 0.65; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: space-between;
  padding-top: 1.25rem; font-size: 0.78rem; color: rgba(255,255,255,0.5);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 160;
  display: grid; grid-template-columns: 1fr 1.4fr; height: var(--sticky-h);
  box-shadow: 0 -8px 28px rgba(14, 55, 84, 0.12);
}
.sticky-call, .sticky-wa {
  display: grid; place-items: center; text-decoration: none; font-weight: 700; font-size: 0.95rem;
}
.sticky-call { background: var(--white); color: var(--blue-dark); border-top: 1px solid var(--line); }
.sticky-wa { background: var(--wa); color: #fff; }
@media (min-width: 900px) {
  .sticky-cta {
    left: auto; right: 1.25rem; bottom: 1.25rem; width: min(360px, calc(100% - 2.5rem));
    border-radius: 999px; overflow: hidden; height: 54px;
  }
  body { padding-bottom: 2rem; }
}

/* Reveal motion (IO) */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
