*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--airy-canvas);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--airy-text);
  background: var(--airy-canvas);
  transition: color 220ms ease;
}

a {
  color: inherit;
  text-decoration: none;
}

.clip-defs {
  position: absolute;
  overflow: hidden;
  pointer-events: none;
}

.site-header {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(14rem, 1fr) auto;
  align-items: center;
  gap: 2rem;
  width: 100%;
  height: clamp(4.5rem, 7vw, 5.5rem);
  padding-inline: clamp(1.25rem, 5vw, 5.5rem);
  background: var(--airy-canvas);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: .75rem;
  color: var(--airy-text);
  font-family: var(--airy-display);
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  font-weight: 600;
  letter-spacing: .08em;
  transition: color 220ms ease;
}

.brand small {
  display: block;
  margin-top: .1rem;
  font-size: .48em;
  font-weight: 500;
  letter-spacing: .2em;
}

.brand-mark {
  width: 2.4rem;
  fill: none;
  stroke: var(--airy-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: stroke 220ms ease;
}

.nav-list {
  display: flex;
  gap: clamp(1.2rem, 2.6vw, 2.8rem);
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--airy-muted);
  font-size: clamp(.82rem, .9vw, .95rem);
  white-space: nowrap;
}

.site-header nav {
  justify-self: end;
}

.nav-list a {
  transition: color 180ms ease;
}

.nav-list a:hover {
  color: var(--airy-accent);
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  color: var(--airy-on-accent);
  background: var(--airy-accent);
  font-weight: 700;
  transition: color 220ms ease, background-color 220ms ease, transform 180ms ease;
}

.primary-cta span:last-child {
  display: grid;
  width: 1.8rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: var(--airy-accent);
  background: var(--airy-on-accent);
  transition: color 220ms ease;
}

.primary-cta:hover {
  transform: translateY(-2px);
}

.first-view {
  --edge-gutter: clamp(1.25rem, 5vw, 5.5rem);
  --hero-overlap: clamp(3rem, 6vw, 7rem);
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  width: 100%;
  height: calc(100svh - clamp(4.5rem, 7vw, 5.5rem));
  min-height: 35rem;
  padding: clamp(1rem, 3vw, 2.5rem) var(--edge-gutter) clamp(1.5rem, 3vw, 2.8rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 88%, var(--airy-soft) 0 1rem, transparent 1.05rem),
    var(--airy-canvas);
  transition: background-color 220ms ease;
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  width: calc(100% + var(--hero-overlap) + var(--edge-gutter));
  min-height: 82%;
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.8rem);
  border: 1px solid color-mix(in srgb, var(--airy-border) 62%, transparent);
  border-radius: clamp(1.5rem, 3vw, 2.6rem);
  background: color-mix(in srgb, var(--airy-surface) 52%, transparent);
  box-shadow: 0 1.5rem 4rem color-mix(in srgb, var(--airy-ink) 10%, transparent);
  -webkit-backdrop-filter: blur(3px) saturate(112%);
  backdrop-filter: blur(3px) saturate(112%);
}

.hero-kicker {
  margin: 0 0 clamp(1rem, 2vh, 1.5rem);
  color: var(--airy-accent);
  font-size: clamp(.72rem, .85vw, .85rem);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.hero-copy h1 {
  max-width: 9.7em;
  margin: 0;
  font-size: clamp(3rem, 5.35vw, 6.1rem);
  line-height: 1.06;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 33rem;
  margin: clamp(1.2rem, 2.8vh, 2rem) 0 0;
  color: var(--airy-muted);
  font-size: clamp(.9rem, 1.08vw, 1.05rem);
  line-height: 1.85;
  transition: color 220ms ease;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.5rem);
  margin-top: clamp(1.5rem, 3.6vh, 2.6rem);
}

.primary-cta {
  gap: 2rem;
  min-width: 13.5rem;
  padding: .88rem .9rem .88rem 1.35rem;
  font-size: .92rem;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-width: 0;
  margin: 0 calc(-1 * var(--edge-gutter)) 0 calc(-1 * var(--hero-overlap));
  overflow: hidden;
  clip-path: url(#hero-wave-clip);
  background: var(--airy-soft);
  box-shadow: -.8rem 1.5rem 4rem color-mix(in srgb, var(--airy-accent) 15%, transparent);
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
}

.airy-section {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 100svh;
  padding-block: clamp(2.5rem, 6vh, 4.5rem);
  overflow: hidden;
  color: var(--airy-text);
  background: var(--airy-canvas);
}

.airy-section::before {
  position: absolute;
  width: clamp(13rem, 28vw, 28rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: color-mix(in srgb, var(--airy-support) 68%, transparent);
  content: "";
  pointer-events: none;
}

.section-heading,
.concept-layout,
.clinic-layout,
.faq-list {
  width: min(calc(100% - clamp(2rem, 10vw, 11rem)), 76rem);
  margin-inline: auto;
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(16rem, .65fr);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: end;
  margin-bottom: clamp(1.5rem, 4vh, 3rem);
}

.section-number,
.section-kicker,
.section-description {
  margin: 0;
}

.section-number {
  align-self: start;
  color: var(--airy-accent);
  font: 700 .72rem/1 var(--airy-body);
  letter-spacing: .12em;
}

.section-kicker {
  margin-bottom: .7rem;
  color: var(--airy-text);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--airy-display);
  font-size: clamp(2.35rem, 4.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.055em;
}

.section-description {
  color: var(--airy-muted);
  font-size: clamp(.82rem, 1vw, .98rem);
  line-height: 1.75;
}

.glass-card {
  border: 1px solid color-mix(in srgb, var(--airy-border) 56%, transparent);
  background: color-mix(in srgb, var(--airy-surface) 62%, transparent);
  box-shadow: 0 1.4rem 3.5rem color-mix(in srgb, var(--airy-ink) 9%, transparent);
  -webkit-backdrop-filter: blur(8px) saturate(112%);
  backdrop-filter: blur(8px) saturate(112%);
}

.concept-section::before {
  right: -8%;
  bottom: -24%;
}

.concept-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.concept-photo {
  min-width: 0;
  height: clamp(20rem, 54vh, 34rem);
  margin: 0;
  overflow: hidden;
  border-radius: 3rem 48% 3rem 42%;
}

.concept-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 34% center;
}

.concept-copy {
  position: relative;
  z-index: 1;
  margin-left: clamp(-6rem, -7vw, -3rem);
  padding: clamp(1.5rem, 3.5vw, 3.2rem);
  border-radius: clamp(1.8rem, 4vw, 3.5rem);
}

.concept-copy p {
  margin: 0;
  color: var(--airy-muted);
  font-size: clamp(.85rem, 1.05vw, 1rem);
  line-height: 1.9;
}

.concept-copy .concept-lead {
  margin-bottom: 1rem;
  color: var(--airy-text);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.7;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.4rem;
  color: var(--airy-accent);
  font-size: .85rem;
  font-weight: 700;
}

.treatment-carousel {
  padding-block: clamp(2rem, 4vh, 3rem);
  background: var(--airy-support);
}

.treatment-carousel::before {
  top: -18%;
  left: -7%;
  background: color-mix(in srgb, var(--airy-canvas) 72%, transparent);
}

.treatment-carousel .section-heading {
  margin-bottom: clamp(1rem, 2vh, 1.5rem);
}

.treatment-carousel .section-heading h2 {
  font-size: clamp(2.2rem, 3.8vw, 4rem);
}

.carousel-viewport {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  cursor: grab;
}

.carousel-viewport::-webkit-scrollbar { display: none; }
.carousel-viewport.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }

.carousel-track {
  display: flex;
  gap: clamp(1rem, 2.2vw, 2rem);
  width: max-content;
}

.treatment-card {
  counter-increment: treatment;
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  flex: 0 0 clamp(18rem, 38vw, 30rem);
  min-height: clamp(18.5rem, 44vh, 23rem);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  overflow: hidden;
  scroll-snap-align: center;
  border-radius: clamp(1.7rem, 3vw, 2.8rem);
  color: var(--airy-text);
}

.treatment-index {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  color: var(--airy-text);
  font: 700 .7rem/1 var(--airy-body);
  letter-spacing: .12em;
}

.treatment-index::before { content: "0" counter(treatment); }

.carousel-track { counter-reset: treatment; }

.treatment-icon {
  width: clamp(3rem, 5vw, 4.5rem);
  height: auto;
  margin-bottom: auto;
  fill: none;
  stroke: var(--airy-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.treatment-label {
  margin: clamp(1rem, 3vh, 2rem) 0 .55rem;
  color: var(--airy-text);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.treatment-card h3 {
  margin: 0;
  font-family: var(--airy-display);
  font-size: clamp(1.55rem, 2.5vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -.04em;
}

.treatment-card > p:last-of-type {
  max-width: 26rem;
  margin: .8rem 0 0;
  color: var(--airy-muted);
  font-size: clamp(.78rem, .95vw, .9rem);
  line-height: 1.75;
}

.treatment-card > a {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: .8rem;
  border-top: 1px solid color-mix(in srgb, var(--airy-border) 58%, transparent);
  color: var(--airy-accent);
  font-size: .78rem;
  font-weight: 700;
}

.carousel-footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - clamp(2rem, 10vw, 11rem)), 76rem);
  margin: clamp(.9rem, 2vh, 1.3rem) auto 0;
}

.carousel-count {
  margin: 0;
  color: var(--airy-muted);
  font-size: .75rem;
}

.carousel-count strong {
  color: var(--airy-text);
  font-size: 1.15rem;
}

.carousel-dots,
.carousel-buttons {
  display: flex;
  align-items: center;
}

.carousel-dots { gap: .45rem; }

.carousel-dot {
  width: 1.7rem;
  height: .2rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--airy-accent) 24%, transparent);
  cursor: pointer;
}

.carousel-dot.is-active { background: var(--airy-accent); }

.carousel-buttons {
  justify-self: end;
  gap: .4rem;
}

.carousel-buttons button {
  display: grid;
  width: 2.5rem;
  aspect-ratio: 1;
  padding: 0;
  place-items: center;
  border: 1px solid var(--airy-border);
  border-radius: 50%;
  color: var(--airy-text);
  background: color-mix(in srgb, var(--airy-surface) 64%, transparent);
  cursor: pointer;
}

.faq-section::before {
  right: -10%;
  top: 18%;
}

.faq-list {
  position: relative;
  z-index: 1;
  counter-reset: faq;
  padding: 0 clamp(1rem, 3vw, 2rem);
  border-radius: clamp(1.7rem, 4vw, 3rem);
}

.faq-item {
  counter-increment: faq;
  border-bottom: 1px solid color-mix(in srgb, var(--airy-border) 58%, transparent);
}

.faq-item:last-child { border-bottom: 0; }

.faq-item summary {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: clamp(1rem, 2.2vh, 1.4rem) 0;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-number::before { color: var(--airy-text); content: "0" counter(faq); font-size: .66rem; font-weight: 700; }
.faq-item summary strong { font-size: clamp(.9rem, 1.1vw, 1.05rem); font-weight: 500; }
.faq-item summary b { color: var(--airy-accent); font-size: 1.25rem; font-weight: 400; transition: transform 180ms ease; }
.faq-item[open] summary b { transform: rotate(45deg); }
.faq-item div { padding: 0 2rem 1.2rem 3.5rem; }
.faq-item div p { max-width: 50rem; margin: 0; color: var(--airy-muted); font-size: .84rem; line-height: 1.8; }

.clinic-section {
  background: var(--airy-support);
}

.clinic-section::before {
  left: -8%;
  bottom: -30%;
  background: color-mix(in srgb, var(--airy-canvas) 72%, transparent);
}

.clinic-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: clamp(22rem, 52vh, 31rem);
}

.clinic-map,
.clinic-details {
  position: relative;
  overflow: hidden;
}

.clinic-map {
  border-radius: 3rem 0 0 3rem;
  color: var(--airy-text);
  background: color-mix(in srgb, var(--airy-canvas) 48%, transparent);
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: .4;
  background-image: linear-gradient(var(--airy-border) 1px, transparent 1px), linear-gradient(90deg, var(--airy-border) 1px, transparent 1px);
  background-size: 3rem 3rem;
}

.map-road {
  position: absolute;
  display: block;
  height: .85rem;
  border: 1px solid color-mix(in srgb, var(--airy-border) 70%, transparent);
  background: color-mix(in srgb, var(--airy-surface) 82%, transparent);
  transform-origin: left center;
}

.road-a { top: 16%; left: -8%; width: 120%; transform: rotate(24deg); }
.road-b { top: 70%; left: -5%; width: 110%; transform: rotate(-13deg); }
.road-c { top: -5%; left: 48%; width: 115%; transform: rotate(82deg); }

.map-pin {
  position: absolute;
  top: 46%;
  left: 52%;
  display: grid;
  width: 3.4rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50% 50% 50% 0;
  color: var(--airy-on-accent);
  background: var(--airy-accent);
  font-size: 0;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-pin::after {
  content: "N";
  font-size: 1rem;
  font-weight: 700;
  transform: rotate(45deg);
}
.clinic-map > b { position: absolute; right: 1.5rem; bottom: 1.4rem; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }

.clinic-details {
  padding: clamp(1.5rem, 3.5vw, 3rem);
  border-radius: 0 3rem 3rem 0;
}

.clinic-details h3 {
  margin: 0 0 1.2rem;
  font-family: var(--airy-display);
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
  font-weight: 500;
  letter-spacing: .04em;
}

.clinic-details dl { margin: 0; }
.clinic-details dl > div { display: grid; grid-template-columns: 5.5rem 1fr; gap: 1rem; padding: .65rem 0; border-top: 1px solid color-mix(in srgb, var(--airy-border) 52%, transparent); }
.clinic-details dt { color: var(--airy-text); font-size: .7rem; font-weight: 700; }
.clinic-details dd { margin: 0; color: var(--airy-muted); font-size: .82rem; line-height: 1.65; }
.clinic-details address { font-style: normal; }
.clinic-cta { width: min(100%, 13rem); margin-top: 1.2rem; padding: .7rem .75rem .7rem 1rem; font-size: .78rem; }

a:focus-visible,
button:focus-visible,
summary:focus-visible,
.carousel-viewport:focus-visible {
  outline: .18rem solid var(--airy-focus);
  outline-offset: .2rem;
}

@media (max-width: 64rem) {
  .site-header nav {
    display: none;
  }

  .first-view {
    --hero-overlap: clamp(5rem, 11vw, 8rem);
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 6vw, 4.7rem);
  }

  .hero-copy {
    background: color-mix(in srgb, var(--airy-surface) 48%, transparent);
    -webkit-backdrop-filter: blur(2px) saturate(108%);
    backdrop-filter: blur(2px) saturate(108%);
  }

  .section-heading,
  .concept-layout,
  .clinic-layout,
  .faq-list,
  .carousel-footer {
    width: min(calc(100% - 4rem), 68rem);
  }
}

@media (max-width: 48rem) {
  body {
    overflow-y: auto;
  }

  .site-header {
    height: 4.5rem;
    padding-inline: 1rem;
  }

  .brand {
    font-size: .95rem;
  }

  .brand-mark {
    width: 2rem;
  }

  .first-view {
    display: grid;
    grid-template: 1fr / 1fr;
    height: calc(100svh - 4.5rem);
    min-height: 0;
    padding: 1rem 1rem 3.8rem;
  }

  .hero-copy {
    grid-area: 1 / 1;
    align-self: start;
    width: min(92%, 34rem);
    min-height: 0;
    margin: .4rem 0 0;
    padding: clamp(1rem, 4vw, 1.5rem);
    border-radius: 1.5rem;
    background: color-mix(in srgb, var(--airy-surface) 38%, transparent);
    -webkit-backdrop-filter: blur(1px) saturate(105%);
    backdrop-filter: blur(1px) saturate(105%);
  }

  .hero-kicker {
    margin-bottom: .7rem;
    font-size: .65rem;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.5rem, 11.5vw, 3.8rem);
  }

  .hero-subtitle {
    margin-top: .85rem;
    font-size: .8rem;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 1rem;
  }

  .primary-cta {
    min-width: 10.8rem;
    gap: 1rem;
    padding: .7rem .72rem .7rem 1rem;
    font-size: .8rem;
  }

  .primary-cta span:last-child {
    width: 1.55rem;
  }

  .hero-visual {
    grid-area: 1 / 1;
    align-self: stretch;
    min-height: 0;
    margin: clamp(5.5rem, 18vw, 9rem) -1rem 0 1.5rem;
    clip-path: url(#hero-wave-clip);
  }

  .airy-section {
    min-height: 100svh;
    padding: 2.4rem 1rem;
  }

  .section-heading,
  .concept-layout,
  .clinic-layout,
  .faq-list,
  .carousel-footer {
    width: 100%;
  }

  .section-heading {
    grid-template-columns: auto 1fr;
    gap: .8rem 1rem;
    margin-bottom: 1.4rem;
  }

  .section-description {
    grid-column: 2;
  }

  .section-heading h2 {
    font-size: clamp(2.1rem, 9vw, 3.6rem);
  }

  .concept-layout {
    grid-template-columns: 1fr;
  }

  .concept-photo {
    height: clamp(14rem, 38vh, 21rem);
    margin-right: 1.8rem;
    border-radius: 2rem 44% 2rem 38%;
  }

  .concept-copy {
    margin: -4.5rem 0 0 1.5rem;
    padding: 1.3rem;
  }

  .concept-copy p { font-size: .78rem; line-height: 1.7; }
  .concept-copy .concept-lead { font-size: 1rem; line-height: 1.6; }
  .inline-link { margin-top: 1rem; }

  .treatment-card {
    flex-basis: min(78vw, 22rem);
    min-height: clamp(18rem, 42vh, 21rem);
  }

  .carousel-footer { grid-template-columns: auto 1fr auto; }
  .carousel-dots { justify-self: center; }

  .faq-list { padding-inline: 1rem; }
  .faq-item summary { grid-template-columns: 1.8rem 1fr auto; gap: .65rem; }
  .faq-item div { padding: 0 .5rem 1rem 2.45rem; }

  .clinic-layout {
    grid-template-columns: 1fr;
  }

  .clinic-map {
    min-height: clamp(11rem, 27vh, 15rem);
    border-radius: 2rem 2rem 0 0;
  }

  .clinic-details {
    padding: 1.3rem;
    border-radius: 0 0 2rem 2rem;
  }

  .clinic-details h3 { margin-bottom: .8rem; }
  .clinic-details dl > div { grid-template-columns: 4.5rem 1fr; padding: .45rem 0; }
  .clinic-cta { margin-top: .8rem; }

}

@media (max-width: 30rem), (max-height: 40rem) {
  .first-view {
    min-height: 0;
  }

  .hero-copy {
    width: 96%;
    margin-top: clamp(5.5rem, 17svh, 8rem);
  }

  .hero-kicker {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .hero-subtitle {
    margin-top: .65rem;
  }

  .hero-actions {
    margin-top: .75rem;
  }

  .hero-visual {
    margin-top: 4.5rem;
  }

  .airy-section { padding: 2rem .8rem; }
  .section-heading { margin-bottom: 1rem; }
  .section-heading h2 { font-size: 2rem; }
  .section-description { font-size: .75rem; }
  .concept-photo { height: 13rem; }
  .concept-copy { margin-top: -3.5rem; padding: 1rem; }
  .concept-copy .concept-lead { margin-bottom: .65rem; font-size: .9rem; }
  .concept-copy p { font-size: .72rem; }
  .treatment-card { min-height: 18rem; padding: 1.25rem; }
  .carousel-buttons button { width: 2.2rem; }
  .faq-item summary { padding: .85rem 0; }
  .clinic-map { min-height: 10rem; }
  .clinic-details { padding: 1rem; }
  .clinic-details dl > div { font-size: .75rem; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}

/* Project adaptation: keep supporting copy legible over the translucent hero panel. */
.hero-subtitle { color: var(--airy-text); }
