:root {
  --navy: #062f68;
  --navy-2: #0a3b7a;
  --blue: #1267b3;
  --green: #33a668;
  --ink: #082c63;
  --muted: #516990;
  --line: #d7e2ef;
  --soft: #f6faff;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(5, 42, 92, .10);
  --radius: 12px;
  --font-brand: "Montserrat", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-brand);
  letter-spacing: 0;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.skip-link {
  position: fixed;
  left: 18px;
  top: -52px;
  z-index: 30;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 310px 1fr;
  align-items: center;
  gap: 28px;
  min-height: 88px;
  padding: 14px clamp(24px, 5vw, 60px);
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid transparent;
  transition: border-color .22s ease, backdrop-filter .22s ease, box-shadow .22s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 34px rgba(6,47,104,.07);
}
.brand {
  display: inline-grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 12px;
}
.brand img, .footer-brand img { border-radius: 50%; }
.brand strong, .footer-brand strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-brand);
  font-size: 21px;
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: 0;
}
.brand small, .footer-brand small {
  display: block;
  margin-top: 5px;
  color: var(--navy);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.7vw, 26px);
  color: #243f67;
  font-size: 13px;
  font-weight: 700;
}
.main-nav a { position: relative; padding: 8px 0; }
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  transform: scaleX(0);
  background: var(--navy);
  transition: transform .2s ease;
}
.main-nav a:hover::after, .main-nav .is-active::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px !important;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 22px rgba(6,47,104,.2);
}
.nav-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.95) 42%, rgba(236,246,253,.45) 66%, rgba(220,237,249,.08) 100%),
    url("drpabloarticular-assets/generated/hero-ortopedia-premium-v1.png") center / cover no-repeat;
}
.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, .92fr) minmax(360px, .72fr);
  align-items: center;
  max-width: 1180px;
  min-height: 590px;
  margin: 0 auto;
  padding: 54px 24px 46px;
}
.hero-copy { position: relative; z-index: 3; max-width: 620px; padding-top: 12px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: var(--font-brand);
  font-size: clamp(48px, 5.6vw, 72px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
}
h1 span { white-space: nowrap; }
.hero-text {
  max-width: 435px;
  margin-bottom: 28px;
  color: #435b82;
  font-size: 19px;
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; margin-bottom: 42px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--navy); color: #fff; box-shadow: 0 15px 30px rgba(6,47,104,.18); }
.button.primary img, .button.light img { filter: brightness(0) invert(1); }
.button.secondary { min-width: 205px; border: 1px solid #9db1c9; color: var(--navy); background: rgba(255,255,255,.6); }
.button.light { background: #fff; color: var(--navy); }
.button.light img { filter: none; }
.button.outline-light { border: 1px solid rgba(255,255,255,.68); color: #fff; }
.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 620px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}
.hero-badges span {
  position: relative;
  min-height: 38px;
  padding-left: 38px;
  line-height: 1.22;
}
.hero-badges span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid #a5b9d1;
  border-radius: 50%;
  color: var(--blue);
  font-weight: 900;
}
.hero-media {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: end;
  width: min(100%, 385px);
  pointer-events: none;
}
.doctor-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 14px;
  align-items: center;
  width: 100%;
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, rgba(6,47,104,.93), rgba(13,78,142,.82));
  box-shadow: 0 18px 48px rgba(6,47,104,.18);
  backdrop-filter: blur(10px);
}
.doctor-card img { grid-row: span 2; border-radius: 50%; }
.doctor-card strong { display: block; margin-bottom: 5px; font-size: 17px; line-height: 1.18; }
.doctor-card span { color: rgba(255,255,255,.86); font-size: 12.5px; line-height: 1.35; }

.specialties-panel {
  position: relative;
  z-index: 4;
  max-width: 1160px;
  margin: -8px auto 0;
  padding: 0 24px 36px;
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 -18px 55px rgba(6,47,104,.08);
}
.section, .trust, .final-cta { max-width: 1160px; margin: 0 auto; padding: 24px 24px 34px; }
.section-title {
  display: grid;
  justify-items: center;
  text-align: center;
  margin: 0 auto 18px;
}
.section-title h2, .process-card h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-brand);
  font-size: clamp(29px, 3vw, 38px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0;
}
.section-title p { margin: 8px 0 0; color: var(--muted); }
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.specialty-card {
  position: relative;
  overflow: hidden;
  min-height: 275px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 35px rgba(6,47,104,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.specialty-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.specialty-card img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 48%;
  height: 100%;
  object-fit: cover;
}
.specialty-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, #fff 48%, rgba(255,255,255,.5) 70%, rgba(255,255,255,0) 100%);
}
.specialty-copy { position: relative; z-index: 1; width: 62%; padding: 25px 25px 22px; }
.specialty-copy h3 {
  margin: 0 0 20px;
  color: var(--navy);
  font-family: var(--font-brand);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 0;
}
.specialty-copy h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 9px;
  background: var(--blue);
}
.specialty-copy ul { display: grid; gap: 9px; margin: 0 0 25px; padding: 0; list-style: none; color: #37527a; font-size: 12px; font-weight: 700; }
.specialty-copy li::before { content: "○"; margin-right: 8px; color: var(--blue); font-weight: 900; }
.specialty-copy a { color: var(--navy); font-size: 13px; font-weight: 850; }

.process-card {
  margin-top: 48px;
  padding: 30px 30px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(246,250,255,.86), rgba(255,255,255,1)),
    #fff;
  box-shadow: 0 16px 45px rgba(6,47,104,.06);
}
.process-card h2 { text-align: center; margin-bottom: 28px; font-size: 27px; }
.process-card ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.process-card ol::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 43px;
  height: 2px;
  background: linear-gradient(90deg, rgba(18,103,179,.08), rgba(18,103,179,.36), rgba(18,103,179,.08));
}
.process-card li {
  position: relative;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 10px;
  min-height: 190px;
  padding: 0 10px;
  color: #2f4972;
  text-align: center;
}
.process-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 1px solid #bfd3e9;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,.98), rgba(245,250,255,.88)),
    #fff;
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 16px 28px rgba(6,47,104,.08);
}
.process-number::after {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(18,103,179,.2);
  border-radius: 50%;
}
.process-card h3 {
  margin: 6px 0 0;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.15;
  font-weight: 850;
}
.process-card p {
  margin: 0;
  color: #526b90;
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 600;
}

.recovery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.recovery-card {
  position: relative;
  overflow: hidden;
  min-height: 265px;
  padding: 32px 22px 22px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--navy);
  box-shadow: 0 15px 34px rgba(6,47,104,.11);
}
.recovery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transition: transform .35s ease;
}
.recovery-card:hover img { transform: scale(1.04); }
.recovery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,47,104,.86) 0%, rgba(6,47,104,.42) 66%, rgba(6,47,104,.18) 100%);
}
.recovery-card span, .recovery-card small, .recovery-card strong { position: relative; z-index: 1; display: block; }
.recovery-card span {
  margin-top: 34px;
  font-family: var(--font-brand);
  font-size: 22px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0;
}
.recovery-card small { margin: 14px 0 26px; color: rgba(255,255,255,.9); font-size: 13px; line-height: 1.45; }
.recovery-card strong {
  width: fit-content;
  min-width: 106px;
  padding: 11px 18px;
  border-radius: 7px;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  text-align: center;
}

.trust {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  min-height: 430px;
  margin-top: 14px;
  background:
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.88) 42%, rgba(255,255,255,.3) 100%),
    url("drpabloarticular-assets/generated/clinic-background-premium-v2.jpg") center / cover no-repeat;
}
.trust-copy h2 {
  margin: 0 0 24px;
  color: var(--navy);
  font-family: var(--font-brand);
  font-size: clamp(31px, 3.8vw, 42px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0;
}
.check-list { display: grid; gap: 13px; margin: 0 0 28px; padding: 0; list-style: none; color: #36527a; font-size: 14px; font-weight: 700; }
.check-list li::before { content: "✓"; display: inline-grid; place-items: center; width: 16px; height: 16px; margin-right: 10px; border: 1px solid #aac0d8; border-radius: 50%; color: var(--blue); font-size: 10px; }
.signature {
  color: #2a65a7;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 31px;
  transform: rotate(-4deg);
}
.trust-media { position: relative; align-self: stretch; min-height: 420px; }
.trust-media > img {
  position: absolute;
  right: 42px;
  bottom: 0;
  width: 510px;
  max-height: 420px;
  object-fit: cover;
  object-position: 50% 24%;
  border-radius: 18px 18px 0 0;
}
.stats-bar {
  position: absolute;
  right: 0;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(560px, 100%);
  min-height: 86px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0a3b7a, #062f68);
  color: #fff;
  box-shadow: 0 18px 45px rgba(6,47,104,.2);
}
.stats-bar strong {
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 17px 22px;
  border-right: 1px solid rgba(255,255,255,.22);
  font-size: 18px;
}
.stats-bar strong:last-child { border-right: 0; }
.stats-bar small { color: rgba(255,255,255,.85); font-size: 12px; line-height: 1.2; }

.testimonial-grid, .hospital-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.testimonial-card, .hospital-card, details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(6,47,104,.04);
}
.testimonial-card { min-height: 165px; padding: 26px; }
.testimonial-card span { color: #ffbd1f; letter-spacing: .12em; }
.testimonial-card p { margin: 18px 0; color: #3f5b82; font-size: 14px; line-height: 1.7; }
.testimonial-card strong { color: var(--navy); font-size: 13px; }
.slider-dots { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }
.slider-dots span { width: 8px; height: 8px; border-radius: 50%; background: #c6d4e5; }
.slider-dots span:first-child { background: var(--navy); }

.hospital-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hospital-card {
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  overflow: hidden;
  min-height: 190px;
}
.hospital-card img { width: 100%; height: 100%; object-fit: cover; }
.hospital-card div { padding: 26px; }
.hospital-card h3 { margin: 0 0 14px; color: var(--blue); font-size: 23px; }
.hospital-card p { color: #39567e; font-size: 14px; line-height: 1.55; }
.hospital-card a { color: var(--blue); font-weight: 850; font-size: 14px; }

.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 20px; }
details { padding: 16px 20px; box-shadow: none; }
summary { cursor: pointer; color: var(--navy); font-size: 14px; font-weight: 750; }
details p { margin: 13px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.final-cta {
  max-width: none;
  margin-top: 10px;
  padding: 0;
  background:
    linear-gradient(90deg, rgba(6,47,104,.92), rgba(6,47,104,.96)),
    url("drpabloarticular-assets/pablo-originals/surgery-artroscopy-pablo.jpeg") center 45% / cover no-repeat;
}
.final-overlay {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 430px);
  align-items: center;
  gap: 28px;
  max-width: 1160px;
  min-height: 165px;
  margin: 0 auto;
  padding: 32px 24px;
}
.final-cta h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-brand);
  font-size: 31px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0;
}
.final-actions { display: grid; gap: 13px; }

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr 1.15fr .7fr .7fr .9fr;
  gap: 36px;
  padding: 34px clamp(24px, 5vw, 60px) 28px;
  color: #244166;
  background: #fff;
}
.footer-brand { display: grid; grid-template-columns: 72px 1fr; gap: 14px; align-items: center; }
.footer-banner {
  width: 100%;
  height: 118px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
}
.site-footer nav, .site-footer address { display: grid; align-content: start; gap: 9px; font-style: normal; font-size: 13px; }
.site-footer strong { color: var(--navy); }
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #5d7290;
  font-size: 12px;
}
.mobile-book { display: none; }

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

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

@media (max-width: 1060px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav-toggle {
    display: inline-grid;
    place-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
  }
  .nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy); }
  .main-nav {
    position: fixed;
    inset: 86px 16px auto;
    display: none;
    justify-content: start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: grid; gap: 12px; }
  .hero { background-position: 58% center; }
  .hero-shell { grid-template-columns: 1fr; min-height: auto; padding-bottom: 46px; }
  .hero-media { justify-self: start; width: min(100%, 385px); margin-top: 8px; }
  .specialty-grid, .recovery-grid, .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust { grid-template-columns: 1fr; }
  .trust-media > img { position: static; width: 100%; max-height: none; border-radius: 14px; }
  .stats-bar { position: static; width: 100%; margin-top: -7px; }
  .process-card ol {
    grid-template-columns: repeat(5, minmax(145px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }
  .process-card ol::before { left: 44px; right: 44px; }
  .process-card li { scroll-snap-align: start; }
  .hospital-card { grid-template-columns: 1fr; }
  .hospital-card img { height: 220px; }
  .site-footer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  html, body { width: 100%; overflow-x: hidden; }
  .site-header { min-height: 76px; padding: 10px 16px; }
  .brand { grid-template-columns: 50px 1fr; }
  .brand img { width: 50px; height: 50px; }
  .brand strong { font-size: 18px; }
  .brand small { display: none; }
  .hero { background-position: 64% center; }
  .hero-shell { min-width: 0; padding: 34px 18px 36px; }
  .hero-copy, .hero-media {
    min-width: 0;
    width: min(100%, 340px);
    max-width: 100%;
  }
  .hero-media { width: 100%; }
  h1 { max-width: 100%; font-size: 39px; line-height: 1.08; }
  h1 span { display: block; }
  .hero-text { width: 100%; max-width: 330px; font-size: 17px; overflow-wrap: break-word; }
  .hero-actions { gap: 12px; margin-bottom: 26px; }
  .button { width: 100%; }
  .hero-badges { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
  .doctor-card { padding: 15px; }
  .specialties-panel, .section, .trust { width: 100%; min-width: 0; padding-left: 16px; padding-right: 16px; }
  .section-title { justify-items: stretch; min-width: 0; width: 100%; max-width: 100%; }
  .section-title h2, .process-card h2 {
    width: min(100%, 285px);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 24px;
    line-height: 1.15;
    overflow-wrap: break-word;
    word-break: normal;
  }
  .process-card h2 { width: min(100%, 270px); }
  .process-card {
    margin-top: 34px;
    padding: 24px 18px 22px;
    border-radius: 14px;
  }
  .process-card ol {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }
  .process-card ol::before {
    left: 30px;
    right: auto;
    top: 42px;
    bottom: 42px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(18,103,179,.08), rgba(18,103,179,.42), rgba(18,103,179,.08));
  }
  .process-card li {
    grid-template-columns: 60px 1fr;
    justify-items: start;
    align-items: start;
    gap: 8px 13px;
    min-height: auto;
    padding: 13px 14px 13px 0;
    border: 1px solid rgba(189,208,228,.7);
    border-radius: 12px;
    background: rgba(255,255,255,.82);
    text-align: left;
    box-shadow: 0 10px 28px rgba(6,47,104,.045);
  }
  .process-number {
    grid-row: span 2;
    width: 60px;
    height: 60px;
    font-size: 13px;
    box-shadow: 0 10px 18px rgba(6,47,104,.08);
  }
  .process-number::after { inset: 11px; }
  .process-card h3 {
    margin: 5px 0 0;
    font-size: 15px;
  }
  .process-card p {
    max-width: 230px;
    font-size: 12.5px;
  }
  .trust-copy h2 { max-width: 320px; font-size: 28px; line-height: 1.12; }
  .specialty-grid, .recovery-grid, .testimonial-grid, .hospital-grid, .faq-grid { grid-template-columns: 1fr; }
  .specialty-card { min-height: 255px; }
  .specialty-card img { width: 52%; }
  .specialty-copy { width: 66%; padding: 22px 18px; }
  .recovery-card { min-height: 245px; }
  .stats-bar { grid-template-columns: 1fr; }
  .stats-bar strong { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .final-overlay { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; padding-bottom: 86px; }
  .footer-bottom { display: grid; }
  .mobile-book {
    position: fixed;
    z-index: 30;
    left: 16px;
    right: 16px;
    bottom: 14px;
    display: grid;
    place-items: center;
    min-height: 52px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-weight: 850;
    box-shadow: 0 18px 45px rgba(51,166,104,.25);
  }
}
