:root {
  --ink: #2d2926;
  --ink-soft: #5c554f;
  --cream: #fbf7f2;
  --paper: #fffdf9;
  --blush: #f1ddd5;
  --blush-light: #faeee9;
  --peach-soft: #f8e6dc;
  --sand: #ead2bc;
  --terracotta: #b75d34;
  --terracotta-dark: #904521;
  --sage: #65766c;
  --sage-dark: #39483f;
  --muted: #756d67;
  --coral: #b75d34;
  --line: rgba(45, 41, 38, 0.14);
  --shadow: 0 20px 60px rgba(73, 47, 34, 0.12);
  --radius: 1.5rem;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

img {
  height: auto;
}

a {
  color: var(--terracotta-dark);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--terracotta);
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.65em;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

h2 {
  font-size: clamp(2.15rem, 4.8vw, 4rem);
}

h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
}

p,
ul,
ol {
  margin: 0 0 1.25rem;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.section-tight {
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--terracotta-dark);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lede {
  max-width: 44rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.8rem 1.35rem;
  border: 1px solid var(--terracotta);
  border-radius: 999px;
  color: white;
  background: var(--terracotta);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button::after {
  content: "→";
}

.button:hover {
  color: white;
  background: var(--terracotta-dark);
  transform: translateY(-2px);
}

.button-small {
  min-height: 2.75rem;
  padding-inline: 1.1rem;
  font-size: 0.82rem;
}

.button-light {
  border-color: var(--paper);
  color: var(--terracotta-dark);
  background: var(--paper);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 750;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.7rem 1rem;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 93%, transparent);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 5.4rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand img {
  width: 15rem;
}

.site-nav,
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

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

.site-nav ul a {
  position: relative;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav ul a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 2px;
  background: var(--terracotta);
  content: "";
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.33rem;
  border: 0;
  background: transparent;
}

.menu-toggle span:not(.visually-hidden) {
  width: 1.5rem;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(46rem, calc(100svh - 5.4rem));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: #171311;
}

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

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

.hero-media::after {
  background: linear-gradient(90deg, rgba(17, 12, 10, 0.92) 0%, rgba(17, 12, 10, 0.58) 42%, rgba(17, 12, 10, 0.05) 78%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  padding-block: clamp(5rem, 10vw, 9rem);
}

.hero h1 {
  max-width: 13ch;
  margin-bottom: 1.3rem;
  text-wrap: balance;
}

.hero .lede {
  max-width: 35rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;
}

.hero-note {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.media-card {
  position: relative;
}

.media-card::before {
  position: absolute;
  z-index: -1;
  inset: -1rem 1.4rem 1.4rem -1rem;
  border-radius: var(--radius);
  background: var(--blush);
  content: "";
}

.media-card img,
.media-card video {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.play-link {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 4.2rem;
  height: 4.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--terracotta);
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.benefits-section {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.benefits-section::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30, 25, 22, 0.96), rgba(30, 25, 22, 0.75)), url("/assets/images/wellness-background.webp") center / cover;
  content: "";
}

.benefits-section .container {
  position: relative;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 3rem;
  background: rgba(255, 255, 255, 0.24);
}

.benefit-card {
  min-height: 18rem;
  padding: 2rem;
  background: rgba(30, 25, 22, 0.83);
}

.benefit-number {
  color: #e8a889;
  font-family: Georgia, serif;
  font-size: 2rem;
}

.benefit-card h3 {
  margin-top: 3.5rem;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.72);
}

.soft-section {
  background: var(--cream);
}

.about-images {
  position: relative;
  min-height: 36rem;
}

.about-images .portrait {
  width: 70%;
  height: 34rem;
  object-fit: cover;
  border-radius: 10rem 10rem 1.5rem 1.5rem;
  box-shadow: var(--shadow);
}

.about-images .thermogram {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  border: 0.7rem solid var(--cream);
  border-radius: 6rem 6rem 1.2rem 1.2rem;
  box-shadow: var(--shadow);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 3rem;
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1rem;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.package-card {
  display: flex;
  min-height: 32rem;
  padding: 2.2rem;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.package-card.featured {
  color: white;
  background: var(--terracotta);
  transform: translateY(-1rem);
}

.package-card .price {
  margin: 0.2rem 0 1rem;
  font-family: Georgia, serif;
  font-size: 3.2rem;
  line-height: 1;
}

.package-card ul {
  padding-left: 1.2rem;
}

.package-card li {
  margin-bottom: 0.65rem;
}

.package-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.package-card.featured .button {
  border-color: white;
  color: var(--terracotta-dark);
  background: white;
}

.price-note {
  margin-top: 1.2rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.cta-band {
  color: #fff;
  background: var(--ink);
}

.cta-band h2,
.cta-band p {
  color: inherit;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cta-actions > a:not(.button) {
  color: #fff;
  font-weight: 700;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

.faq-layout > img {
  width: 100%;
  border-radius: 50% 50% 1.5rem 1.5rem;
}

.faq-list details {
  border-top: 1px solid var(--line);
  padding-block: 1.25rem;
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.25;
}

.faq-list summary::after {
  color: var(--terracotta);
  content: "+";
  font-family: sans-serif;
}

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

.faq-list details p {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--ink-soft);
}

.partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
  margin-top: 2.5rem;
}

.partners a {
  display: grid;
  min-height: 9rem;
  place-items: center;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: white;
}

.partners img {
  max-width: 13rem;
  max-height: 5rem;
}

.page-hero {
  padding-block: clamp(4.5rem, 9vw, 8rem);
  background: var(--cream);
}

.page-hero .container {
  max-width: 920px;
}

.page-hero h1 {
  max-width: 15ch;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
}

.content-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 16rem;
  gap: clamp(2.5rem, 8vw, 7rem);
  align-items: start;
}

.prose {
  max-width: 48rem;
  font-size: 1.05rem;
}

.prose h2,
.prose h3 {
  margin-top: 2.4em;
}

.prose h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.prose ul,
.prose ol {
  padding-left: 1.4rem;
}

.prose li {
  margin-bottom: 0.55rem;
}

.prose blockquote {
  margin: 2rem 0;
  padding: 1.4rem 1.6rem;
  border-left: 4px solid var(--terracotta);
  background: var(--blush-light);
  font-family: Georgia, serif;
  font-size: 1.2rem;
}

.article-hero {
  background: linear-gradient(135deg, #f5e7df, #fbf7f2);
}

.article-meta {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.source-note {
  margin-block: 2rem;
  padding: 1.25rem 1.4rem;
  border-left: 4px solid var(--coral);
  background: var(--cream);
}

.article-cta {
  margin-top: 3rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius);
  background: var(--peach-soft);
}

.article-cta h2 {
  margin-top: 0;
}

.compact-hero {
  min-height: 32rem;
  display: grid;
  align-items: center;
}

.rounded-image {
  border-radius: var(--radius);
}

.side-card {
  position: sticky;
  top: 7rem;
  padding: 1.4rem;
  border-radius: 1.2rem;
  color: white;
  background: var(--terracotta);
}

.side-card h2 {
  font-size: 1.65rem;
}

.portrait-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 8vw, 7rem);
  align-items: start;
}

.portrait-layout > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 10rem 10rem 1.5rem 1.5rem;
  box-shadow: var(--shadow);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.resource-card {
  display: flex;
  min-height: 14rem;
  padding: 1.7rem;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  color: var(--ink);
  background: white;
  text-decoration: none;
}

.resource-card:hover {
  color: var(--ink);
  border-color: var(--terracotta);
  transform: translateY(-2px);
}

.resource-card .resource-type {
  color: var(--terracotta-dark);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-frame {
  width: 100%;
  min-height: 900px;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: white;
}

.link-hub {
  width: min(calc(100% - 2rem), 44rem);
  margin-inline: auto;
  text-align: center;
}

.link-hub img {
  width: 19rem;
  margin: 0 auto 2rem;
}

.link-list {
  display: grid;
  gap: 0.75rem;
  margin: 2rem 0;
}

.link-list a {
  display: flex;
  min-height: 3.8rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: white;
  font-weight: 750;
  text-decoration: none;
}

.link-list a::after {
  content: "→";
}

.site-footer {
  padding-top: 5rem;
  color: white;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr 1.2fr;
  gap: 3rem;
}

.site-footer h2 {
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-brand img {
  width: 15rem;
  margin-bottom: 1.3rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.site-footer p,
.site-footer address {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.site-footer a {
  color: white;
}

.footer-links {
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a,
.social-links a {
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 1rem;
  font-weight: 700;
}

.footer-action {
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: var(--terracotta);
}

.footer-action h2,
.footer-action p {
  color: white;
}

.site-footer .button-light {
  color: var(--ink);
}

.medical-note {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.78rem;
}

.medical-note p {
  max-width: 70rem;
}

.footer-bottom {
  display: flex;
  padding-block: 1.2rem;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 1.4rem max(1rem, calc((100vw - var(--max-width)) / 2));
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open,
  .site-nav ul {
    display: flex;
  }

  .site-nav.is-open {
    align-items: stretch;
    flex-direction: column;
  }

  .site-nav ul {
    align-items: stretch;
    flex-direction: column;
  }

  .site-nav ul a {
    display: block;
    padding-block: 0.35rem;
  }

  .nav-cta {
    align-self: flex-start;
  }

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

  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: auto;
  }

  .package-card.featured {
    transform: none;
  }

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

@media (max-width: 720px) {
  .header-inner {
    min-height: 4.7rem;
  }

  .brand img {
    width: 12.5rem;
  }

  .hero {
    min-height: 39rem;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(17, 12, 10, 0.18), rgba(17, 12, 10, 0.9) 68%);
  }

  .hero-content {
    padding-block: 6rem 3.5rem;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.5rem);
  }

  .split,
  .faq-layout,
  .portrait-layout,
  .content-shell {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .gallery-strip,
  .partners,
  .resource-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
  }

  .benefit-card h3 {
    margin-top: 2rem;
  }

  .about-images {
    min-height: 29rem;
  }

  .about-images .portrait {
    height: 27rem;
  }

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

  .gallery-strip img:last-child {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
  }

  .side-card {
    position: static;
  }

  .booking-frame {
    min-height: 1050px;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.4rem;
  }
}

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

/* Conversion-focused homepage and booking flow */

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--terracotta) 70%, white);
  outline-offset: 3px;
}

section[id] {
  scroll-margin-top: 6.5rem;
}

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

.button-secondary:hover {
  border-color: var(--terracotta-dark);
  color: white;
  background: var(--terracotta-dark);
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 8% 8%, rgba(241, 221, 213, 0.8), transparent 30rem),
    linear-gradient(135deg, #fffaf4 0%, #fbf4ec 55%, #f3e2d5 100%);
}

.home-hero::after {
  position: absolute;
  width: 26rem;
  height: 26rem;
  right: -12rem;
  bottom: -15rem;
  border: 1px solid rgba(185, 95, 54, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(185, 95, 54, 0.04), 0 0 0 8rem rgba(185, 95, 54, 0.035);
  content: "";
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(25rem, 0.98fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.home-hero-copy {
  max-width: 43rem;
}

.home-hero h1 {
  max-width: 13ch;
  margin-bottom: 1.4rem;
  font-size: clamp(3.25rem, 5vw, 4.5rem);
  text-wrap: balance;
}

.hero-lede {
  max-width: 39rem;
  color: var(--ink-soft);
  font-size: clamp(1.13rem, 1.7vw, 1.35rem);
  line-height: 1.55;
}

.home-hero .hero-actions {
  margin-block: 2rem 1.4rem;
}

.hero-action-note {
  flex-basis: 100%;
  margin: -0.35rem 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.25rem;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
  list-style: none;
}

.hero-assurances li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-assurances li::before {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--terracotta);
  content: "";
}

.hero-local-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  margin-top: 2.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.hero-local-proof a {
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.hero-local-proof a span {
  margin-right: 0.35rem;
  color: #a85b32;
  letter-spacing: 0.05em;
}

.home-hero-visual {
  position: relative;
  display: grid;
  min-width: 0;
  gap: 0.85rem;
}

.hero-primary-thermal {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 1.5rem;
  background: #060807;
  box-shadow: 0 24px 60px rgba(37, 32, 27, 0.2);
}

.hero-primary-thermal img {
  width: 100%;
  height: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  object-position: right center;
}

.hero-primary-thermal figcaption {
  padding: 0.95rem 1.25rem 1.05rem;
  color: white;
  background: var(--sage-dark);
}

.hero-primary-thermal figcaption strong {
  display: block;
}

.hero-primary-thermal figcaption strong {
  font-family: Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.2;
}

.hero-olivia-card {
  display: grid;
  min-height: 8.5rem;
  grid-template-columns: 7.4rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(74, 57, 46, 0.12);
  border-radius: 1.2rem;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 18px 42px rgba(73, 47, 34, 0.11);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.hero-olivia-card:hover {
  border-color: rgba(185, 95, 54, 0.42);
  box-shadow: 0 22px 48px rgba(73, 47, 34, 0.14);
  transform: translateY(-2px);
}

.hero-olivia-card > img {
  width: 100%;
  height: 8.5rem;
  object-fit: cover;
  object-position: center 24%;
}

.hero-olivia-copy small,
.hero-olivia-copy strong,
.hero-olivia-copy em {
  display: block;
}

.hero-olivia-copy small {
  margin-bottom: 0.3rem;
  color: var(--terracotta-dark);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-olivia-copy strong {
  margin-bottom: 0.22rem;
  font-family: Georgia, serif;
  font-size: 1.16rem;
  font-weight: 600;
}

.hero-olivia-copy em {
  color: var(--ink-soft);
  font-size: 0.71rem;
  font-style: normal;
  line-height: 1.4;
}

.hero-olivia-arrow {
  padding-right: 1.3rem;
  color: var(--terracotta-dark);
  font-size: 1.3rem;
}

.thermal-story-section {
  color: white;
  background:
    radial-gradient(circle at 90% 12%, rgba(240, 183, 155, 0.13), transparent 27rem),
    var(--sage-dark);
}

.thermal-story-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.thermal-story-copy h2 {
  max-width: 12ch;
}

.thermal-story-copy .eyebrow {
  color: #f0b79b;
}

.thermal-story-copy .lede,
.thermal-story-copy > p:not(.lede) {
  color: rgba(255, 255, 255, 0.76);
}

.thermal-story-copy .text-link {
  color: white;
}

.thermal-story-media {
  min-width: 0;
}

.thermal-story-gallery {
  display: grid;
  min-height: 34rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, 1fr);
  gap: 0.85rem;
}

.thermal-story-gallery figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.2rem;
  background: #18231e;
  box-shadow: 0 20px 48px rgba(17, 23, 20, 0.26);
}

.thermal-story-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thermal-story-note {
  max-width: 42rem;
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  line-height: 1.5;
}

.trust-section {
  border-block: 1px solid var(--line);
  background: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  position: relative;
  display: flex;
  min-height: 8.4rem;
  align-items: center;
  padding: 1.5rem clamp(1.1rem, 2.5vw, 2rem);
}

.trust-item::before {
  position: absolute;
  top: 1.35rem;
  left: clamp(1.1rem, 2.5vw, 2rem);
  width: 2rem;
  height: 2px;
  border-radius: 999px;
  background: var(--terracotta);
  content: "";
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  margin: 0.65rem 0 0.25rem;
  font-size: 0.92rem;
}

.trust-item div > span {
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.45;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.65fr);
  align-items: end;
  gap: 3rem;
}

.section-heading-row h2 {
  max-width: 14ch;
  margin-bottom: 0;
}

.section-heading-row > p {
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
}

.sessions-section {
  background: var(--paper);
}

.session-inclusions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 2.25rem 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--cream);
  list-style: none;
}

.session-inclusions li {
  position: relative;
  display: flex;
  min-height: 4.4rem;
  align-items: center;
  padding: 0.9rem 1rem 0.9rem 2rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.35;
}

.session-inclusions li::before {
  position: absolute;
  left: 1rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--terracotta);
  content: "";
}

.session-inclusions li + li {
  border-left: 1px solid var(--line);
}

.session-inclusions + .package-grid-compact,
.session-inclusions + .booking-choice-grid {
  margin-top: 1.2rem;
}

.package-grid-compact {
  gap: 1.1rem;
  margin-top: 3.2rem;
}

.package-grid-compact .package-card {
  min-height: 0;
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 12px 36px rgba(73, 47, 34, 0.06);
}

.package-grid-compact .package-card:hover {
  border-color: rgba(185, 95, 54, 0.45);
  transform: translateY(-3px);
}

.package-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.package-name {
  color: var(--terracotta-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.package-duration {
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
}

.coverage-figure {
  display: grid;
  min-height: 12rem;
  grid-template-columns: 8.4rem minmax(0, 1fr);
  align-items: center;
  margin: 1.25rem 0 0.25rem;
  overflow: hidden;
  border: 1px solid rgba(45, 41, 38, 0.08);
  border-radius: 1rem;
  color: var(--ink);
  background: #fbf3e9;
}

.coverage-image {
  position: relative;
  min-height: 12rem;
  height: 100%;
  overflow: hidden;
  border-right: 1px solid rgba(74, 57, 46, 0.1);
  background: #fff9f0;
}

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

.coverage-scan-line {
  position: absolute;
  z-index: 2;
  display: block;
  width: calc(100% - 1rem);
  height: 1px;
  top: 0.7rem;
  left: 0.5rem;
  background: rgba(116, 73, 49, 0.82);
  box-shadow: 0 0 0.55rem rgba(185, 95, 54, 0.55);
  animation: coverage-scan 4.2s ease-in-out infinite;
}

.coverage-figure--torso .coverage-scan-line {
  animation-delay: -1.15s;
}

.coverage-figure--full-body .coverage-scan-line {
  animation-delay: -2.3s;
}

.coverage-figure figcaption {
  min-width: 0;
  padding: 1rem 1rem 1rem 0.35rem;
}

.coverage-figure figcaption span,
.coverage-figure figcaption strong,
.coverage-figure figcaption small {
  display: block;
}

.coverage-figure figcaption span {
  margin-bottom: 0.32rem;
  color: var(--terracotta-dark);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coverage-figure figcaption strong {
  margin-bottom: 0.28rem;
  font-family: Georgia, serif;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.12;
}

.coverage-figure figcaption small {
  color: var(--ink-soft);
  font-size: 0.67rem;
  line-height: 1.42;
}

@keyframes coverage-scan {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(10.5rem);
  }
}

.package-grid-compact .price {
  margin-block: 1.2rem 0.8rem;
  font-size: 2.75rem;
}

.check-list {
  margin: 0.4rem 0 1.5rem;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.35rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 800;
  content: "✓";
}

.package-link {
  margin-top: auto;
}

.sessions-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  padding: 1.35rem 1.5rem;
  border-radius: 1rem;
  background: var(--cream);
}

.sessions-action p {
  margin: 0;
}

.report-value-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.75), transparent 25rem),
    var(--blush-light);
}

.report-value-grid {
  display: grid;
  grid-template-columns: minmax(20rem, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 7rem);
}

.report-value-copy {
  position: sticky;
  top: 7.5rem;
}

.report-value-copy h2 {
  max-width: 11ch;
}

.report-inclusions {
  margin: 0;
  padding: 0 clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(45, 41, 38, 0.1);
  border-radius: 1.35rem;
  background: white;
  box-shadow: 0 18px 50px rgba(73, 47, 34, 0.08);
  list-style: none;
}

.report-inclusions li {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr);
  gap: 1rem;
  padding-block: 1.65rem;
  border-top: 1px solid var(--line);
}

.report-inclusions li:first-child {
  border-top: 0;
}

.partner-network-section {
  background:
    radial-gradient(circle at 92% 12%, rgba(220, 148, 109, 0.13), transparent 28rem),
    var(--cream);
}

.partner-network-heading {
  align-items: end;
}

.partner-network-heading h2 {
  max-width: 15ch;
}

.partner-network-heading > p {
  max-width: 36rem;
}

.partner-network-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: clamp(2.25rem, 5vw, 3.75rem);
}

.partner-network-card {
  display: grid;
  grid-template-rows: 7rem 1fr;
  overflow: hidden;
  border: 1px solid rgba(45, 41, 38, 0.1);
  border-radius: 1.35rem;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 18px 50px rgba(73, 47, 34, 0.06);
}

.partner-network-logo {
  display: flex;
  align-items: center;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(45, 41, 38, 0.08);
  background: rgba(248, 224, 210, 0.45);
}

.partner-network-logo img {
  width: auto;
  max-width: min(100%, 15rem);
  max-height: 3.5rem;
}

.partner-network-logo-pact img {
  max-width: 8rem;
  max-height: 4.25rem;
}

.partner-network-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.partner-network-label {
  margin-bottom: 0.7rem;
  color: var(--terracotta-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.partner-network-copy h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  line-height: 1.12;
}

.partner-network-copy p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.7;
}

.partner-network-copy .text-link {
  margin-top: auto;
  padding-top: 0.7rem;
}

.report-inclusions li > span {
  color: var(--terracotta-dark);
  font-family: Georgia, serif;
  font-size: 1.1rem;
}

.report-inclusions h3 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
}

.report-inclusions p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.process-section {
  color: white;
  background: var(--sage-dark);
}

.process-section .eyebrow {
  color: #f0b79b;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.process-intro {
  align-self: start;
}

.process-intro h2 {
  max-width: 12ch;
}

.process-intro .lede,
.process-steps p {
  color: rgba(255, 255, 255, 0.72);
}

.process-intro .text-link {
  color: white;
}

.process-visual {
  margin: 2.2rem 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.06);
}

.process-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.process-visual figcaption {
  padding: 0.85rem 1rem 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.73rem;
  line-height: 1.45;
}

.process-visual figcaption strong,
.process-visual figcaption span {
  display: block;
}

.process-visual figcaption strong {
  margin-bottom: 0.12rem;
  color: white;
  font-size: 0.82rem;
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 1.25rem;
  padding-block: 1.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.process-steps h3 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.process-steps p {
  margin: 0;
}

.step-number {
  color: #f0b79b;
  font-family: Georgia, serif;
  font-size: 1.4rem;
}

.about-home-section {
  background: var(--cream);
}

.about-home-grid {
  display: grid;
  grid-template-columns: minmax(22rem, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.about-home-image {
  position: relative;
}

.about-home-image > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 11rem 11rem 1.5rem 1.5rem;
  box-shadow: var(--shadow);
}

.about-credential {
  position: absolute;
  right: -1.25rem;
  bottom: 2rem;
  width: 13.5rem;
  padding: 1.15rem;
  border-radius: 1rem;
  color: white;
  background: var(--terracotta);
  box-shadow: var(--shadow);
}

.about-credential strong,
.about-credential span {
  display: block;
}

.about-credential strong {
  margin-bottom: 0.2rem;
  font-family: Georgia, serif;
  font-size: 1.35rem;
}

.about-credential span {
  font-size: 0.76rem;
  line-height: 1.45;
}

.about-home-copy h2 {
  max-width: 12ch;
}

.signature-line {
  margin: 1.5rem 0;
  color: var(--terracotta-dark);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  background: white;
}

.reviews-section::before {
  position: absolute;
  width: 28rem;
  height: 28rem;
  top: -15rem;
  right: -10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 163, 129, 0.2), transparent 68%);
  content: "";
  pointer-events: none;
}

.reviews-section .container {
  position: relative;
}

.reviews-heading {
  align-items: end;
}

.reviews-heading h2 {
  max-width: 12ch;
}

.reviews-summary {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.7rem;
}

.reviews-summary strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.9rem;
}

.review-stars {
  color: var(--terracotta);
  font-size: 0.83rem;
  letter-spacing: 0.14em;
  line-height: 1;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(2.5rem, 6vw, 4rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review-card {
  position: relative;
  min-height: 17rem;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: clamp(1.6rem, 3vw, 2.4rem);
}

.review-card + .review-card {
  border-left: 1px solid var(--line);
}

.review-card blockquote {
  max-width: 18ch;
  margin: 2.3rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.review-card figcaption strong,
.review-card figcaption span {
  display: block;
}

.review-card figcaption strong {
  font-size: 0.84rem;
}

.review-card figcaption span {
  margin-top: 0.15rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.reviews-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1.15rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.reviews-action p {
  margin: 0;
}

.reviews-action a {
  font-weight: 750;
}

.thermography-explainer {
  background: white;
}

.explainer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(24rem, 1.08fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.explainer-copy h2 {
  max-width: 13ch;
}

.thermal-image-pair {
  position: relative;
  min-height: 32rem;
}

.thermal-image-pair img {
  position: absolute;
  width: 73%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1.35rem;
  box-shadow: var(--shadow);
}

.thermal-image-pair img:first-child {
  top: 0;
  right: 0;
}

.thermal-image-pair img:last-child {
  bottom: 0;
  left: 0;
  border: 0.55rem solid white;
}

.faq-section {
  background: var(--cream);
}

.faq-layout-new {
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.28fr);
}

.faq-intro {
  position: sticky;
  top: 7.5rem;
}

.faq-intro h2 {
  max-width: 10ch;
}

.faq-intro > p {
  max-width: 24rem;
  color: var(--ink-soft);
}

.faq-layout-new .faq-list {
  border-radius: 1.25rem;
  background: white;
  box-shadow: 0 12px 40px rgba(73, 47, 34, 0.06);
}

.faq-layout-new .faq-list details {
  padding: 1.35rem 1.5rem;
}

.faq-layout-new .faq-list details:first-child {
  border-top: 0;
}

.faq-layout-new .faq-list details:last-child {
  border-bottom: 0;
}

.location-section {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background: white;
}

.location-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2.5rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 1.5rem;
  background: var(--peach-soft);
}

.location-card h2,
.location-card p {
  margin-bottom: 0.6rem;
}

.location-card address {
  margin-top: 1.15rem;
  font-style: normal;
}

.location-actions {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.8rem;
}

.partner-strip {
  padding-block: 2.4rem;
  border-top: 1px solid var(--line);
  background: white;
}

.partner-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.partner-strip-inner > span {
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.partner-strip-inner > div {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.partner-strip img {
  width: auto;
  max-width: 11rem;
  max-height: 3.4rem;
  opacity: 0.82;
}

.final-cta {
  padding-block: clamp(4rem, 7vw, 6.5rem);
  color: white;
  background: var(--ink);
}

.final-cta .eyebrow {
  color: #f0b79b;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 4rem;
}

.final-cta h2 {
  max-width: 15ch;
}

.final-cta p {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.72);
}

.final-cta-actions {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.85rem;
}

.final-cta-actions > a:not(.button) {
  color: white;
  font-weight: 700;
}

.booking-hero {
  background:
    radial-gradient(circle at 85% 10%, rgba(241, 221, 213, 0.9), transparent 28rem),
    var(--cream);
}

.booking-hero h1 {
  max-width: 13ch;
}

.booking-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.booking-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.25rem;
  margin: 1.25rem 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 750;
  list-style: none;
}

.booking-assurances li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.booking-assurances li::before {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--terracotta);
  content: "";
}

.booking-heading-row h2 {
  max-width: none;
}

.booking-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.booking-choice {
  display: flex;
  min-height: 22rem;
  padding: 0;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: white;
  box-shadow: 0 12px 36px rgba(73, 47, 34, 0.06);
}

.booking-choice > div:not(.booking-choice-action) {
  padding: 1.45rem 1.7rem 0;
}

.booking-choice > .coverage-figure {
  min-height: 11.5rem;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.booking-choice > .coverage-figure .coverage-image {
  min-height: 11.5rem;
}

.booking-choice .booking-choice-action {
  margin-inline: 1.7rem;
  padding-bottom: 1.45rem;
}

.article-visual {
  margin: 2.2rem 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: #18231e;
  box-shadow: 0 16px 40px rgba(73, 47, 34, 0.08);
}

.article-visual img {
  width: 100%;
  max-height: 31rem;
  object-fit: contain;
}

.article-visual-wide img {
  aspect-ratio: 2.55 / 1;
  object-fit: cover;
}

.article-visual-portrait img {
  max-height: 37rem;
}

.article-visual figcaption {
  padding: 0.9rem 1.05rem 1rem;
  color: var(--ink-soft);
  background: white;
  font-size: 0.78rem;
  line-height: 1.5;
}

.article-visual figcaption strong {
  color: var(--ink);
}

.article-scan-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-block: 2.2rem;
}

.article-scan-pair .article-visual {
  margin: 0;
}

.article-scan-pair .article-visual img {
  height: 18rem;
}

.booking-choice h3 {
  margin-top: 1rem;
}

.booking-choice p {
  color: var(--ink-soft);
}

.booking-choice-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.booking-choice-action strong {
  font-family: Georgia, serif;
  font-size: 1.8rem;
}

.booking-choice-action a {
  font-size: 0.85rem;
  font-weight: 750;
}

.booking-launch-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
  padding: clamp(1.75rem, 4vw, 3rem);
  border-radius: 1.35rem;
  color: white;
  background: var(--terracotta);
}

.booking-launch-card .eyebrow,
.booking-launch-card h2,
.booking-launch-card p {
  color: white;
}

.booking-launch-card h2,
.booking-launch-card p {
  margin-bottom: 0.6rem;
}

.booking-launch-card .button {
  border-color: white;
  color: var(--ink);
  background: white;
}

.booking-prep-section {
  background: var(--cream);
}

.booking-prep-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.booking-prep-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-prep-list li {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr);
  gap: 1rem;
  padding-block: 1.3rem;
  border-top: 1px solid var(--line);
}

.booking-prep-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.booking-prep-list li > span {
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--sage);
  font-weight: 800;
}

.booking-prep-list strong {
  display: block;
  margin-bottom: 0.2rem;
}

.booking-prep-list p {
  margin: 0;
  color: var(--ink-soft);
}

.booking-help-section {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: white;
}

.booking-help-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 1.5rem;
  color: white;
  background: var(--sage-dark);
}

.booking-help-card .eyebrow {
  color: #f0b79b;
}

.booking-help-card h2,
.booking-help-card p {
  color: white;
}

.booking-help-card p {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.74);
}

.booking-help-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-help-links a:not(.button) {
  color: white;
}

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

@media (max-width: 980px) {
  .home-hero-grid,
  .about-home-grid,
  .explainer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .home-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  }

  .home-hero-visual {
    min-height: 31rem;
  }

  .home-hero-thermal-first {
    min-height: 0;
  }

  .section-heading-row,
  .process-layout,
  .booking-prep-grid {
    gap: 2.5rem;
  }

  .booking-choice-grid {
    grid-template-columns: 1fr;
  }

  .package-grid-compact {
    grid-template-columns: 1fr;
  }

  .report-value-grid {
    gap: 3rem;
  }

  .thermal-story-layout {
    gap: 3rem;
  }

  .thermal-story-gallery {
    min-height: 29rem;
  }

  .booking-choice {
    min-height: 0;
  }

  .location-card {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .location-actions {
    align-items: center;
    flex-direction: column;
  }
}

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

  .header-inner {
    min-height: 4.35rem;
  }

  .brand img {
    width: 11.25rem;
  }

  .site-nav ul a {
    min-height: 2.85rem;
    display: flex;
    align-items: center;
  }

  .home-hero {
    padding-block: 1.15rem 1.25rem;
    background:
      radial-gradient(circle at 92% 42%, rgba(214, 151, 116, 0.12), transparent 18rem),
      linear-gradient(180deg, #fffaf5 0%, #f8eee4 100%);
  }

  .home-hero::after {
    display: none;
  }

  .home-hero-grid,
  .thermal-story-layout,
  .section-heading-row,
  .process-layout,
  .report-value-grid,
  .about-home-grid,
  .explainer-grid,
  .faq-layout-new,
  .booking-prep-grid,
  .booking-launch-card,
  .booking-help-card,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .home-hero-grid {
    gap: 0;
  }

  .thermal-story-section {
    padding-block: 3.5rem;
  }

  .thermal-story-layout {
    gap: 2rem;
  }

  .thermal-story-copy h2 {
    max-width: 14ch;
    font-size: clamp(2.3rem, 10vw, 3rem);
  }

  .thermal-story-copy .lede {
    font-size: 1rem;
  }

  .thermal-story-gallery {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 11rem);
    gap: 0.65rem;
  }

  .thermal-story-note {
    font-size: 0.66rem;
  }

  .home-hero-copy {
    display: contents;
  }

  .home-hero-copy > .eyebrow {
    order: 1;
  }

  .home-hero-copy > h1 {
    order: 2;
  }

  .home-hero-copy > .hero-lede {
    order: 3;
  }

  .home-hero-copy > .hero-actions {
    order: 4;
  }

  .home-hero-visual {
    order: 5;
  }

  .home-hero-copy > .hero-local-proof {
    order: 6;
  }

  .home-hero-copy > .hero-assurances {
    order: 7;
  }

  .home-hero h1 {
    max-width: 17ch;
    margin-bottom: 0.75rem;
    font-size: clamp(2.35rem, 9.8vw, 2.75rem);
    line-height: 1;
    letter-spacing: -0.035em;
    text-wrap: pretty;
  }

  .home-hero .eyebrow {
    margin-bottom: 0.62rem;
    font-size: 0.62rem;
    letter-spacing: 0.145em;
  }

  .hero-lede {
    margin-bottom: 0;
    max-width: 34rem;
    font-size: 0.91rem;
    line-height: 1.5;
  }

  .home-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.35rem;
    margin-block: 0.95rem 1rem;
  }

  .hero-action-note {
    margin: 0.15rem 0 0;
    padding-inline: 0.5rem;
    font-size: 0.68rem;
    line-height: 1.4;
    text-align: center;
  }

  .home-hero .button {
    width: 100%;
    min-height: 3.25rem;
    box-shadow: 0 12px 28px rgba(156, 71, 34, 0.17);
  }

  .home-hero .button-secondary {
    display: none;
  }

  .home-hero .button-secondary:hover {
    color: var(--terracotta);
    background: transparent;
    transform: none;
  }

  .hero-assurances {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 0.65rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(45, 41, 38, 0.1);
    font-size: clamp(0.64rem, 2.6vw, 0.72rem);
  }

  .hero-assurances li {
    justify-content: center;
    gap: 0;
    padding-inline: 0.4rem;
    text-align: center;
    white-space: normal;
  }

  .hero-assurances li::before {
    display: none;
  }

  .hero-assurances li + li {
    border-left: 1px solid rgba(45, 41, 38, 0.1);
  }

  .hero-local-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.72rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .hero-local-proof a {
    white-space: nowrap;
  }

  .hero-stars {
    font-size: 0.68rem;
    letter-spacing: 0.02em;
  }

  .hero-location {
    display: none;
  }

  .home-hero-visual {
    display: grid;
    min-height: 0;
    gap: 0.65rem;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-primary-thermal {
    border-radius: 1.2rem;
  }

  .hero-primary-thermal img {
    min-height: 0;
  }

  .hero-primary-thermal figcaption {
    padding: 0.75rem 1rem 0.82rem;
  }

  .hero-primary-thermal figcaption strong {
    max-width: 22ch;
    font-size: 1.06rem;
  }

  .coverage-scan-line {
    display: none;
  }

  .hero-olivia-card {
    min-height: 6.7rem;
    grid-template-columns: 5.7rem minmax(0, 1fr) auto;
    gap: 0.85rem;
    border-radius: 1rem;
  }

  .hero-olivia-card > img {
    height: 6.7rem;
  }

  .hero-olivia-copy small {
    font-size: 0.52rem;
  }

  .hero-olivia-copy strong {
    font-size: 1rem;
  }

  .hero-olivia-copy em {
    font-size: 0.62rem;
  }

  .hero-olivia-arrow {
    padding-right: 0.9rem;
  }

  .trust-grid {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-item {
    min-height: 5.15rem;
    justify-content: center;
    padding: 0.8rem 0.45rem;
    text-align: center;
  }

  .trust-item::before {
    display: none;
  }

  .trust-item + .trust-item {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .trust-item strong {
    margin: 0;
    font-size: clamp(0.69rem, 2.8vw, 0.8rem);
    line-height: 1.25;
  }

  .trust-item div > span {
    display: none;
  }

  .section-heading-row {
    align-items: start;
    gap: 0.85rem;
  }

  .section-heading-row h2 {
    max-width: none;
    font-size: clamp(2.15rem, 10.5vw, 3rem);
  }

  .sessions-section {
    padding-block: 3.25rem;
  }

  .sessions-section .section-heading-row > p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .package-grid-compact {
    gap: 0.8rem;
    margin-top: 1.6rem;
  }

  .package-grid-compact .package-card {
    padding: 1.25rem;
  }

  .package-grid-compact .price {
    margin-block: 0.8rem 0.45rem;
    font-size: 2.25rem;
  }

  .package-grid-compact .package-card > p:not(.price) {
    margin-bottom: 0.85rem;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .package-grid-compact .check-list {
    display: none;
  }

  .session-inclusions {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.4rem;
  }

  .session-inclusions li {
    min-height: 3.8rem;
    padding: 0.75rem 0.7rem 0.75rem 1.55rem;
    font-size: 0.75rem;
  }

  .session-inclusions li::before {
    left: 0.7rem;
    width: 0.35rem;
    height: 0.35rem;
  }

  .session-inclusions li:nth-child(odd) {
    border-left: 0;
  }

  .session-inclusions li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .report-value-grid {
    gap: 2rem;
  }

  .report-value-copy {
    position: static;
  }

  .report-value-copy h2 {
    max-width: 12ch;
  }

  .report-value-copy .lede {
    font-size: 1rem;
  }

  .report-inclusions {
    padding-inline: 1.1rem;
  }

  .report-inclusions li {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.7rem;
    padding-block: 1.25rem;
  }

  .report-inclusions h3 {
    font-size: 1.22rem;
  }

  .report-inclusions p {
    font-size: 0.86rem;
  }

  .partner-network-grid {
    grid-template-columns: 1fr;
  }

  .sessions-action {
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
  }

  .sessions-action .button {
    width: 100%;
  }

  .process-layout {
    gap: 2rem;
  }

  .process-intro h2 {
    max-width: none;
  }

  .process-steps li {
    grid-template-columns: 2.4rem minmax(0, 1fr);
    gap: 0.75rem;
  }

  .about-home-grid {
    gap: 3.2rem;
  }

  .reviews-summary {
    margin-top: 0.35rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .review-card {
    min-height: 0;
    padding: 1.6rem 0.4rem;
  }

  .review-card + .review-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .review-card blockquote {
    margin-block: 1.5rem;
  }

  .reviews-action {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.1rem;
  }

  .about-home-image {
    width: calc(100% - 0.75rem);
  }

  .about-credential {
    right: -0.75rem;
    bottom: 1.25rem;
    width: 12rem;
  }

  .thermal-image-pair {
    min-height: 24rem;
  }

  .faq-layout-new {
    gap: 2rem;
  }

  .faq-intro {
    position: static;
  }

  .faq-layout-new .faq-list details {
    padding: 1.15rem 1rem;
  }

  .faq-list summary {
    font-size: 1.15rem;
  }

  .location-card {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .location-actions {
    grid-column: auto;
    align-items: stretch;
    flex-direction: column;
  }

  .location-actions .button {
    width: 100%;
  }

  .partner-strip-inner,
  .partner-strip-inner > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .partner-strip-inner {
    gap: 1.5rem;
  }

  .partner-strip-inner > div {
    width: 100%;
    gap: 1.5rem;
  }

  .partner-strip-inner a {
    width: 100%;
    min-height: 4.4rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 0.8rem;
  }

  .final-cta-inner {
    gap: 1.5rem;
  }

  .final-cta-actions {
    align-items: stretch;
  }

  .site-footer {
    padding-top: 3.5rem;
  }

  .site-footer .footer-action {
    display: none;
  }

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

  .booking-hero-actions .button {
    width: 100%;
  }

  .booking-assurances {
    justify-content: center;
    gap: 0.45rem 0.9rem;
    font-size: 0.7rem;
  }

  .booking-choice-grid {
    margin-top: 2rem;
  }

  .booking-choice {
    min-height: 0;
  }

  .article-scan-pair {
    grid-template-columns: 1fr;
  }

  .article-scan-pair .article-visual img {
    height: auto;
    max-height: 25rem;
  }

  .booking-launch-card,
  .booking-help-card {
    gap: 1.5rem;
  }

  .booking-launch-card .button,
  .booking-help-links .button {
    width: 100%;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    border-top: 1px solid rgba(45, 41, 38, 0.16);
    background: rgba(255, 253, 249, 0.97);
    box-shadow: 0 -10px 30px rgba(45, 41, 38, 0.12);
    backdrop-filter: blur(16px);
    transition: transform 180ms ease, visibility 180ms ease;
  }

  body.home-page .mobile-action-bar {
    visibility: hidden;
    pointer-events: none;
    transform: translateY(100%);
  }

  body.home-page.mobile-actions-ready:not(.mobile-hero-visible) .mobile-action-bar {
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .mobile-action-bar a {
    min-height: 4.45rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-call {
    color: var(--ink);
  }

  .mobile-book {
    color: white;
    background: var(--terracotta);
  }

  .mobile-book:hover {
    color: white;
    background: var(--terracotta-dark);
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 1.35rem), var(--max-width));
  }

  .brand img {
    width: 10.3rem;
  }

  .home-hero h1 {
    font-size: clamp(2.42rem, 10.7vw, 2.8rem);
  }

  .hero-assurances {
    flex-direction: row;
  }

  .home-hero-visual {
    min-height: 0;
  }

  .booking-choice-action {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Search-focused service and client guide pages */

.service-hero {
  background:
    radial-gradient(circle at 88% 12%, rgba(226, 163, 129, 0.24), transparent 24rem),
    linear-gradient(135deg, #fffaf5, #f7e9e1);
}

.service-hero h1 {
  max-width: 14ch;
}

.service-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
}

.service-overview-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.service-coverage-visual {
  max-width: 30rem;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12rem 12rem 1.5rem 1.5rem;
  background: #fff9f0;
  box-shadow: var(--shadow);
}

.service-coverage-visual img {
  width: 100%;
  max-height: 38rem;
  object-fit: contain;
}

.service-coverage-visual figcaption {
  padding: 0.9rem 1.1rem 1rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  background: white;
  font-size: 0.75rem;
  line-height: 1.45;
}

.service-overview-copy h2 {
  max-width: 13ch;
}

.service-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 2rem 0;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: var(--cream);
}

.service-facts div {
  min-height: 6.2rem;
  padding: 1rem 1.1rem;
}

.service-facts div:nth-child(even) {
  border-left: 1px solid var(--line);
}

.service-facts div:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

.service-facts dt {
  margin-bottom: 0.22rem;
  color: var(--terracotta-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-facts dd {
  margin: 0;
  font-weight: 700;
  line-height: 1.35;
}

.service-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-faq-list {
  margin-top: 1.5rem;
}

.side-card a:not(.button) {
  color: white;
}

.service-side-card p:last-child {
  margin-bottom: 0;
}

.package-details-link,
.booking-details-link {
  font-size: 0.8rem;
  font-weight: 750;
}

.package-details-link {
  margin-top: auto;
}

.package-details-link + .package-link {
  margin-top: 0.65rem;
}

.resource-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .resource-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .service-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .service-hero-actions .button {
    width: 100%;
  }

  .service-overview-grid,
  .resource-grid-three {
    grid-template-columns: 1fr;
  }

  .service-overview-grid {
    gap: 2.5rem;
  }

  .service-coverage-visual {
    max-width: min(100%, 26rem);
  }

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

  .service-facts div:nth-child(even) {
    border-left: 0;
  }

  .service-facts div + div {
    border-top: 1px solid var(--line);
  }
}
