:root {
  --black: #050505;
  --ink: #111111;
  --white: #ffffff;
  --paper: #f5f5f2;
  --muted: #b8b8b2;
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(0, 0, 0, 0.12);
  --accent: #d20f1f;
  --max: 1160px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  align-items: center;
  background: rgba(5, 5, 5, 0.86);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: var(--header-height);
  justify-content: space-between;
  left: 0;
  padding: 0 18px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: 0;
}

.brand img {
  border: 1px solid var(--line);
  height: 44px;
  width: 44px;
}

.brand span {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-transform: uppercase;
}

.menu-toggle {
  align-items: center;
  background: var(--white);
  border: 0;
  color: var(--black);
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.menu-toggle span {
  background: currentColor;
  display: block;
  height: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 20px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.main-nav {
  background: var(--black);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2px;
  left: 0;
  opacity: 0;
  padding: 20px;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: var(--header-height);
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.main-nav a {
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  font-weight: 800;
  padding: 15px 0;
  text-transform: uppercase;
}

.hero {
  min-height: 92svh;
  overflow: hidden;
  padding: calc(var(--header-height) + 34px) 18px 118px;
  position: relative;
}

.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
}

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

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.28) 0%, rgba(5, 5, 5, 0.48) 42%, #050505 100%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.74), rgba(5, 5, 5, 0.18));
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0 auto;
  max-width: var(--max);
  min-height: calc(92svh - var(--header-height) - 152px);
  min-width: 0;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2rem, 8.6vw, 5.4rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
  max-width: 780px;
  text-wrap: balance;
  text-transform: uppercase;
}

.section h2 {
  font-size: clamp(2.5rem, 12vw, 5.9rem);
  letter-spacing: 0;
  line-height: 0.9;
  margin: 0;
  max-width: 920px;
  text-transform: uppercase;
}

.hero-copy {
  color: #e7e7e2;
  font-size: clamp(0.98rem, 3.7vw, 1.18rem);
  margin: 18px 0 0;
  max-width: 560px;
}

.hero-actions {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-top: 22px;
}

.hero-actions .button {
  width: min(100%, 320px);
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 950;
  justify-content: center;
  min-height: 58px;
  padding: 0 22px;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-light {
  background: var(--white);
  color: var(--black);
}

.button-dark {
  background: rgba(5, 5, 5, 0.64);
  border-color: var(--line);
  color: var(--white);
}

.hero-proof {
  align-items: center;
  background: var(--white);
  color: var(--black);
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 18px auto 0;
  max-width: 335px;
  padding: 12px 14px;
  position: static;
  width: 100%;
  z-index: 1;
}

.hero-proof strong {
  font-size: 2rem;
  letter-spacing: 0;
  line-height: 1;
}

.proof-star {
  font-size: 1.45rem;
  line-height: 1;
}

.hero-proof span {
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}


.section {
  margin: 0 auto;
  max-width: var(--max);
  padding: 76px 18px;
}

.intro-section {
  text-align: left;
}

.intro-section h2,
.split-copy h2,
.review-head h2,
.schedule-copy h2,
.contact-section h2 {
  font-size: clamp(2rem, 9.2vw, 4.25rem);
}

.section p {
  color: #d7d7d1;
  font-size: 1rem;
  margin: 18px 0 0;
  max-width: 690px;
}

.split-section {
  display: grid;
  gap: 34px;
}

.modalities {
  display: grid;
  gap: 18px;
  justify-content: center;
}

.modalities article {
  background: var(--white);
  color: var(--black);
  min-height: 240px;
  padding: 28px;
}

.modalities span {
  color: var(--accent);
  display: block;
  font-size: 0.76rem;
  font-weight: 950;
  margin-bottom: 28px;
}

.modalities h3 {
  font-size: 1.46rem;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

.modalities p {
  color: #333;
  font-size: 1.02rem;
  margin: 10px 0 0;
}

.media-row {
  display: grid;
  gap: 1px;
  margin: 0 auto;
  max-width: 1440px;
}

.media-row figure {
  background: var(--ink);
  margin: 0;
  min-height: 340px;
  overflow: hidden;
  position: relative;
}

.media-row img {
  filter: saturate(0.95) contrast(1.05);
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.media-row figcaption {
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.86));
  bottom: 0;
  font-size: 0.88rem;
  font-weight: 850;
  left: 0;
  padding: 76px 18px 18px;
  position: absolute;
  right: 0;
}

.review-section {
  max-width: 1220px;
}

.review-head {
  display: grid;
  gap: 22px;
}

.rating-pill {
  align-items: center;
  border: 1px solid var(--line);
  display: inline-flex;
  gap: 14px;
  justify-self: start;
  padding: 14px 16px;
}

.rating-pill strong {
  font-size: 2rem;
  line-height: 1;
}

.rating-pill span {
  color: var(--white);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

.reviews {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.reviews article {
  border: 1px solid var(--line);
  min-height: 222px;
  padding: 22px;
}

.reviews p {
  color: var(--white);
  font-size: 1.05rem;
  margin: 0;
}

.review-stars {
  color: var(--white);
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.reviews strong {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin-top: 28px;
  text-transform: uppercase;
}

.schedule-section {
  align-items: center;
  display: grid;
  gap: 30px;
}

.schedule-card {
  background: var(--white);
  margin: 0;
  padding: 8px;
}

.schedule-card img {
  width: 100%;
}

.schedule-list {
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: grid;
  gap: 18px;
  padding: 22px;
}

.schedule-day {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 14px;
}

.schedule-day:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.schedule-day h3 {
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.schedule-day ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.schedule-day li {
  color: #333;
  font-size: 0.98rem;
  line-height: 1.4;
  padding: 4px 0;
}

.schedule-copy .button {
  margin-top: 26px;
  width: 100%;
}

.contact-section {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
}

.contact-section p {
  color: var(--white);
  font-weight: 750;
}

.contact-actions {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.contact-link {
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-areas:
    "icon label"
    "icon value"
    "icon detail";
  column-gap: 14px;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 16px;
  text-align: left;
}

.contact-link .contact-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  grid-area: label;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-link strong {
  align-self: end;
  font-size: 1.05rem;
  grid-area: value;
  line-height: 1.18;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-icon {
  align-items: center;
  border: 1px solid currentColor;
  color: var(--white);
  display: inline-flex;
  grid-area: icon;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.contact-icon svg {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  width: 22px;
}

.contact-icon .brand-icon {
  fill: none;
  height: 31px;
  stroke: currentColor;
  stroke-width: 1.45;
  width: 31px;
}

.contact-icon .instagram-icon {
  height: 29px;
  width: 29px;
}

.contact-address small {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  grid-area: detail;
  line-height: 1.35;
  margin-top: 8px;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  gap: 34px;
  margin: 0 auto;
  max-width: var(--max);
  padding: 48px 18px 92px;
}

.footer-signup {
  display: grid;
  gap: 22px;
}

.footer-signup h2 {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 8vw, 3.4rem);
  font-weight: 500;
  line-height: 1.02;
  margin: 0;
}

.footer-cta {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--white);
  color: var(--black);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 950;
  justify-content: center;
  line-height: 1.2;
  min-height: 52px;
  padding: 16px 18px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  font-size: 0.86rem;
  padding-top: 22px;
}

.footer-bottom strong {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom span {
  color: #777772;
}

.mobile-sticky {
  background: var(--white);
  border: 1px solid var(--line-dark);
  bottom: 12px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.4);
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 950;
  left: 12px;
  min-height: 54px;
  padding: 17px 16px;
  position: fixed;
  right: 12px;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 18;
}

.mobile-sticky.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 740px) {
  .hero-actions .button {
    min-height: 62px;
    width: min(100%, 360px);
  }
  .hero {
    min-height: auto;
    padding: var(--header-height) 0 0;
  }

  .hero-media {
    display: block;
    height: 48svh;
    inset: auto;
    min-height: 320px;
    position: relative;
  }

  .hero-media img {
    object-position: center top;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(5, 5, 5, 0) 44%, #050505 100%);
    bottom: auto;
    height: calc(48svh + var(--header-height));
  }

  .hero-content {
    background: var(--black);
    min-height: auto;
    padding: 26px 18px 18px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 9vw, 2.7rem);
    line-height: 1.02;
    max-width: 340px;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.55;
    margin-top: 14px;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-proof {
    bottom: auto;
    left: auto;
    margin: 18px;
    position: relative;
    right: auto;
  }
}

@media (min-width: 620px) {
  .hero-actions {
    display: flex;
    justify-content: center;
  }

  .button {
    min-width: 220px;
  }

  .hero-proof {
    max-width: 310px;
  }

  .modalities {
    grid-template-columns: repeat(2, minmax(0, 460px));
    justify-content: center;
  }

  .reviews {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 620px) and (max-width: 859px) {
  .hero-actions {
    justify-content: center;
  }

  .hero-actions,
  .hero-proof {
    margin-left: auto;
    margin-right: auto;
    width: min(100%, 700px);
  }

  .hero-actions .button {
    flex: 1 1 0;
    min-width: 0;
  }

  .hero-proof {
    max-width: 700px;
  }
}

@media (min-width: 860px) {
  :root {
    --header-height: 84px;
  }

  .site-header {
    padding: 0 32px;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    align-items: center;
    background: transparent;
    border: 0;
    display: flex;
    gap: 26px;
    opacity: 1;
    padding: 0;
    pointer-events: auto;
    position: static;
    transform: none;
  }

  .main-nav a {
    border: 0;
    color: #deded9;
    font-size: 0.72rem;
    padding: 0;
  }

  .main-nav a:hover {
    color: var(--white);
  }

  .hero {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-content {
    min-height: calc(100svh - var(--header-height) - 112px);
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-proof {
    margin-top: 18px;
  }

  .section {
    padding: 104px 32px;
  }

  .intro-section {
    text-align: center;
  }

  .intro-section p {
    margin-left: auto;
    margin-right: auto;
  }

  .split-section,
  .schedule-section,
  .contact-section {
    grid-template-columns: 0.86fr 1.14fr;
  }

  .split-copy,
  .schedule-copy,
  .contact-section > div:first-child {
    position: sticky;
    top: calc(var(--header-height) + 32px);
    align-self: start;
  }

  .split-section,
  .schedule-section {
    text-align: left;
  }

  .split-copy,
  .schedule-copy {
    align-self: center;
    text-align: center;
  }

  .split-copy p,
  .schedule-copy p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .media-row {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .media-row figure {
    min-height: 520px;
  }

  .review-head {
    align-items: end;
    grid-template-columns: 1fr auto;
  }

  .reviews {
    grid-template-columns: repeat(4, 1fr);
  }

  .mobile-sticky {
    display: none;
  }

  .site-footer {
    padding-bottom: 32px;
  }
}

@media (min-width: 1180px) {
  .modalities {
    grid-template-columns: repeat(2, minmax(0, 520px));
    justify-content: center;
  }
}

/* Calm, mobile-first visual direction */
body {
  background: #f7f7f4;
  color: var(--black);
}

.site-header {
  background: rgba(247, 247, 244, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--black);
}

.brand img {
  border-color: rgba(0, 0, 0, 0.12);
}

.brand span {
  color: var(--black);
}

.menu-toggle {
  background: var(--black);
  color: var(--white);
}

.main-nav {
  background: #f7f7f4;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.main-nav a {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 859px) {
  .site-header {
    padding: 0 20px;
  }

  .menu-toggle {
    border-radius: 4px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  }

  .main-nav {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 247, 244, 0.98)),
      #f7f7f4;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    bottom: 0;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    padding: 18px 20px max(22px, env(safe-area-inset-bottom));
  }

  .main-nav a {
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    letter-spacing: 0.02em;
    min-height: 58px;
    padding: 0 16px;
  }

  .main-nav a::after {
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    content: "";
    height: 8px;
    opacity: 0.42;
    transform: rotate(45deg);
    width: 8px;
  }

  .main-nav .nav-cta {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
    justify-content: center;
    margin-top: 8px;
  }

  .main-nav .nav-cta::after {
    display: none;
  }

  .main-nav .nav-secondary {
    display: none;
  }

  body.nav-open .mobile-sticky.is-visible {
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
  }

  .contact-section {
    padding-bottom: 76px;
  }
}

.hero {
  background: #f7f7f4;
  color: var(--black);
  min-height: auto;
  padding: var(--header-height) 0 0;
}

.hero-media {
  display: block;
  height: auto;
  inset: auto;
  margin: 0;
  position: relative;
}

.hero-media img {
  aspect-ratio: 1 / 0.78;
  filter: none;
  height: auto;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.hero-overlay {
  display: none;
}

.hero-content {
  background: #f7f7f4;
  color: var(--black);
  display: block;
  min-height: auto;
  padding: 34px 20px 20px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  color: #575752;
  letter-spacing: 0.12em;
}

.hero h1 {
  color: var(--black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 10vw, 4.8rem);
  font-weight: 500;
  line-height: 1;
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
  overflow-wrap: normal;
  text-wrap: balance;
  text-transform: uppercase;
}

.hero-copy,
.section p {
  color: #34342f;
}

.hero-copy {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.hero-actions {
  grid-template-columns: 1fr;
  margin-top: 22px;
}

.button {
  min-height: 58px;
}

.button-light {
  background: var(--black);
  color: var(--white);
}

.button-dark {
  background: transparent;
  border-color: rgba(0, 0, 0, 0.2);
  color: var(--black);
}

.hero-proof {
  background: var(--black);
  color: var(--white);
  justify-content: center;
  margin: 14px auto 0;
  max-width: calc(100% - 40px);
  position: relative;
  text-align: left;
  width: 335px;
}


.section {
  color: var(--black);
  text-align: center;
}

.intro-section h2,
.split-copy h2,
.review-head h2,
.schedule-copy h2,
.contact-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 7.4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.06;
  text-transform: none;
}

.modalities article {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.modalities p {
  text-align: center;
}

.media-row {
  background: #f7f7f4;
  gap: 14px;
  padding: 0 18px;
}

.media-row figure {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  min-height: 300px;
}

.media-row figcaption {
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.74));
  color: var(--white);
}

.review-section,
.contact-section {
  background: var(--black);
  color: var(--white);
  max-width: none;
  padding-left: max(18px, calc((100vw - var(--max)) / 2 + 18px));
  padding-right: max(18px, calc((100vw - var(--max)) / 2 + 18px));
}

.review-head {
  justify-items: center;
}

.rating-pill {
  justify-self: center;
}

.split-copy p,
.intro-section p,
.schedule-copy p,
.contact-section p,
.reviews p {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.reviews article,
.schedule-copy,
.contact-section > div:first-child {
  text-align: center;
}

.contact-section p {
  max-width: 560px;
}

.review-section .section-kicker,
.contact-section .section-kicker,
.review-section p,
.contact-section p {
  color: #d8d8d2;
}

.reviews article,
.contact-link,
.rating-pill {
  border-color: rgba(255, 255, 255, 0.16);
}

.contact-link .contact-label {
  color: #b8b8b2;
}

.schedule-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.site-footer {
  background: var(--black);
  color: #b8b8b2;
  max-width: none;
  padding-left: max(18px, calc((100vw - var(--max)) / 2 + 18px));
  padding-right: max(18px, calc((100vw - var(--max)) / 2 + 18px));
}

.mobile-sticky {
  background: var(--black);
  color: var(--white);
}

@media (min-width: 860px) {
  .main-nav {
    background: transparent;
  }

  .main-nav .nav-cta {
    display: none;
  }

  .main-nav a {
    color: #222;
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    min-height: 86svh;
    padding: var(--header-height) 32px 56px;
    place-items: center;
  }

  .hero-media {
    grid-column: 2;
    height: auto;
    max-width: 760px;
    width: 100%;
  }

  .hero-media img {
    aspect-ratio: 1 / 0.72;
  }

  .hero-content {
    grid-column: 1;
    grid-row: 1;
    padding: 0;
    width: min(100%, 580px);
  }

  .hero-proof {
    margin-top: 18px;
    max-width: 335px;
    position: static;
    width: 100%;
  }

  .media-row {
    gap: 18px;
    padding: 0 32px;
  }

  .media-row figure {
    min-height: 470px;
  }

  .site-footer {
    gap: 44px;
    padding-bottom: 42px;
  }

  .footer-signup {
    align-items: end;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  }

  .footer-bottom {
    align-items: center;
    grid-template-columns: 1fr auto auto auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Final alignment pass */
.split-section {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.split-section .split-copy {
  position: static;
  text-align: center;
}

.split-section .split-copy p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.modalities {
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 1040px;
}

.modalities article {
  max-width: 560px;
  width: 100%;
}

.review-section,
.contact-section,
.site-footer {
  box-shadow: 0 0 0 100vmax var(--black);
  clip-path: inset(0 -100vmax);
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
  padding-left: 18px;
  padding-right: 18px;
}

.site-footer {
  text-align: center;
}

.footer-signup {
  margin: 0 auto;
  max-width: 720px;
}

.footer-bottom {
  justify-items: center;
}

@media (min-width: 860px) {
  .review-section,
  .contact-section,
  .site-footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .contact-section {
    align-items: center;
    gap: 72px;
    grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1fr);
    padding-bottom: 104px;
    padding-top: 104px;
  }

  .contact-section > div:first-child {
    position: static;
    text-align: left;
  }

  .contact-section h2 {
    max-width: 480px;
  }

  .contact-section p {
    margin-left: 0;
    margin-right: 0;
    max-width: 520px;
  }

  .site-footer {
    gap: 34px;
    padding-bottom: 54px;
    padding-top: 72px;
  }

  .footer-signup {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
    justify-items: center;
    max-width: 760px;
    text-align: center;
  }

  .footer-signup h2 {
    max-width: 760px;
  }

  .footer-cta {
    max-width: 420px;
    width: 100%;
  }

  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    justify-content: center;
  }
}


@media (max-width: 740px) {
  .hero-content {
    padding: 30px 18px 18px;
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 8.2vw, 2.55rem);
    line-height: 1.04;
    max-width: min(100%, 335px);
  }

  .hero-copy {
    max-width: 335px;
  }

  .hero-media img {
    object-position: center top;
  }
}

@media (max-width: 380px) {
  .hero-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero h1,
  .hero-copy {
    max-width: 300px;
  }
}

@media (max-width: 859px) {
  .contact-section {
    gap: 36px;
    justify-items: center;
    padding-bottom: 112px;
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 104px;
    text-align: center;
  }

  .contact-section > div:first-child {
    max-width: 680px;
    position: static;
    text-align: center;
    width: 100%;
  }

  .contact-section .section-kicker {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .contact-section h2 {
    margin-left: auto;
    margin-right: auto;
    max-width: 680px;
    text-align: center;
  }

  .contact-section p {
    font-size: clamp(1rem, 4.6vw, 1.36rem);
    font-weight: 850;
    line-height: 1.45;
    margin: 24px auto 0;
    max-width: 680px;
    text-align: center;
  }

  .contact-actions {
    gap: 20px;
    justify-self: center;
    max-width: 680px;
    width: 100%;
  }

  .contact-link {
    align-items: center;
    column-gap: 18px;
    grid-template-areas:
      "icon label"
      "icon value"
      "icon detail";
    grid-template-columns: 34px minmax(0, 1fr);
    justify-items: start;
    min-height: auto;
    padding: 24px 18px;
    text-align: left;
    width: 100%;
  }

  .contact-link .contact-label {
    font-size: 0.84rem;
    letter-spacing: 0.22em;
    margin-top: 0;
    text-align: left;
  }

  .contact-link strong {
    font-size: clamp(1.18rem, 5vw, 1.58rem);
    line-height: 1.12;
    text-align: left;
  }

  .contact-icon {
    border: 0;
    height: 45px;
    width: 45px;
  }

  .contact-icon svg {
    height: 34px;
    stroke-width: 1.45;
    width: 34px;
  }

  .contact-icon .brand-icon {
    height: 33px;
    stroke-width: 1.35;
    width: 33px;
  }

  .contact-icon .instagram-icon {
    height: 30px;
    width: 30px;
  }

  .contact-address small {
    font-size: clamp(0.9rem, 4vw, 1.08rem);
    line-height: 1.32;
    margin-top: 12px;
    max-width: 100%;
    text-align: left;
  }
}

@media (max-width: 380px) {
  .contact-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-link {
    column-gap: 14px;
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 22px 16px;
  }

  .contact-link .contact-label {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .contact-link strong {
    font-size: clamp(1rem, 5vw, 1.28rem);
  }

  .contact-icon {
    height: 43px;
    width: 43px;
  }

  .contact-icon svg {
    height: 31px;
    width: 31px;
  }

  .contact-icon .brand-icon {
    height: 30px;
    width: 30px;
  }

  .contact-icon .instagram-icon {
    height: 28px;
    width: 28px;
  }
}
