:root {
  --ink: #071b29;
  --deep: #092b3a;
  --deep-2: #0e3a49;
  --paper: #f7fbfc;
  --white: #ffffff;
  --mist: #e8f4f5;
  --line: #c7dde0;
  --aqua: #26c7c3;
  --aqua-dark: #118f91;
  --blue: #247da0;
  --coral: #f27c63;
  --gold: #f3c969;
  --text: #173744;
  --muted: #56717b;
  --rail: 18rem;
  --content: 75rem;
  --shadow: 0 1.5rem 4rem rgba(5, 34, 47, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, Avenir, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 89% 4%, rgba(38, 199, 195, 0.13), transparent 28rem),
    radial-gradient(circle at 34% 72%, rgba(36, 125, 160, 0.08), transparent 32rem);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 0.2rem solid var(--coral);
  outline-offset: 0.25rem;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.no-break {
  white-space: nowrap;
}

.eyebrow,
.section-kicker,
.rail-kicker {
  margin: 0 0 0.8rem;
  color: var(--aqua-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.35rem;
  font-size: clamp(2.8rem, 7vw, 6.7rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.1rem, 4.6vw, 4.6rem);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1.2rem;
}

.lead {
  max-width: 45rem;
  color: #2c505d;
  font-size: clamp(1.12rem, 1.8vw, 1.34rem);
  line-height: 1.65;
}

.site-rail {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 80;
  display: flex;
  width: var(--rail);
  min-height: 100svh;
  flex-direction: column;
  overflow-y: auto;
  color: rgba(255, 255, 255, 0.84);
  background:
    linear-gradient(150deg, rgba(38, 199, 195, 0.13), transparent 38%),
    linear-gradient(180deg, var(--deep), #051923 72%);
  box-shadow: 0.5rem 0 2.5rem rgba(2, 23, 32, 0.12);
}

.rail-brand {
  display: block;
  padding: 2.15rem 2rem 1.75rem;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.rail-kicker {
  color: var(--aqua);
}

.rail-title {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.62rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.rail-subtitle {
  display: block;
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
  line-height: 1.45;
}

.rail-nav {
  padding: 1.25rem 0;
}

.rail-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.rail-nav a {
  position: relative;
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  padding: 0.72rem 2rem;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.92rem;
  line-height: 1.35;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.rail-nav a::before {
  width: 1.25rem;
  color: rgba(255, 255, 255, 0.32);
  content: attr(data-index);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.75rem;
}

.rail-nav a:hover,
.rail-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.rail-nav a[aria-current="page"]::after {
  position: absolute;
  inset: 0.55rem 0 0.55rem auto;
  width: 0.24rem;
  content: "";
  background: var(--aqua);
}

.rail-contact {
  padding: 1.5rem 2rem 2rem;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.rail-contact p {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.5;
}

.rail-contact a {
  display: block;
  margin-top: 0.4rem;
  color: var(--white);
  font-size: 0.91rem;
  font-weight: 700;
  text-decoration: none;
}

.topbar {
  display: none;
}

.site-main {
  min-height: 100svh;
  margin-left: var(--rail);
}

.hero,
.page-hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  grid-template-columns: minmax(0, 0.92fr) minmax(25rem, 1.08fr);
  align-items: stretch;
  overflow: hidden;
  background: var(--white);
}

.page-hero {
  min-height: 74svh;
}

.hero-copy,
.page-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 46rem;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem) clamp(2rem, 6vw, 6rem);
}

.hero-copy::before,
.page-hero-copy::before {
  position: absolute;
  top: clamp(2.5rem, 6vw, 5rem);
  left: clamp(2rem, 6vw, 6rem);
  width: 4.5rem;
  height: 0.25rem;
  content: "";
  background: linear-gradient(90deg, var(--aqua), var(--coral));
}

.hero-copy .eyebrow,
.page-hero-copy .eyebrow {
  padding-top: 2rem;
}

.hero-title-line {
  display: block;
  color: var(--aqua-dark);
  font-style: italic;
}

.hero-media,
.page-hero-media {
  position: relative;
  min-height: 32rem;
  margin: 0;
  overflow: hidden;
  background: var(--deep);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after,
.page-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 28, 39, 0.04), rgba(6, 28, 39, 0.32));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-0.13rem);
  background: var(--deep-2);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
}

.button-secondary:hover {
  color: var(--white);
  background: var(--ink);
}

.hero-proof {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-top: 1.25rem;
  margin-top: 1.5rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.93rem;
}

.pulse-mark {
  position: relative;
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 auto;
  border: 1px solid var(--aqua-dark);
  border-radius: 50%;
}

.pulse-mark::before,
.pulse-mark::after {
  position: absolute;
  content: "";
}

.pulse-mark::before {
  inset: 0.6rem;
  border: 0.18rem solid var(--aqua-dark);
  border-radius: 50%;
}

.pulse-mark::after {
  top: 1.05rem;
  right: -0.25rem;
  width: 0.8rem;
  height: 0.18rem;
  background: var(--coral);
}

.route-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 6vw, 6rem);
  background: var(--paper);
}

.section-inner {
  width: min(100%, var(--content));
  margin-inline: auto;
}

.route-intro {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.8fr) minmax(18rem, 1.2fr);
  align-items: end;
}

.route-intro h2 {
  margin-bottom: 0;
}

.route-line {
  position: relative;
  display: grid;
  padding: 2.5rem 0 0;
  margin: 4rem 0 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  list-style: none;
  border-top: 1px solid var(--line);
}

.route-line li {
  position: relative;
}

.route-line li::before {
  position: absolute;
  top: -2.82rem;
  left: 0;
  width: 0.68rem;
  height: 0.68rem;
  content: "";
  background: var(--paper);
  border: 0.18rem solid var(--aqua-dark);
  border-radius: 50%;
}

.route-number {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.route-line a {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  text-decoration-color: var(--aqua);
  text-decoration-thickness: 0.08rem;
  text-underline-offset: 0.38rem;
}

.route-line p {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.editorial-section {
  position: relative;
  padding: clamp(4rem, 9vw, 8rem) clamp(2rem, 6vw, 6rem);
  overflow: hidden;
}

.editorial-section:nth-of-type(even) {
  background: var(--white);
}

.split {
  display: grid;
  width: min(100%, var(--content));
  margin-inline: auto;
  grid-template-columns: minmax(0, 0.94fr) minmax(19rem, 1.06fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.split.reverse .split-copy {
  order: 2;
}

.split.reverse .split-media {
  order: 1;
}

.split-media {
  position: relative;
  min-height: 29rem;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-media::before {
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  z-index: -1;
  content: "";
  border: 1px solid var(--aqua-dark);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 29rem;
  object-fit: cover;
}

.split-copy ul,
.prose ul {
  padding-left: 1.2rem;
  margin: 1.25rem 0;
}

.split-copy li,
.prose li {
  padding-left: 0.35rem;
  margin-bottom: 0.65rem;
}

.doctor-note {
  position: relative;
  padding: 1.1rem 0 0 1.25rem;
  margin-top: 1.6rem;
  color: var(--deep-2);
  border-top: 1px solid var(--line);
  font-weight: 650;
}

.doctor-note::before {
  position: absolute;
  top: 1.55rem;
  left: 0;
  width: 0.48rem;
  height: 0.48rem;
  content: "";
  background: var(--coral);
  border-radius: 50%;
}

.statement-band {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 6vw, 6rem);
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(110deg, rgba(38, 199, 195, 0.15), transparent 48%),
    var(--ink);
  overflow: hidden;
}

.statement-band::after {
  position: absolute;
  top: -12rem;
  right: -9rem;
  width: 28rem;
  height: 28rem;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(255, 255, 255, 0.025), 0 0 0 8rem rgba(255, 255, 255, 0.018);
}

.statement-band .section-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  gap: 3rem;
  align-items: end;
}

.statement-band h2 {
  max-width: 55rem;
  margin-bottom: 0;
  color: var(--white);
}

.statement-band .section-kicker {
  color: var(--aqua);
}

.statement-band .doctor-note {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.condition-list,
.faq-list {
  width: min(100%, var(--content));
  margin: 2.5rem auto 0;
  border-bottom: 1px solid var(--line);
}

.condition-list details,
.faq-list details {
  border-top: 1px solid var(--line);
}

.condition-list summary,
.faq-list summary {
  position: relative;
  display: grid;
  padding: 1.4rem 3.2rem 1.4rem 0;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  grid-template-columns: 3.5rem 1fr auto;
  gap: 1rem;
  align-items: baseline;
}

.faq-list summary {
  grid-template-columns: 1fr auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
}

.condition-list summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker {
  display: none;
}

.condition-index {
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
}

.condition-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
}

.condition-time {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.condition-list summary::after,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0.45rem;
  color: var(--aqua-dark);
  content: "+";
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-50%);
}

.condition-list details[open] summary::after,
.faq-list details[open] summary::after {
  content: "−";
}

.condition-body,
.faq-answer {
  max-width: 52rem;
  padding: 0 3.2rem 1.7rem 4.5rem;
  color: var(--muted);
}

.faq-answer {
  padding-left: 0;
}

.facts-strip {
  display: grid;
  width: min(100%, var(--content));
  padding: 2.3rem 0;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact {
  padding: 0 2rem;
  border-right: 1px solid var(--line);
}

.fact:first-child {
  padding-left: 0;
}

.fact:last-child {
  padding-right: 0;
  border-right: 0;
}

.fact strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.fact span {
  color: var(--muted);
  font-size: 0.9rem;
}

.prose {
  width: min(100%, 52rem);
  margin-inline: auto;
}

.prose.wide {
  width: min(100%, var(--content));
}

.steps {
  padding: 0;
  margin: 2.25rem 0 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  padding: 0 0 2.5rem 4.8rem;
  counter-increment: steps;
}

.steps li::before {
  position: absolute;
  top: -0.25rem;
  left: 0;
  display: grid;
  width: 3rem;
  height: 3rem;
  color: var(--white);
  content: counter(steps, decimal-leading-zero);
  background: var(--ink);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  place-items: center;
}

.steps li::after {
  position: absolute;
  top: 3rem;
  bottom: 0;
  left: 1.48rem;
  width: 1px;
  content: "";
  background: var(--line);
}

.steps li:last-child::after {
  display: none;
}

.steps strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.alert-line {
  padding: 1.25rem 0 1.25rem 1.35rem;
  margin: 1.8rem 0;
  color: #663120;
  background: linear-gradient(90deg, rgba(242, 124, 99, 0.13), transparent);
  border-left: 0.26rem solid var(--coral);
}

.contact-lines {
  margin: 2rem 0;
  border-top: 1px solid var(--line);
}

.contact-line {
  display: grid;
  padding: 1.25rem 0;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.contact-line dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-line dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.contact-line a {
  text-decoration-color: var(--aqua-dark);
  text-underline-offset: 0.25rem;
}

.faq-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 6vw, 6rem);
  background: var(--mist);
}

.faq-heading {
  width: min(100%, var(--content));
  margin-inline: auto;
}

.source-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.source-note a {
  color: var(--deep-2);
  text-decoration-color: var(--aqua-dark);
  text-underline-offset: 0.22rem;
}

.site-footer {
  padding: 3rem clamp(2rem, 6vw, 6rem) 6rem;
  color: rgba(255, 255, 255, 0.67);
  background: #04151d;
}

.footer-inner {
  display: grid;
  width: min(100%, var(--content));
  margin-inline: auto;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
}

.site-footer strong {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.site-footer p,
.site-footer a {
  font-size: 0.88rem;
}

.site-footer a {
  color: var(--white);
  text-decoration-color: rgba(38, 199, 195, 0.65);
  text-underline-offset: 0.2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  align-content: flex-start;
  justify-content: flex-end;
}

.mobile-contact-bar {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  :root {
    --rail: 15rem;
  }

  .rail-brand,
  .rail-nav a,
  .rail-contact {
    padding-right: 1.35rem;
    padding-left: 1.35rem;
  }

  .hero,
  .page-hero {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.92fr);
  }

  .hero-copy,
  .page-hero-copy {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }

  .hero-copy::before,
  .page-hero-copy::before {
    left: 2.5rem;
  }
}

@media (max-width: 900px) {
  :root {
    --rail: 18rem;
  }

  body {
    padding-top: 4.35rem;
  }

  .topbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 110;
    display: flex;
    min-height: 4.35rem;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    color: var(--white);
    background: rgba(5, 25, 35, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(0.8rem);
  }

  .topbar-brand {
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.12rem;
    line-height: 1.1;
    text-decoration: none;
  }

  .topbar-brand small {
    display: block;
    margin-top: 0.2rem;
    color: var(--aqua);
    font-family: Inter, Avenir, "Segoe UI", sans-serif;
    font-size: 0.7rem;
    font-weight: 750;
    letter-spacing: 0.04em;
  }

  .menu-button {
    display: inline-grid;
    width: 2.8rem;
    height: 2.8rem;
    padding: 0;
    color: var(--white);
    cursor: pointer;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    font-size: 1.25rem;
    place-items: center;
  }

  .site-rail {
    z-index: 120;
    width: min(88vw, var(--rail));
    box-shadow: 1rem 0 3rem rgba(0, 0, 0, 0.35);
    transform: translateX(-105%);
    transition: transform 220ms ease;
  }

  body.menu-open .site-rail {
    transform: translateX(0);
  }

  body.menu-open::after {
    position: fixed;
    inset: 0;
    z-index: 115;
    content: "";
    background: rgba(1, 13, 19, 0.54);
  }

  .site-main {
    margin-left: 0;
  }

  .hero,
  .page-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .page-hero-copy {
    max-width: none;
    padding: 4.5rem 1.35rem 3rem;
  }

  .hero-copy::before,
  .page-hero-copy::before {
    top: 2.8rem;
    left: 1.35rem;
  }

  .hero-media,
  .page-hero-media {
    min-height: min(72vw, 34rem);
    clip-path: none;
  }

  .hero-media img,
  .page-hero-media img {
    min-height: min(72vw, 34rem);
  }

  .route-intro,
  .split,
  .statement-band .section-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-copy,
  .split.reverse .split-media {
    order: initial;
  }

  .split-media,
  .split-media img {
    min-height: min(74vw, 30rem);
  }

  .facts-strip {
    grid-template-columns: 1fr;
  }

  .fact {
    padding: 1.25rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact:last-child {
    border-bottom: 0;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 4.25rem;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.25rem);
  }

  .route-section,
  .editorial-section,
  .statement-band,
  .faq-section {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .route-line {
    padding: 0 0 0 1.75rem;
    grid-template-columns: 1fr;
    gap: 1.8rem;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .route-line li::before {
    top: 0.32rem;
    left: -2.13rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .condition-list summary {
    padding-right: 2.3rem;
    grid-template-columns: 2.3rem 1fr;
  }

  .condition-time {
    display: none;
  }

  .condition-body {
    padding-right: 2rem;
    padding-left: 3.3rem;
  }

  .contact-line {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .mobile-contact-bar {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 105;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--ink);
    box-shadow: 0 -0.7rem 2rem rgba(3, 24, 33, 0.2);
  }

  .mobile-contact-bar a {
    display: flex;
    min-height: 4.25rem;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .mobile-contact-bar a:last-child {
    color: var(--ink);
    background: var(--aqua);
    border-right: 0;
  }

  .site-footer {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

@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;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-rail,
  .topbar,
  .mobile-contact-bar,
  .hero-actions {
    display: none !important;
  }

  body {
    padding: 0;
    color: #000;
    background: #fff;
  }

  .site-main {
    margin: 0;
  }

  .hero,
  .page-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }
}
