@font-face {
  font-family: "Lyon Display";
  src: url("/assets/fonts/lyon-display.ttf") format("truetype");
  font-display: swap;
}

:root {
  --ivory: #f8f6f1;
  --paper: #fffdf9;
  --sand: #eee7df;
  --blush: #eadbd5;
  --blush-deep: #c8a99d;
  --sage: #dfe3d7;
  --sage-deep: #65705f;
  --espresso: #2f2723;
  --brown: #5a463c;
  --taupe: #8b7c73;
  --line: rgba(47, 39, 35, 0.14);
  --white-line: rgba(255, 255, 255, 0.2);
  --shadow: 0 22px 60px rgba(47, 39, 35, 0.075);
  --shadow-soft: 0 10px 32px rgba(47, 39, 35, 0.055);
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --container: 1240px;
  --serif: "Lyon Display", Georgia, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
  background: var(--ivory);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ivory);
  color: var(--espresso);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

main {
  overflow: clip;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

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

img,
picture,
svg {
  display: block;
}

img {
  max-width: 100%;
}

p,
h1,
h2,
h3,
blockquote,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0.55em;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.028em;
  line-height: 1.06;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3rem, 4.4vw, 4.8rem);
}

h2 {
  font-size: clamp(2.25rem, 3.5vw, 3.8rem);
}

h3 {
  font-size: clamp(1.55rem, 2vw, 2rem);
}

h1 em,
h2 em,
h3 em,
.footer-cta__title em {
  font-family: inherit;
  font-size: 0.92em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.015em;
}

::selection {
  background: var(--blush);
  color: var(--espresso);
}

:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brown);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 253, 249, 0.74);
}

.skip-link {
  position: fixed;
  z-index: 3000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  color: var(--espresso);
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 160ms ease;
}

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

.button,
.header-book {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.115em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button span,
.header-book span {
  display: inline-grid;
  width: 15px;
  height: 15px;
  place-items: center;
}

.button svg,
.header-book svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.button:hover,
.header-book:hover {
  transform: translateY(-2px);
}

.button--solid,
.header-book {
  border-color: var(--espresso);
  background: var(--espresso);
  color: var(--paper);
  box-shadow: 0 10px 24px rgba(47, 39, 35, 0.13);
}

.button--solid:hover,
.header-book:hover {
  border-color: var(--brown);
  background: var(--brown);
  box-shadow: 0 14px 28px rgba(47, 39, 35, 0.17);
}

.button--light {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--paper);
}

.button--light:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--espresso);
}

.text-link,
.text-link-light,
.hero__text-link,
.text-links a,
.region-card a,
.guide-highlight a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.5;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after,
.text-link-light::after,
.hero__text-link::after,
.text-links a::after,
.region-card a::after,
.guide-highlight a::after {
  width: 22px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width 180ms ease;
}

.text-link:hover::after,
.text-link-light:hover::after,
.hero__text-link:hover::after,
.text-links a:hover::after,
.region-card a:hover::after,
.guide-highlight a:hover::after {
  width: 34px;
}

.text-link-light {
  color: var(--paper);
}

/* Header */

[data-site-header] {
  position: sticky;
  z-index: 1000;
  top: 0;
  display: block;
  background: rgba(248, 246, 241, 0.92);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.announcement {
  display: flex;
  min-height: 31px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 6px 24px;
  background: var(--espresso);
  color: rgba(255, 253, 249, 0.82);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.095em;
  line-height: 1.4;
  text-transform: uppercase;
}

.announcement a {
  color: var(--paper);
  text-decoration: none;
}

.announcement a::before {
  margin-right: 8px;
  color: #dbb66f;
  content: "★";
}

.site-header {
  display: grid;
  width: min(calc(100% - 48px), var(--container));
  min-height: 82px;
  align-items: center;
  margin-inline: auto;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
}

.brand {
  display: block;
  width: clamp(190px, 19vw, 248px);
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 34px);
}

.desktop-nav a {
  position: relative;
  padding: 28px 0 26px;
  color: var(--brown);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-book {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 0.67rem;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  place-content: center;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 1px;
  margin: 3px auto;
  background: var(--espresso);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] {
  position: fixed;
  z-index: 4;
  top: 46px;
  right: max(24px, calc((100vw - var(--container)) / 2));
  border-color: var(--white-line);
}

.menu-toggle[aria-expanded="true"] span {
  background: var(--paper);
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.menu-overlay {
  position: fixed;
  z-index: 3;
  inset: 0;
  display: grid;
  visibility: hidden;
  min-height: 100dvh;
  transform: translateY(-102%);
  background:
    radial-gradient(circle at 90% 10%, rgba(200, 169, 157, 0.2), transparent 34%),
    var(--espresso);
  color: var(--paper);
  opacity: 0;
  grid-template-rows: auto 1fr;
  transition: transform 420ms cubic-bezier(0.75, 0, 0.2, 1), opacity 300ms ease, visibility 420ms;
}

.menu-overlay[aria-hidden="false"] {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

.menu-overlay__top {
  display: flex;
  width: min(calc(100% - 48px), var(--container));
  min-height: 104px;
  align-items: center;
  margin-inline: auto;
}

.brand--light {
  width: 230px;
}

.menu-overlay__content {
  display: grid;
  width: min(calc(100% - 48px), var(--container));
  align-items: center;
  margin-inline: auto;
  padding: 34px 0 64px;
  grid-template-columns: 1fr 0.42fr;
  gap: 80px;
}

.menu-overlay ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-overlay nav a {
  display: inline-block;
  padding: 5px 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(2.75rem, 5.5vw, 5.8rem);
  letter-spacing: -0.04em;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.menu-overlay nav a:hover,
.menu-overlay nav a[aria-current="page"] {
  transform: translateX(12px);
  color: var(--blush-deep);
}

.menu-overlay__details {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.menu-overlay__details > a:not(.button) {
  color: rgba(255, 253, 249, 0.82);
  font-size: 0.9rem;
  text-decoration: none;
}

.menu-overlay__details .button {
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  transition: background-color 180ms ease, color 180ms ease;
}

.social-links a:hover {
  background: var(--espresso);
  color: var(--paper);
}

.social-links svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.social-links--light a {
  border-color: var(--white-line);
}

.social-links--light a:hover {
  background: var(--paper);
  color: var(--espresso);
}

/* Homepage hero */

.hero {
  position: relative;
  display: grid;
  width: min(calc(100% - 48px), var(--container));
  min-height: 620px;
  align-items: center;
  margin: 24px auto 0;
  padding: 48px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.8), transparent 31%),
    linear-gradient(135deg, #eee5dd 0%, #e7ddd4 100%);
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(42px, 5vw, 68px);
}

.hero::after {
  position: absolute;
  bottom: -130px;
  left: -100px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(90, 70, 60, 0.12);
  border-radius: 50%;
  content: "";
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 610px;
}

.hero .rating {
  display: inline-block;
  margin-bottom: 22px;
}

.hero .rating img {
  width: 178px;
  height: auto;
}

.hero h1 {
  max-width: 610px;
  margin-bottom: 24px;
  font-size: clamp(3.15rem, 4.15vw, 4.5rem);
  line-height: 1.01;
}

.hero h1 > span:first-child {
  display: block;
}

.hero__intro {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(47, 39, 35, 0.76);
  font-size: 1.06rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.hero__response {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 20px 0 0;
  color: var(--taupe);
  font-size: 0.76rem;
  font-weight: 600;
}

.hero__response::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage-deep);
  content: "";
  box-shadow: 0 0 0 4px rgba(101, 112, 95, 0.13);
}

.hero__visual {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 8px);
  background: var(--brown);
  box-shadow: 0 24px 55px rgba(47, 39, 35, 0.15);
}

.hero__visual picture,
.hero__visual img {
  width: 100%;
  height: 100%;
}

.hero__visual img {
  object-fit: cover;
  object-position: 50% 46%;
  filter: grayscale(1) contrast(0.94) sepia(0.08);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero__visual:hover img {
  transform: scale(1.025);
}

.hero__visual-note {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  min-width: 220px;
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  background: rgba(255, 253, 249, 0.87);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  flex-direction: column;
}

.hero__visual-note strong {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 400;
  line-height: 1.2;
}

.hero__visual-note span {
  margin-top: 4px;
  color: var(--taupe);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-trust {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 96px), 1120px);
  margin: -42px auto 0;
}

.landing-trust__inner {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(47, 39, 35, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.97);
  box-shadow: var(--shadow);
  grid-template-columns: repeat(4, 1fr);
}

.landing-trust__inner > div {
  display: flex;
  min-height: 118px;
  align-items: center;
  justify-content: center;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  flex-direction: column;
  text-align: center;
}

.landing-trust__inner > div:last-child {
  border-right: 0;
}

.landing-trust strong {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.1;
}

.landing-trust span {
  margin-top: 7px;
  color: var(--taupe);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.095em;
  line-height: 1.35;
  text-transform: uppercase;
}

/* Homepage sections */

.home-intro,
.landing-benefits,
.content-section,
.results-preview,
.testimonials,
.home-faq {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.home-intro {
  padding: 96px 0;
}

.home-intro__inner {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(58px, 8vw, 118px);
}

.home-intro__image {
  position: relative;
  height: 620px;
}

.home-intro__image::before {
  position: absolute;
  z-index: -1;
  top: 30px;
  right: -30px;
  width: 78%;
  height: 90%;
  border-radius: var(--radius-xl);
  background: var(--blush);
  content: "";
}

.home-intro__image img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.promo-badge {
  position: absolute;
  right: -24px;
  bottom: 38px;
  display: grid;
  width: 136px;
  aspect-ratio: 1;
  padding: 18px;
  border: 1px solid rgba(47, 39, 35, 0.08);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  place-items: center;
  text-align: center;
}

.promo-badge span {
  color: var(--taupe);
  font-size: 0.64rem;
  line-height: 1.35;
}

.promo-badge strong {
  display: block;
  margin-bottom: 4px;
  color: var(--espresso);
  font-size: 0.66rem;
  letter-spacing: 0.05em;
}

.home-intro__content {
  max-width: 590px;
}

.home-intro__content h2 {
  margin-bottom: 26px;
}

.home-intro__content > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: rgba(47, 39, 35, 0.75);
  font-size: 1.03rem;
}

.landing-benefits {
  padding: 72px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 255, 255, 0.7), transparent 32%),
    var(--sage);
}

.landing-benefits__heading {
  display: grid;
  align-items: end;
  margin-bottom: 58px;
  grid-template-columns: 1.2fr 0.6fr;
  column-gap: 80px;
}

.landing-benefits__heading .eyebrow {
  grid-column: 1 / -1;
}

.landing-benefits__heading h2,
.landing-benefits__heading > p:last-child {
  margin-bottom: 0;
}

.landing-benefits__heading > p:last-child {
  color: rgba(47, 39, 35, 0.67);
}

.landing-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.landing-benefits__grid article {
  min-height: 300px;
  padding: 34px;
  border: 1px solid rgba(47, 39, 35, 0.09);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.62);
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.landing-benefits__grid article:hover {
  transform: translateY(-6px);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.landing-benefits__grid article > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 58px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--taupe);
  font-size: 0.68rem;
  font-weight: 700;
  place-items: center;
}

.landing-benefits__grid h3 {
  margin-bottom: 14px;
}

.landing-benefits__grid p {
  margin: 0;
  color: rgba(47, 39, 35, 0.68);
  font-size: 0.94rem;
}

.content-section {
  display: grid;
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 9vw, 140px);
}

.content-section__heading h2 {
  margin-bottom: 0;
}

.content-section__copy {
  align-self: center;
}

.content-section__copy > p {
  margin-bottom: 22px;
  color: rgba(47, 39, 35, 0.74);
  font-size: 1.02rem;
}

.text-links {
  display: flex;
  align-items: flex-start;
  margin-top: 28px;
  flex-direction: column;
  gap: 15px;
}

.results-preview,
.results-page {
  padding: 92px 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 50px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h1,
.section-heading h2 {
  margin-bottom: 0;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.image-strip__item {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--sand);
  cursor: zoom-in;
  aspect-ratio: 0.82;
}

.image-strip__item::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.86);
  color: var(--espresso);
  content: "+";
  font-size: 1.2rem;
  place-items: center;
  transition: transform 180ms ease, background-color 180ms ease;
}

.image-strip__item:hover::after {
  transform: rotate(90deg);
  background: var(--paper);
}

.image-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.image-strip__item:hover img {
  transform: scale(1.035);
}

.page-home .image-strip__item:nth-child(n + 5) {
  display: none;
}

.results-preview__action {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.testimonials {
  padding: 86px 0 96px;
}

.testimonials .section-heading {
  margin-bottom: 44px;
}

.testimonials .section-heading h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.7rem);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  display: flex;
  min-width: 0;
  min-height: 315px;
  align-items: center;
  justify-content: center;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 8px 30px rgba(47, 39, 35, 0.035);
  flex-direction: column;
  text-align: center;
}

.testimonial-card[aria-hidden="true"] {
  display: none;
}

.testimonial-card img {
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  border: 3px solid var(--ivory);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--line);
}

.testimonial-card blockquote {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.45;
}

.testimonial-card > p {
  margin: 0;
  color: var(--taupe);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.swipe-hint {
  display: none;
}

.home-faq {
  display: grid;
  margin-bottom: 96px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--espresso);
  color: var(--paper);
  grid-template-columns: 0.8fr 1.2fr;
}

.home-faq__intro {
  padding: 72px 64px;
  background:
    radial-gradient(circle at 0 100%, rgba(200, 169, 157, 0.22), transparent 45%),
    var(--brown);
}

.home-faq__intro h2 {
  font-size: clamp(2.5rem, 4vw, 4.2rem);
}

.home-faq__intro > p:not(.eyebrow) {
  color: rgba(255, 253, 249, 0.72);
}

.home-faq__links {
  display: flex;
  align-items: flex-start;
  margin-top: 34px;
  flex-direction: column;
  gap: 18px;
}

.home-faq > .faq-list {
  padding: 48px 64px;
}

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

.home-faq .faq-list details {
  border-color: var(--white-line);
}

.faq-list summary {
  position: relative;
  padding: 22px 46px 22px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.35;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  display: grid;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "+";
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1;
  place-items: center;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  margin: -2px 50px 24px 0;
  color: rgba(47, 39, 35, 0.68);
}

.home-faq .faq-list details p {
  color: rgba(255, 253, 249, 0.7);
}

/* Internal page heroes and shared content */

.page-hero-dark,
.local-page-hero {
  width: min(calc(100% - 48px), var(--container));
  margin: 24px auto 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.page-hero-dark {
  position: relative;
  min-height: 510px;
  padding: 76px 48px;
  background:
    radial-gradient(circle at 82% 18%, rgba(200, 169, 157, 0.24), transparent 35%),
    radial-gradient(circle at 10% 90%, rgba(101, 112, 95, 0.22), transparent 32%),
    var(--espresso);
  color: var(--paper);
}

.page-hero-dark--compact {
  min-height: 470px;
}

.page-hero-dark__inner {
  display: flex;
  max-width: 880px;
  min-height: 350px;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  flex-direction: column;
  text-align: center;
}

.page-hero-dark h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 4.45vw, 4.7rem);
}

.page-hero-dark__inner > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255, 253, 249, 0.72);
  font-size: 1.05rem;
}

.treatment-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
}

.page-hero-dark__inner > .conversion-qualifier,
.local-page-hero__copy > .conversion-qualifier {
  max-width: none;
  margin: 20px 0 0;
  color: rgba(47, 39, 35, 0.62);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.65;
  text-transform: uppercase;
}

.page-hero-dark__inner > .conversion-qualifier--light {
  margin-bottom: 0;
  color: rgba(255, 253, 249, 0.62);
}

.service-facts {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: -44px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
  grid-template-columns: repeat(4, 1fr);
}

.service-facts > div {
  display: flex;
  min-height: 118px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-right: 1px solid var(--line);
  flex-direction: column;
  text-align: center;
}

.service-facts > div:last-child {
  border-right: 0;
}

.service-facts strong {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.1;
}

.service-facts span {
  margin-top: 6px;
  color: var(--taupe);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.treatment-nav {
  position: sticky;
  z-index: 20;
  top: 113px;
  margin-top: 32px;
}

.treatment-nav__scroll {
  display: flex;
  overflow-x: auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: var(--shadow-soft);
  scrollbar-width: none;
  backdrop-filter: blur(12px);
}

.treatment-nav__scroll::-webkit-scrollbar {
  display: none;
}

.treatment-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--taupe);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.065em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 180ms ease, color 180ms ease;
}

.treatment-nav a:hover,
.treatment-nav a:focus-visible {
  background: var(--sand);
  color: var(--espresso);
}

.treatment-guide {
  padding: 46px 0 110px;
}

.treatment-guide__section,
.local-guide > section {
  display: grid;
  padding: 74px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(56px, 8vw, 120px);
}

.treatment-guide__section > div:first-child,
.local-guide > section > :first-child {
  min-width: 0;
}

.treatment-guide__section h2,
.local-guide h2 {
  font-size: clamp(2.15rem, 3.15vw, 3.35rem);
}

.treatment-guide__section p,
.local-guide p {
  color: rgba(47, 39, 35, 0.72);
}

.guide-highlight,
.medical-note,
.photo-check-card {
  margin-top: 30px;
  padding: 28px;
  border-radius: var(--radius-md);
}

.guide-highlight {
  border: 1px solid rgba(90, 70, 60, 0.12);
  background: var(--blush);
}

.guide-highlight strong,
.photo-check-card strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 1.48rem;
  font-weight: 400;
}

.guide-highlight p,
.medical-note,
.photo-check-card p {
  margin-bottom: 0;
}

.guide-highlight a {
  margin-top: 18px;
}

.process-list,
.healing-timeline,
.check-list,
.care-grid {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list {
  counter-reset: process;
}

.process-list li {
  position: relative;
  display: grid;
  min-height: 115px;
  align-items: start;
  padding: 23px 0 23px 72px;
  border-bottom: 1px solid var(--line);
  counter-increment: process;
}

.process-list li::before {
  position: absolute;
  top: 22px;
  left: 0;
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--taupe);
  content: counter(process, decimal-leading-zero);
  font-size: 0.65rem;
  font-weight: 700;
  place-items: center;
}

.process-list strong,
.healing-timeline strong,
.care-grid strong {
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 400;
}

.process-list span,
.care-grid span {
  margin-top: 4px;
  color: rgba(47, 39, 35, 0.67);
  font-size: 0.92rem;
}

.healing-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.healing-timeline li {
  min-height: 235px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.healing-timeline li > span {
  display: block;
  margin-bottom: 38px;
  color: var(--sage-deep);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.healing-timeline p {
  margin: 8px 0 0;
  font-size: 0.9rem;
}

.check-list {
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding: 16px 18px 16px 49px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: rgba(47, 39, 35, 0.72);
  font-size: 0.92rem;
}

.check-list li::before {
  position: absolute;
  top: 15px;
  left: 17px;
  display: grid;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--sage-deep);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 800;
  place-items: center;
}

.medical-note {
  border-left: 3px solid var(--sage-deep);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(223, 227, 215, 0.55);
  font-size: 0.9rem;
}

.medical-note--alert {
  border-left-color: var(--blush-deep);
  background: rgba(234, 219, 213, 0.55);
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.care-grid li {
  display: flex;
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  flex-direction: column;
}

.photo-check-card {
  display: grid;
  align-items: center;
  border: 1px solid rgba(90, 70, 60, 0.12);
  background: var(--sand);
  grid-template-columns: 1fr auto;
  gap: 28px;
}

.photo-check-card__actions {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.photo-check-card__actions > a:last-child {
  font-size: 0.75rem;
}

.region-link-grid {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.region-link-grid a {
  display: flex;
  min-height: 178px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  text-decoration: none;
  flex-direction: column;
  transition: transform 180ms ease, background-color 180ms ease;
}

.region-link-grid a:hover {
  transform: translateY(-4px);
  background: var(--sage);
}

.region-link-grid strong {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.region-link-grid span {
  color: var(--taupe);
  font-size: 0.82rem;
}

.faq-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}

.faq-section > h2 {
  max-width: 680px;
  margin-bottom: 42px;
}

.faq-section .faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 54px;
}

.conversion-panel {
  display: grid;
  align-items: center;
  margin-top: 90px;
  padding: 58px 64px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 80% 10%, rgba(200, 169, 157, 0.22), transparent 35%),
    var(--espresso);
  color: var(--paper);
  grid-template-columns: 1fr auto;
  gap: 60px;
}

.conversion-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(2.4rem, 3.8vw, 4rem);
}

.conversion-panel p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 0;
  color: rgba(255, 253, 249, 0.7);
}

.conversion-panel__actions {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
}

/* About and prices */

.about-section,
.prices-section {
  display: grid;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 96px;
  padding: 36px;
  border: 1px solid rgba(47, 39, 35, 0.08);
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 6vw, 82px);
}

.about-section {
  grid-template-areas:
    "image intro"
    "image body";
  row-gap: 0;
}

.about-section__intro {
  align-self: end;
  grid-area: intro;
}

.about-section__body {
  align-self: start;
  grid-area: body;
}

.about-section__image,
.prices-section__image {
  position: relative;
  height: 660px;
}

.about-section__image {
  grid-area: image;
}

.about-section__image img,
.prices-section__image img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.prices-section__image img {
  filter: grayscale(1) contrast(0.94) sepia(0.06);
}

.about-section__copy,
.prices-section__copy {
  max-width: 550px;
  padding-right: 34px;
}

.about-section__copy h1,
.prices-section__copy h1 {
  margin-bottom: 26px;
  font-size: clamp(2.9rem, 3.9vw, 4.25rem);
}

.about-section__copy > p:not(.eyebrow):not(.signature),
.price-note {
  color: rgba(47, 39, 35, 0.72);
  font-size: 0.96rem;
}

.signature {
  margin: 26px 0 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  line-height: 1.2;
}

.about-actions {
  display: flex;
  align-items: center;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 22px;
}

.price-list {
  display: grid;
  margin: 34px 0;
  grid-template-columns: 1fr auto;
}

.price-list dt,
.price-list dd {
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.price-list dd {
  padding-left: 28px;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.price-note a,
.about-section__copy a {
  text-decoration-color: var(--blush-deep);
}

.price-cta {
  margin-top: 6px;
}

.prices-section__image .promo-badge {
  right: auto;
  bottom: auto;
  top: 24px;
  left: 24px;
}

.page-texture,
.texture-section {
  min-height: 310px;
  background:
    linear-gradient(rgba(248, 246, 241, 0.22), rgba(248, 246, 241, 0.22)),
    url("/assets/images/responsive/palm-shadow-1600.webp") center / cover no-repeat;
}

/* Contact */

.contact-section {
  width: min(calc(100% - 48px), 1160px);
  margin: 40px auto 96px;
  padding: 64px;
  border: 1px solid rgba(47, 39, 35, 0.08);
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.contact-section > .eyebrow,
.contact-section > h1,
.contact-intro {
  text-align: center;
}

.contact-section > h1 {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(3rem, 4.35vw, 4.65rem);
}

.contact-intro {
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--taupe);
  font-size: 1rem;
}

.contact-nap {
  display: grid;
  margin: 0 0 42px;
  padding: 24px 0;
  border-block: 1px solid var(--line);
  color: rgba(47, 39, 35, 0.7);
  font-size: 0.82rem;
  font-style: normal;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.contact-nap span + span {
  border-left: 1px solid var(--line);
}

.contact-nap a {
  text-decoration: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.form-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.form-field--wide,
.form-field:has(textarea),
.form-actions {
  grid-column: 1 / -1;
}

.form-field label {
  margin-bottom: 8px;
  color: var(--brown);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--ivory);
  color: var(--espresso);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.form-field input,
.form-field select {
  height: 54px;
  padding: 0 16px;
}

.form-field textarea {
  min-height: 150px;
  padding: 15px 16px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--sage-deep);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(101, 112, 95, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #a59a93;
}

.form-field--honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.form-actions {
  display: grid;
  align-items: center;
  margin-top: 6px;
  grid-template-columns: 1fr auto;
  gap: 8px 24px;
}

.form-status {
  margin: 0;
  color: #8b4038;
  font-size: 0.84rem;
  grid-column: 1 / -1;
}

.form-privacy {
  color: var(--taupe);
  font-size: 0.75rem;
}

.form-actions button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 25px;
  border: 1px solid var(--espresso);
  border-radius: 999px;
  background: var(--espresso);
  color: var(--paper);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease;
}

.form-actions button:hover {
  transform: translateY(-2px);
  background: var(--brown);
}

.form-actions button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.form-actions svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.contact-alternative {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--taupe);
  font-size: 0.82rem;
  gap: 12px;
}

.contact-alternative a {
  color: var(--espresso);
  font-weight: 700;
}

/* Results */

.results-page {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.results-page .section-heading {
  max-width: 760px;
}

.results-page .image-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.results-page .image-strip__item {
  aspect-ratio: 0.9;
}

.result-context {
  border-top: 1px solid var(--line);
}

.lightbox {
  width: min(92vw, 940px);
  max-height: 92vh;
  padding: 14px;
  overflow: visible;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(22, 18, 16, 0.82);
  backdrop-filter: blur(8px);
}

.lightbox > button {
  position: absolute;
  z-index: 2;
  top: -16px;
  right: -16px;
  display: grid;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  font-size: 1.4rem;
  place-items: center;
}

.lightbox img {
  width: 100%;
  max-height: calc(92vh - 70px);
  border-radius: 14px;
  object-fit: contain;
}

.lightbox p {
  margin: 10px 8px 2px;
  color: var(--taupe);
  font-size: 0.76rem;
}

/* Region pages */

.local-page-hero {
  display: grid;
  min-height: 590px;
  background: var(--sand);
  grid-template-columns: 1fr 0.92fr;
}

.local-page-hero__copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(54px, 6vw, 76px);
  flex-direction: column;
}

.local-page-hero__copy h1 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 4.35vw, 4.65rem);
}

.local-page-hero__copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 30px;
  color: rgba(47, 39, 35, 0.72);
  font-size: 1rem;
}

.local-page-hero__image {
  min-height: 590px;
  margin: 18px 18px 18px 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.local-page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.region-overview {
  padding: 92px 0;
}

.region-overview__heading {
  display: grid;
  align-items: end;
  margin-bottom: 50px;
  grid-template-columns: 1fr 0.6fr;
  column-gap: 90px;
}

.region-overview__heading .eyebrow {
  grid-column: 1 / -1;
}

.region-overview__heading h2,
.region-overview__heading > p:last-child {
  margin-bottom: 0;
}

.region-overview__heading > p:last-child {
  color: var(--taupe);
}

.region-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.region-card {
  display: flex;
  min-height: 360px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 8px 28px rgba(47, 39, 35, 0.035);
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.region-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.region-card h2 {
  margin-bottom: 16px;
  font-size: 2.8rem;
}

.region-card p:not(.eyebrow) {
  margin-bottom: 34px;
  color: var(--taupe);
}

.region-card a {
  margin-top: auto;
}

.local-guide {
  padding: 54px 0 96px;
}

.page-region-detail .local-guide > section:nth-child(2) {
  padding-inline: 42px;
  border: 0;
  border-radius: var(--radius-xl);
  background: var(--sage);
}

/* Confirmation and 404 */

.confirmation,
.not-found {
  display: grid;
  width: min(calc(100% - 48px), 1200px);
  min-height: 620px;
  margin: 24px auto 90px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 80% 20%, rgba(200, 169, 157, 0.22), transparent 34%),
    var(--espresso);
  color: var(--paper);
  place-items: center;
}

.confirmation__inner,
.not-found__inner {
  max-width: 720px;
  padding: 60px 30px;
  text-align: center;
}

.confirmation__inner p:not(.eyebrow),
.not-found__inner p:not(.eyebrow) {
  color: rgba(255, 253, 249, 0.7);
}

/* Footer, WhatsApp and consent */

.site-footer {
  margin-top: 0;
}

.footer-cta {
  display: grid;
  width: min(calc(100% - 48px), var(--container));
  align-items: center;
  margin: 0 auto;
  padding: 62px 68px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.65), transparent 34%),
    var(--blush);
  grid-template-columns: 1fr auto;
  gap: 60px;
}

.footer-cta__title {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.45rem, 3.65vw, 3.85rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.footer-cta__actions {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.footer-rating img {
  width: 170px;
  height: auto;
}

.footer-main {
  background: var(--espresso);
  color: var(--paper);
}

.footer-main__inner {
  display: grid;
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
  padding: 84px 0 72px;
  grid-template-columns: 1.3fr 0.65fr 0.75fr;
  gap: 90px;
}

.footer-brand > a:first-child {
  display: block;
  width: min(100%, 290px);
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.footer-brand > p {
  max-width: 380px;
  margin: 24px 0;
  color: rgba(255, 253, 249, 0.62);
  font-size: 0.88rem;
}

.footer-heading {
  margin: 0 0 22px;
  color: rgba(255, 253, 249, 0.5);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li + li {
  margin-top: 9px;
}

.footer-column a,
.footer-contact span {
  display: block;
  color: rgba(255, 253, 249, 0.72);
  font-size: 0.84rem;
  line-height: 1.75;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-column a:hover {
  color: var(--paper);
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.footer-legal {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 14px max(24px, calc((100vw - var(--container)) / 2));
  border-top: 1px solid var(--white-line);
  background: var(--espresso);
  color: rgba(255, 253, 249, 0.46);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

.footer-legal button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
}

.footer-legal button:hover {
  color: var(--paper);
}

.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: var(--espresso);
  box-shadow: 0 14px 30px rgba(47, 39, 35, 0.23);
  color: var(--paper);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: var(--sage-deep);
}

.whatsapp-float svg,
.mobile-cta-bar svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

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

.consent-banner {
  position: fixed;
  z-index: 2500;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: min(calc(100% - 44px), 650px);
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(47, 39, 35, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.98);
  box-shadow: 0 24px 70px rgba(47, 39, 35, 0.2);
  grid-template-columns: 1fr auto;
  gap: 28px;
  backdrop-filter: blur(16px);
}

.consent-banner .eyebrow {
  margin-bottom: 8px;
}

.consent-banner p:last-child {
  margin: 0;
  color: var(--taupe);
  font-size: 0.8rem;
  line-height: 1.55;
}

.consent-banner__actions {
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
}

.consent-banner button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-transform: uppercase;
}

.consent-banner [data-consent-accept] {
  border-color: var(--espresso);
  background: var(--espresso);
  color: var(--paper);
}

/* Responsive */

@media (max-width: 1120px) {
  .site-header {
    gap: 22px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 0.64rem;
  }

  .hero {
    min-height: 630px;
    padding: 36px;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.84fr);
    gap: 42px;
  }

  .hero__visual {
    height: 540px;
  }

  .landing-benefits {
    padding: 64px 48px;
  }

  .home-intro__image {
    height: 590px;
  }

  .about-section,
  .prices-section {
    padding: 30px;
    gap: 54px;
  }

  .about-section__image,
  .prices-section__image {
    height: 640px;
  }

  .footer-main__inner {
    gap: 50px;
  }
}

@media (max-width: 960px) {
  html {
    scroll-padding-top: 122px;
  }

  .site-header {
    min-height: 72px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 205px;
  }

  .desktop-nav,
  .header-book {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    min-height: auto;
    padding: 46px;
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 740px;
    padding: 18px 8px 6px;
  }

  .hero__visual {
    height: 610px;
  }

  .home-intro__inner,
  .content-section,
  .landing-benefits__heading,
  .local-page-hero,
  .region-overview__heading,
  .treatment-guide__section,
  .local-guide > section,
  .about-section,
  .prices-section {
    grid-template-columns: 1fr;
  }

  .home-intro__image {
    width: min(100%, 680px);
  }

  .home-intro__content {
    max-width: 720px;
  }

  .landing-benefits__heading {
    gap: 0;
  }

  .landing-benefits__heading > p:last-child {
    max-width: 580px;
    margin-top: 12px;
  }

  .content-section,
  .treatment-guide__section,
  .local-guide > section {
    gap: 34px;
  }

  .content-section__heading {
    max-width: 720px;
  }

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

  .testimonial-grid {
    gap: 12px;
  }

  .testimonial-card {
    min-height: 330px;
    padding: 26px;
  }

  .home-faq {
    grid-template-columns: 1fr;
  }

  .local-page-hero__image {
    min-height: 570px;
    margin: 0 18px 18px;
  }

  .local-page-hero__copy {
    padding: 72px 60px 58px;
  }

  .region-overview__heading > p:last-child {
    max-width: 650px;
    margin-top: 12px;
  }

  .region-card-grid {
    grid-template-columns: 1fr;
  }

  .region-card {
    min-height: 260px;
  }

  .treatment-guide__section > div:first-child,
  .local-guide > section > div:first-child {
    max-width: 720px;
  }

  .faq-section .faq-list {
    grid-template-columns: 1fr;
  }

  .conversion-panel {
    grid-template-columns: 1fr;
  }

  .conversion-panel__actions {
    align-items: flex-start;
  }

  .about-section,
  .prices-section {
    padding: 28px;
  }

  .about-section {
    grid-template-areas:
      "intro"
      "image"
      "body";
    row-gap: 28px;
  }

  .about-section__image,
  .prices-section__image {
    height: min(95vw, 760px);
  }

  .about-section__copy,
  .prices-section__copy {
    max-width: 760px;
    padding: 18px 18px 34px;
  }

  .contact-section {
    padding: 56px 42px;
  }

  .footer-cta {
    padding: 58px;
    grid-template-columns: 1fr;
  }

  .footer-cta__actions {
    align-items: flex-start;
  }

  .footer-main__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  :root {
    --radius-xl: 24px;
    --radius-lg: 18px;
  }

  html {
    scroll-padding-top: 108px;
  }

  body {
    padding-bottom: 0;
    font-size: 15px;
  }

  h1 {
    font-size: clamp(2.5rem, 10.5vw, 3.15rem);
  }

  h2 {
    font-size: clamp(2.05rem, 8.5vw, 2.8rem);
  }

  .container,
  .home-intro,
  .landing-benefits,
  .content-section,
  .results-preview,
  .testimonials,
  .home-faq,
  .results-page,
  .page-hero-dark,
  .local-page-hero,
  .confirmation,
  .not-found,
  .footer-cta {
    width: min(calc(100% - 28px), var(--container));
  }

  .announcement {
    min-height: 27px;
    justify-content: space-between;
    gap: 10px;
    padding: 5px 14px;
    font-size: 0.56rem;
    letter-spacing: 0.055em;
  }

  .announcement span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header {
    width: calc(100% - 28px);
    min-height: 66px;
  }

  .brand {
    width: 176px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .menu-toggle[aria-expanded="true"] {
    top: 38px;
    right: 14px;
  }

  .menu-overlay__top,
  .menu-overlay__content {
    width: calc(100% - 40px);
  }

  .menu-overlay__top {
    min-height: 84px;
  }

  .brand--light {
    width: 185px;
  }

  .menu-overlay__content {
    align-items: start;
    padding: 34px 0;
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .menu-overlay nav a {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .menu-overlay__details {
    padding-top: 32px;
    border-top: 1px solid var(--white-line);
  }

  .hero {
    width: calc(100% - 28px);
    margin-top: 14px;
    padding: 28px 20px 20px;
    gap: 26px;
  }

  .hero__content {
    padding: 10px 2px 0;
  }

  .hero .eyebrow {
    margin-bottom: 12px;
  }

  .hero .rating {
    margin-bottom: 18px;
  }

  .hero .rating img {
    width: 164px;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2.5rem, 10.7vw, 3.1rem);
  }

  .hero__intro {
    margin-bottom: 24px;
    font-size: 0.96rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__text-link {
    justify-content: center;
  }

  .hero__response {
    justify-content: center;
  }

  .hero__visual {
    height: min(112vw, 480px);
  }

  .hero__visual-note {
    right: 12px;
    bottom: 12px;
    min-width: 0;
    padding: 13px 15px;
  }

  .hero__visual-note span {
    font-size: 0.56rem;
  }

  .landing-trust {
    width: calc(100% - 44px);
    margin-top: -12px;
  }

  .landing-trust__inner,
  .service-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-trust__inner > div,
  .service-facts > div {
    min-height: 94px;
    padding: 17px 10px;
  }

  .landing-trust__inner > div:nth-child(2),
  .service-facts > div:nth-child(2) {
    border-right: 0;
  }

  .landing-trust__inner > div:nth-child(-n + 2),
  .service-facts > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .landing-trust strong,
  .service-facts strong {
    font-size: 1.4rem;
  }

  .landing-trust span,
  .service-facts span {
    font-size: 0.56rem;
  }

  .home-intro {
    padding: 64px 0;
  }

  .home-intro__inner {
    gap: 42px;
  }

  .home-intro__image {
    height: min(116vw, 520px);
  }

  .home-intro__image::before {
    top: 18px;
    right: -8px;
  }

  .promo-badge {
    right: 10px;
    bottom: 14px;
    width: 104px;
    padding: 12px;
  }

  .promo-badge span,
  .promo-badge strong {
    font-size: 0.54rem;
  }

  .landing-benefits {
    padding: 44px 16px 16px;
  }

  .landing-benefits__heading {
    padding: 0 12px;
    margin-bottom: 34px;
  }

  .landing-benefits__grid {
    grid-template-columns: 1fr;
  }

  .landing-benefits__grid article {
    min-height: 245px;
    padding: 28px;
  }

  .landing-benefits__grid article > span {
    margin-bottom: 38px;
  }

  .content-section {
    padding: 64px 0;
  }

  .results-preview,
  .results-page,
  .testimonials {
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .image-strip,
  .results-page .image-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
  }

  .image-strip__item,
  .results-page .image-strip__item {
    border-radius: 14px;
    aspect-ratio: 0.84;
  }

  .image-strip__item::after {
    right: 8px;
    bottom: 8px;
    width: 30px;
    height: 30px;
  }

  .testimonial-slider {
    width: calc(100vw - 14px);
    margin-left: calc((100vw - min(100vw - 28px, var(--container))) / -2);
    padding: 0 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .testimonial-slider::-webkit-scrollbar {
    display: none;
  }

  .testimonial-grid {
    display: flex;
    gap: 10px;
  }

  .testimonial-card {
    width: min(84vw, 350px);
    min-width: min(84vw, 350px);
    min-height: 300px;
    scroll-snap-align: center;
  }

  .home-faq {
    margin-bottom: 68px;
  }

  .home-faq__intro,
  .home-faq > .faq-list {
    padding: 44px 24px;
  }

  .faq-list summary {
    padding-block: 20px;
    font-size: 1.15rem;
  }

  .faq-list details p {
    margin-right: 22px;
  }

  .page-hero-dark,
  .local-page-hero {
    margin-top: 14px;
  }

  .page-hero-dark {
    min-height: 450px;
    padding: 48px 22px;
  }

  .page-hero-dark h1 {
    font-size: clamp(2.55rem, 10.5vw, 3.25rem);
  }

  .treatment-hero__actions {
    flex-direction: column;
  }

  .service-facts {
    width: calc(100% - 44px);
    margin-top: -28px;
  }

  .treatment-nav {
    top: 104px;
    width: calc(100% - 18px);
    margin-top: 22px;
  }

  .treatment-nav__scroll {
    border-radius: 16px;
  }

  .treatment-nav a {
    min-height: 44px;
  }

  .treatment-guide {
    padding-top: 20px;
  }

  .treatment-guide__section,
  .local-guide > section {
    padding: 54px 0;
  }

  .healing-timeline,
  .care-grid,
  .region-link-grid {
    grid-template-columns: 1fr;
  }

  .photo-check-card,
  .conversion-panel {
    padding: 30px 24px;
    grid-template-columns: 1fr;
  }

  .photo-check-card__actions {
    align-items: flex-start;
  }

  .faq-section {
    padding: 72px 0;
  }

  .about-section,
  .prices-section {
    width: calc(100% - 28px);
    margin-top: 14px;
    margin-bottom: 64px;
    padding: 12px;
    gap: 28px;
  }

  .about-section__image,
  .prices-section__image {
    height: min(112vw, 520px);
  }

  .about-section__copy,
  .prices-section__copy {
    padding: 12px 10px 30px;
  }

  .about-section__copy h1,
  .prices-section__copy h1 {
    font-size: clamp(2.55rem, 10.5vw, 3.25rem);
  }

  .prices-section__image {
    order: initial;
  }

  .about-section__intro {
    padding-bottom: 0;
  }

  .about-section__body {
    padding-top: 0;
  }

  .prices-section__image .promo-badge {
    top: 12px;
    left: 12px;
  }

  .page-texture,
  .texture-section {
    min-height: 210px;
  }

  .contact-section {
    width: calc(100% - 28px);
    margin: 14px auto 64px;
    padding: 38px 18px;
  }

  .contact-section > h1 {
    font-size: clamp(2.55rem, 10.5vw, 3.25rem);
  }

  .contact-nap {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-nap span + span {
    padding-top: 18px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-field,
  .form-field--wide,
  .form-actions {
    grid-column: auto;
  }

  .form-actions {
    grid-template-columns: 1fr;
  }

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

  .contact-alternative {
    align-items: flex-start;
    flex-direction: column;
  }

  .local-page-hero {
    min-height: auto;
  }

  .local-page-hero__copy {
    padding: 46px 22px 40px;
  }

  .local-page-hero__copy h1 {
    font-size: clamp(2.55rem, 10.5vw, 3.25rem);
  }

  .local-page-hero__image {
    min-height: min(108vw, 460px);
    margin: 0 10px 10px;
  }

  .region-overview {
    padding: 64px 0;
  }

  .region-card {
    min-height: 280px;
    padding: 28px;
  }

  .page-region-detail .local-guide > section:nth-child(2) {
    padding: 38px 20px;
  }

  .confirmation,
  .not-found {
    min-height: 530px;
    margin-top: 14px;
    margin-bottom: 70px;
  }

  .footer-cta {
    padding: 42px 22px;
    gap: 34px;
  }

  .footer-cta__title {
    font-size: clamp(2.2rem, 9vw, 2.85rem);
  }

  .footer-cta__actions .button {
    width: 100%;
  }

  .footer-main__inner {
    width: calc(100% - 48px);
    padding: 62px 0;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-legal {
    align-items: flex-start;
    padding: 18px 24px calc(84px + env(safe-area-inset-bottom));
    flex-direction: column;
    gap: 8px;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-cta-bar {
    position: fixed;
    z-index: 900;
    right: 14px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    display: grid;
    width: 228px;
    min-height: 58px;
    padding: 5px;
    transform: translateY(calc(100% + 24px));
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 253, 249, 0.96);
    box-shadow: 0 14px 34px rgba(47, 39, 35, 0.16);
    opacity: 0;
    pointer-events: none;
    grid-template-columns: 1fr 48px;
    gap: 5px;
    backdrop-filter: blur(14px);
    transition: opacity 180ms ease, transform 220ms ease;
  }

  .mobile-cta-bar.is-visible:not(.is-suppressed) {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-cta-bar a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--espresso);
    border-radius: 999px;
    color: var(--espresso);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-cta-bar a:first-child {
    background: var(--espresso);
    color: var(--paper);
  }

  .mobile-cta-bar a:last-child span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
  }

  .consent-banner {
    right: 12px;
    bottom: 76px;
    width: calc(100% - 24px);
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .consent-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 380px) {
  .announcement span {
    max-width: 225px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .image-strip,
  .results-page .image-strip {
    grid-template-columns: 1fr;
  }

  .page-home .image-strip__item:nth-child(n + 4) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Editorial salon direction — inspired by luxury beauty and skincare editorials */

:root {
  --ivory: #f6f2eb;
  --paper: #fcf9f3;
  --sand: #e9dfd4;
  --blush: #dbc5b8;
  --blush-deep: #b88f7d;
  --sage: #d9ddd1;
  --espresso: #2d211b;
  --brown: #68483a;
  --taupe: #85766d;
  --line: rgba(45, 33, 27, 0.16);
  --shadow: 0 18px 50px rgba(45, 33, 27, 0.06);
  --shadow-soft: 0 8px 24px rgba(45, 33, 27, 0.045);
  --radius-xl: 8px;
  --radius-lg: 5px;
  --radius-md: 3px;
}

body {
  background: var(--ivory);
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
}

h2 {
  line-height: 1.02;
}

.eyebrow {
  font-size: 0.67rem;
  letter-spacing: 0.2em;
}

.button,
.header-book,
.form-actions button {
  box-shadow: none;
}

.button span,
.header-book span {
  transition: transform 240ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.button:hover span,
.header-book:hover span {
  transform: translate(2px, -2px);
}

/* Calm, architectural navigation */

[data-site-header] {
  background: rgba(246, 242, 235, 0.94);
  transition: background-color 280ms ease, box-shadow 280ms ease;
}

[data-site-header].is-scrolled {
  background: rgba(246, 242, 235, 0.985);
  box-shadow: 0 1px 0 var(--line), 0 12px 32px rgba(45, 33, 27, 0.035);
}

.site-header {
  min-height: 78px;
  transition: min-height 280ms ease;
}

[data-site-header].is-scrolled .site-header {
  min-height: 68px;
}

.brand {
  width: clamp(188px, 18vw, 238px);
  transition: width 280ms ease;
}

[data-site-header].is-scrolled .brand {
  width: clamp(180px, 17vw, 222px);
}

.desktop-nav a {
  padding-block: 26px 24px;
  font-size: 0.66rem;
  letter-spacing: 0.105em;
}

/* Homepage: editorial split instead of a floating card */

.hero {
  min-height: 650px;
  margin-top: 0;
  padding: 62px 0 66px;
  overflow: visible;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(64px, 7vw, 108px);
}

.hero::after {
  display: none;
}

.hero__content {
  max-width: 555px;
}

.hero .rating {
  margin-bottom: 26px;
}

.hero h1 {
  max-width: 555px;
  margin-bottom: 26px;
  font-size: clamp(3.1rem, 4vw, 4.35rem);
}

.hero__intro {
  max-width: 515px;
  font-size: 1rem;
}

.hero__visual {
  height: 565px;
  padding: 16px;
  border-radius: var(--radius-xl);
  background: #3a281f;
  box-shadow: none;
}

.hero__visual picture {
  overflow: hidden;
  border-radius: 2px;
}

.hero__visual-note {
  right: 28px;
  bottom: 28px;
  border-radius: 2px;
  box-shadow: none;
}

.landing-trust {
  width: min(calc(100% - 48px), var(--container));
  margin-top: 0;
}

.landing-trust__inner,
.service-facts {
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.landing-trust__inner > div,
.service-facts > div {
  min-height: 108px;
}

/* Homepage content rhythm */

.home-intro {
  width: 100%;
  padding: 112px max(24px, calc((100vw - var(--container)) / 2));
  background: var(--espresso);
  color: var(--paper);
}

.home-intro__inner {
  width: min(100%, var(--container));
  margin-inline: auto;
  gap: clamp(70px, 9vw, 132px);
}

.home-intro__image {
  height: 670px;
}

.home-intro__image::before {
  top: 34px;
  right: -34px;
  border: 1px solid rgba(255, 253, 249, 0.2);
  border-radius: 0;
  background: transparent;
}

.home-intro__image img {
  border-radius: var(--radius-lg);
  box-shadow: none;
}

.home-intro__content .eyebrow {
  color: rgba(252, 249, 243, 0.58);
}

.home-intro__content > p:not(.eyebrow) {
  color: rgba(252, 249, 243, 0.68);
}

.home-intro .button--solid {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--espresso);
}

.home-intro .button--solid:hover {
  border-color: var(--blush);
  background: var(--blush);
}

.promo-badge {
  border-radius: 50%;
  box-shadow: none;
}

.landing-benefits {
  padding: 112px 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.landing-benefits__heading {
  margin-bottom: 68px;
  grid-template-columns: 1.25fr 0.55fr;
}

.landing-benefits__grid {
  gap: 0;
}

.landing-benefits__grid article {
  min-height: 285px;
  padding: 32px 30px 30px;
  border: 0;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  transition: transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1), background-color 320ms ease;
}

.landing-benefits__grid article:last-child {
  border-right: 0;
}

.landing-benefits__grid article:hover {
  transform: translateY(-5px);
  background: rgba(252, 249, 243, 0.62);
  box-shadow: none;
}

.landing-benefits__grid article > span {
  margin-bottom: 54px;
}

.content-section {
  padding-block: 112px;
}

.results-preview,
.results-page {
  padding-block: 112px;
}

.image-strip {
  gap: 8px;
}

.image-strip__item,
.results-page .image-strip__item {
  border-radius: 2px;
}

.image-strip__item img {
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 450ms ease;
}

.image-strip__item:hover img {
  transform: scale(1.045);
}

.testimonials {
  width: 100%;
  padding: 104px max(24px, calc((100vw - var(--container)) / 2)) 112px;
  background: var(--brown);
  color: var(--paper);
}

.testimonials .section-heading,
.testimonial-grid {
  width: min(100%, var(--container));
  margin-inline: auto;
}

.testimonials .eyebrow {
  color: rgba(252, 249, 243, 0.56);
}

.testimonial-grid {
  gap: 1px;
  background: rgba(252, 249, 243, 0.24);
}

.testimonial-card {
  min-height: 340px;
  border: 0;
  border-radius: 0;
  background: var(--paper);
  box-shadow: none;
  color: var(--espresso);
}

.testimonial-card:nth-child(2) {
  background: var(--espresso);
  color: var(--paper);
}

.testimonial-card:nth-child(2) > p {
  color: rgba(252, 249, 243, 0.54);
}

.home-faq {
  margin-top: 112px;
  margin-bottom: 112px;
  border-radius: var(--radius-xl);
}

.home-faq__intro {
  background: var(--brown);
}

/* Internal pages: flat surfaces, strong grids, restrained color */

.page-hero-dark,
.local-page-hero {
  margin-top: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.page-hero-dark {
  min-height: 500px;
  background: var(--espresso);
}

.page-hero-dark::before,
.confirmation::before,
.not-found::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(252, 249, 243, 0.16);
  content: "";
  pointer-events: none;
}

.page-hero-dark h1 {
  font-size: clamp(2.9rem, 4.15vw, 4.4rem);
}

.service-facts {
  margin-top: 0;
}

.treatment-nav {
  top: 105px;
}

.treatment-nav__scroll {
  border-radius: var(--radius-lg);
  box-shadow: none;
}

.guide-highlight,
.medical-note,
.photo-check-card,
.healing-timeline li,
.check-list li,
.care-grid li,
.region-link-grid a {
  border-radius: var(--radius-md);
  box-shadow: none;
}

.healing-timeline,
.care-grid,
.region-link-grid {
  gap: 1px;
  background: var(--line);
}

.healing-timeline li,
.care-grid li,
.region-link-grid a {
  border: 0;
}

.conversion-panel {
  border: 1px solid rgba(252, 249, 243, 0.16);
  border-radius: var(--radius-xl);
  background: var(--espresso);
}

.about-section,
.prices-section {
  margin-top: 0;
  margin-bottom: 112px;
  padding: 72px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  gap: clamp(64px, 8vw, 118px);
}

.about-section__image,
.prices-section__image {
  height: 720px;
}

.about-section__image img,
.prices-section__image img {
  border-radius: var(--radius-lg);
}

.about-section__copy,
.prices-section__copy {
  padding-right: 0;
}

.prices-section__copy {
  width: 100%;
  max-width: none;
}

.page-texture,
.texture-section {
  min-height: 370px;
  border-block: 1px solid var(--line);
}

.contact-section {
  margin-top: 0;
  margin-bottom: 112px;
  padding: 88px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.form-field input,
.form-field select,
.form-field textarea {
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: rgba(252, 249, 243, 0.45);
  box-shadow: none;
}

.local-page-hero {
  background: var(--sand);
}

.local-page-hero__image {
  margin: 0;
  border-radius: 0;
}

.region-card-grid {
  gap: 1px;
  background: var(--line);
}

.region-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.region-card:hover {
  transform: translateY(-4px);
  background: var(--sand);
  box-shadow: none;
}

.page-region-detail .local-guide > section:nth-child(2) {
  border-radius: var(--radius-xl);
}

.confirmation,
.not-found {
  position: relative;
  margin-top: 0;
  border-radius: 0;
  background: var(--espresso);
}

/* A quieter, editorial closing section */

.footer-cta {
  width: 100%;
  padding: 82px max(24px, calc((100vw - var(--container)) / 2));
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: var(--sand);
}

.footer-cta__title {
  font-size: clamp(2.35rem, 3.5vw, 3.65rem);
}

.consent-banner {
  border-radius: var(--radius-lg);
}

/* Scroll reveals and image motion */

.has-reveal [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 760ms ease var(--reveal-delay, 0ms), transform 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.has-reveal [data-reveal].is-visible {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  will-change: auto;
}

.has-reveal [data-reveal="image"] {
  clip-path: inset(0 0 100% 0);
  opacity: 1;
  transform: none;
  transition: clip-path 1100ms cubic-bezier(0.77, 0, 0.18, 1) var(--reveal-delay, 0ms);
}

.has-reveal [data-reveal="image"].is-visible {
  clip-path: inset(0 0 0 0);
}

[data-parallax] img {
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(var(--image-zoom, 1.035));
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

[data-parallax]:hover {
  --image-zoom: 1.055;
}

/* Responsive refinements for the editorial direction */

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(365px, 1.05fr);
    gap: 56px;
  }

  .hero__visual {
    height: 545px;
  }

  .home-intro__image {
    height: 620px;
  }
}

@media (max-width: 960px) {
  .site-header,
  [data-site-header].is-scrolled .site-header {
    min-height: 70px;
  }

  .hero {
    padding-block: 64px;
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 720px;
    padding: 0;
  }

  .hero__visual {
    height: min(78vw, 680px);
  }

  .home-intro__inner {
    grid-template-columns: 1fr;
  }

  .home-intro__image {
    height: min(90vw, 720px);
  }

  .landing-benefits__heading {
    grid-template-columns: 1fr;
  }

  .about-section,
  .prices-section {
    padding-top: 56px;
  }
}

@media (max-width: 700px) {
  :root {
    --radius-xl: 6px;
    --radius-lg: 4px;
  }

  .announcement {
    min-height: 29px;
  }

  .site-header,
  [data-site-header].is-scrolled .site-header {
    min-height: 68px;
  }

  .brand,
  [data-site-header].is-scrolled .brand {
    width: 174px;
  }

  .hero {
    margin-top: 0;
    padding: 42px 0 30px;
    gap: 32px;
  }

  .hero__content {
    padding: 0 2px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 10.1vw, 2.95rem);
  }

  .hero__visual {
    height: min(116vw, 500px);
    padding: 8px;
  }

  .hero__visual-note {
    right: 18px;
    bottom: 18px;
  }

  .landing-trust {
    width: calc(100% - 28px);
    margin-top: 0;
  }

  .landing-trust__inner > div,
  .service-facts > div {
    min-height: 91px;
  }

  .home-intro {
    padding: 76px 14px;
  }

  .home-intro__inner {
    gap: 52px;
  }

  .home-intro__image {
    height: min(122vw, 540px);
  }

  .home-intro__image::before {
    right: -7px;
  }

  .landing-benefits {
    padding: 76px 0;
  }

  .landing-benefits__heading {
    padding-inline: 0;
    margin-bottom: 42px;
  }

  .landing-benefits__grid {
    gap: 0;
  }

  .landing-benefits__grid article {
    min-height: 235px;
    padding: 28px 10px;
    border-right: 0;
  }

  .content-section,
  .results-preview,
  .results-page {
    padding-block: 76px;
  }

  .testimonials {
    padding: 76px 0 82px 14px;
  }

  .testimonials .section-heading {
    width: calc(100% - 28px);
    margin-left: 0;
  }

  .testimonials .testimonial-slider {
    width: calc(100vw - 14px);
    margin-left: 0;
    padding: 0 14px 0 0;
  }

  .testimonial-grid {
    width: max-content;
    margin-inline: 0;
  }

  .testimonial-card {
    min-height: 320px;
  }

  .home-faq {
    margin-top: 76px;
    margin-bottom: 76px;
  }

  .page-hero-dark,
  .local-page-hero,
  .confirmation,
  .not-found {
    margin-top: 0;
  }

  .page-hero-dark::before,
  .confirmation::before,
  .not-found::before {
    inset: 10px;
  }

  .service-facts {
    margin-top: 0;
  }

  .treatment-nav {
    top: 104px;
  }

  .about-section,
  .prices-section {
    margin-top: 0;
    margin-bottom: 76px;
    padding: 42px 0 0;
  }

  .about-section__image,
  .prices-section__image {
    height: min(120vw, 540px);
  }

  .about-section__copy,
  .prices-section__copy {
    width: auto;
    margin-inline: 10px;
    padding-inline: 0;
  }

  .contact-section {
    margin-top: 0;
    margin-bottom: 76px;
    padding: 64px 0 0;
  }

  .local-page-hero__copy {
    padding: 56px 22px 48px;
  }

  .local-page-hero__image {
    margin: 0;
  }

  .region-card-grid {
    gap: 1px;
  }

  .footer-cta {
    padding: 64px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-reveal [data-reveal],
  .has-reveal [data-reveal="image"],
  [data-parallax] img {
    clip-path: none !important;
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
}

/* Consistent full-width page introductions */

.page-feature-hero {
  min-height: 620px;
}

.page-feature-hero .local-page-hero__copy {
  padding: clamp(58px, 6vw, 82px);
}

.page-feature-hero .local-page-hero__image {
  position: relative;
  min-height: 620px;
}

.price-page-hero .local-page-hero__image img {
  filter: grayscale(1) contrast(0.94) sepia(0.06);
}

.price-page-hero .promo-badge {
  top: 24px;
  right: auto;
  bottom: auto;
  left: 24px;
}

.about-story,
.prices-overview {
  padding-block: 112px;
}

.prices-overview .price-list {
  margin-top: 0;
}

.contact-section {
  width: min(calc(100% - 48px), var(--container));
  padding-top: 96px;
}

.confirmation,
.not-found {
  width: min(calc(100% - 48px), var(--container));
}

.contact-section > .section-heading {
  margin-bottom: 52px;
}

/* Continuously moving before-and-after gallery */

.image-strip,
.results-page .image-strip {
  --strip-gap: 8px;
  display: block;
  width: 100%;
  height: 432px;
  padding: 0;
  overflow: hidden;
}

.image-strip__track,
.image-strip__group {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--strip-gap);
  width: max-content;
}

.image-strip__track {
  animation: results-marquee 108s linear infinite;
  will-change: transform;
}

.image-strip:hover .image-strip__track,
.image-strip:focus-within .image-strip__track {
  animation-play-state: paused;
}

.image-strip__item,
.results-page .image-strip__item {
  display: block;
  width: 340px;
  min-width: 340px;
  height: 425px;
  flex: 0 0 340px;
  aspect-ratio: auto;
}

.image-strip__item img,
.results-page .image-strip__item img {
  width: 340px;
  height: 425px;
}

.page-home .image-strip__item:nth-child(n + 5) {
  display: block;
}

.results-page {
  width: 100%;
  margin-inline: 0;
  padding-block: 112px;
}

@keyframes results-marquee {
  from {
    transform: translate3d(calc(-50% - 4px), 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 960px) {
  .page-feature-hero,
  .page-feature-hero .local-page-hero__image {
    min-height: auto;
  }

  .page-feature-hero .local-page-hero__copy {
    padding: 58px 42px 52px;
  }

  .page-feature-hero .local-page-hero__image {
    height: min(90vw, 700px);
  }
}

@media (max-width: 700px) {
  .page-feature-hero .local-page-hero__copy {
    padding: 52px 22px 46px;
  }

  .page-feature-hero .local-page-hero__image {
    height: min(112vw, 520px);
    min-height: min(112vw, 520px);
  }

  .price-page-hero .promo-badge {
    top: 12px;
    left: 12px;
  }

  .about-story,
  .prices-overview {
    padding-block: 76px;
  }

  .contact-section {
    width: calc(100% - 28px);
    padding-top: 76px;
  }

  .confirmation,
  .not-found {
    width: min(calc(100% - 28px), var(--container));
  }

  .image-strip,
  .results-page .image-strip {
    --strip-gap: 10px;
    height: 299px;
  }

  .image-strip__item,
  .results-page .image-strip__item {
    width: 234px;
    min-width: 234px;
    height: 292px;
    flex-basis: 234px;
  }

  .image-strip__item img,
  .results-page .image-strip__item img {
    width: 234px;
    height: 292px;
  }

  .results-page {
    padding-block: 76px;
  }

  @keyframes results-marquee {
    from {
      transform: translate3d(calc(-50% - 5px), 0, 0);
    }

    to {
      transform: translate3d(0, 0, 0);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .image-strip,
  .results-page .image-strip {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .image-strip::-webkit-scrollbar {
    display: none;
  }

  .image-strip__track {
    animation: none;
    transform: none;
    will-change: auto;
  }

  .image-strip__group[aria-hidden="true"] {
    display: none;
  }

  .image-strip__item {
    scroll-snap-align: start;
  }
}

/* 2026 organic-growth and UX refinement */

h1,
h2,
h3,
.guide-card strong {
  text-wrap: balance;
}

p,
li,
dd {
  text-wrap: pretty;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 4px;
}

.page-feature-hero .local-page-hero__copy h1,
.page-region-detail .local-page-hero__copy h1 {
  max-width: 10.5em;
  font-size: clamp(3rem, 4vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.page-feature-hero .local-page-hero__copy {
  padding: clamp(58px, 5vw, 72px);
}

.page-feature-hero .conversion-qualifier,
.page-region-detail .conversion-qualifier {
  max-width: 500px;
  line-height: 1.55;
}

.page-texture,
.texture-section {
  min-height: 260px;
}

.local-quickfacts,
.guide-summary {
  display: grid;
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.local-quickfacts > div,
.guide-summary > div {
  display: flex;
  min-height: 116px;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border-right: 1px solid var(--line);
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.local-quickfacts > div:last-child,
.guide-summary > div:last-child {
  border-right: 0;
}

.local-quickfacts strong,
.guide-summary strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.1;
}

.local-quickfacts span,
.guide-summary span {
  color: var(--taupe);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

/* Editorial guide cards */

.editorial-guides,
.treatment-guide-links,
.about-principles,
.price-included,
.result-notes,
.guide-article,
.guide-cta {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.editorial-guides {
  padding-block: 108px;
}

.editorial-guides__heading {
  display: grid;
  align-items: end;
  margin-bottom: 52px;
  grid-template-columns: 1.1fr 0.7fr;
  column-gap: 80px;
}

.editorial-guides__heading .eyebrow {
  grid-column: 1 / -1;
}

.editorial-guides__heading h2,
.treatment-guide-links__heading h2,
.about-principles__heading h2,
.price-included__intro h2,
.result-notes__heading h2,
.guide-cta h2 {
  margin: 0;
  font-size: clamp(2.65rem, 4vw, 4rem);
  line-height: 1;
}

.editorial-guides__heading > p:last-child {
  max-width: 480px;
  margin: 0 0 5px;
  color: var(--taupe);
}

.editorial-guides__grid,
.treatment-guide-links__grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.guide-card,
.treatment-guide-links__grid a {
  display: flex;
  min-height: 330px;
  padding: 36px;
  background: var(--paper);
  color: var(--espresso);
  flex-direction: column;
  text-decoration: none;
  transition: background-color 260ms ease, color 260ms ease, transform 260ms ease;
}

.guide-card--featured {
  background: var(--espresso);
  color: var(--paper);
}

.guide-card:hover,
.treatment-guide-links__grid a:hover {
  z-index: 1;
  transform: translateY(-5px);
  background: var(--sand);
  color: var(--espresso);
}

.guide-card__number {
  margin-bottom: 62px;
  color: currentColor;
  font-family: var(--serif);
  font-size: 1rem;
  opacity: 0.48;
}

.guide-card__label,
.treatment-guide-links__grid a > span {
  margin-bottom: 12px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  opacity: 0.62;
  text-transform: uppercase;
}

.guide-card strong,
.treatment-guide-links__grid a > strong {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.2vw, 2.15rem);
  font-weight: 400;
  line-height: 1.06;
}

.guide-card__link,
.treatment-guide-links__grid a > small {
  margin-top: auto;
  padding-top: 34px;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.treatment-guide-links {
  padding: 94px 0 26px;
}

.treatment-guide-links__heading {
  display: grid;
  align-items: end;
  margin-bottom: 42px;
  grid-template-columns: 1fr 1fr;
}

.treatment-guide-links__heading .eyebrow {
  grid-column: 1 / -1;
}

.treatment-guide-links__grid a {
  min-height: 270px;
  padding: 32px;
}

.treatment-guide-links__grid a > strong {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

/* Price page */

.prices-overview,
.price-faq {
  border-bottom: 1px solid var(--line);
}

.prices-overview .content-section__copy {
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.prices-overview .price-list dt,
.prices-overview .price-list dd {
  padding-block: 17px;
}

.price-included {
  display: grid;
  overflow: hidden;
  margin-bottom: 0;
  background: var(--espresso);
  color: var(--paper);
  grid-template-columns: 0.78fr 1.22fr;
}

.price-included__intro {
  display: flex;
  justify-content: center;
  padding: clamp(52px, 6vw, 78px);
  border-right: 1px solid rgba(252, 249, 243, 0.15);
  flex-direction: column;
}

.price-included__intro > p:last-child {
  max-width: 430px;
  margin: 26px 0 0;
  color: rgba(252, 249, 243, 0.64);
}

.price-included__list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, 1fr);
}

.price-included__list li {
  display: grid;
  min-height: 245px;
  padding: 34px;
  border-right: 1px solid rgba(252, 249, 243, 0.15);
  border-bottom: 1px solid rgba(252, 249, 243, 0.15);
  grid-template-columns: 34px 1fr;
  gap: 18px;
}

.price-included__list li:nth-child(even) {
  border-right: 0;
}

.price-included__list li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.price-included__list li > span {
  color: rgba(252, 249, 243, 0.4);
  font-family: var(--serif);
}

.price-included__list strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.price-included__list p {
  margin: 0;
  color: rgba(252, 249, 243, 0.62);
  font-size: 0.9rem;
}

.price-faq .faq-list {
  background: transparent;
}

/* Results and about pages */

.result-notes {
  display: grid;
  padding: clamp(58px, 6vw, 82px);
  background: var(--espresso);
  color: var(--paper);
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

.result-notes__grid {
  display: grid;
  gap: 1px;
  background: rgba(252, 249, 243, 0.14);
  grid-template-columns: repeat(3, 1fr);
}

.result-notes__grid article {
  min-height: 280px;
  padding: 28px;
  background: var(--espresso);
}

.result-notes__grid article > span,
.about-principles__grid article > span {
  display: block;
  margin-bottom: 48px;
  font-family: var(--serif);
  opacity: 0.42;
}

.result-notes__grid h3,
.about-principles__grid h3 {
  margin: 0 0 13px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.08;
}

.result-notes__grid p {
  margin: 0;
  color: rgba(252, 249, 243, 0.62);
  font-size: 0.86rem;
}

.result-notes__action {
  grid-column: 2;
}

.about-principles {
  padding-block: 104px;
}

.about-principles__heading {
  max-width: 650px;
  margin-bottom: 52px;
}

.about-principles__grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.about-principles__grid article {
  min-height: 280px;
  padding: 34px;
  background: var(--paper);
}

.about-principles__grid p {
  margin: 0;
  color: var(--taupe);
}

/* Conversion-first contact layout */

.contact-section {
  display: grid;
  padding: 108px 0;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(58px, 7vw, 96px);
}

.contact-section__intro > h2 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 4vw, 4rem);
  line-height: 1;
}

.contact-section__intro > p:not(.eyebrow) {
  color: var(--taupe);
}

.contact-steps {
  margin: 44px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.contact-steps li {
  display: grid;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 34px 1fr;
  gap: 14px;
}

.contact-steps li > span {
  color: var(--taupe);
  font-family: var(--serif);
}

.contact-steps strong,
.contact-steps small {
  display: block;
}

.contact-steps strong {
  margin-bottom: 3px;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
}

.contact-steps small {
  color: var(--taupe);
  font-size: 0.78rem;
  line-height: 1.55;
}

.contact-section .contact-nap {
  display: block;
  margin: 0;
  padding: 0;
  text-align: left;
}

.contact-section .contact-nap span {
  display: block;
  padding: 17px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.contact-section .contact-form {
  padding: clamp(32px, 4vw, 52px);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(47, 39, 35, 0.055);
}

.contact-section .form-field input,
.contact-section .form-field select,
.contact-section .form-field textarea {
  border: 1px solid rgba(47, 39, 35, 0.16);
  border-radius: 0;
  background: var(--ivory);
}

.contact-section .contact-alternative {
  margin-top: 28px;
  padding-top: 0;
  border: 0;
  text-align: left;
}

/* Long-form guides */

.guide-page-hero .local-page-hero__copy h1 {
  max-width: 11.5em;
  font-size: clamp(2.9rem, 3.85vw, 4.1rem);
}

.guide-summary {
  border-top: 0;
}

.guide-article {
  display: grid;
  align-items: start;
  padding-block: 112px;
  grid-template-columns: 250px minmax(0, 760px);
  justify-content: space-between;
  gap: 80px;
}

.guide-article__nav {
  position: sticky;
  top: 150px;
  display: flex;
  padding: 26px 0;
  border-block: 1px solid var(--line);
  flex-direction: column;
}

.guide-article__nav .eyebrow {
  margin-bottom: 18px;
}

.guide-article__nav a {
  padding: 9px 0;
  color: var(--taupe);
  font-size: 0.79rem;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.guide-article__nav a:hover {
  transform: translateX(4px);
  color: var(--espresso);
}

.guide-article__body > section {
  padding: 0 0 84px;
  margin: 0 0 84px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 155px;
}

.guide-article__body > section:last-child {
  margin-bottom: 0;
}

.guide-article__body h2 {
  max-width: 690px;
  margin: 0 0 30px;
  font-size: clamp(2.45rem, 3.6vw, 3.65rem);
  line-height: 1.02;
}

.guide-article__body h2 + p {
  color: var(--espresso);
  font-size: 1.08rem;
}

.guide-article__body p {
  color: rgba(47, 39, 35, 0.74);
}

.guide-article__body a {
  font-weight: 650;
}

.guide-callout {
  margin-top: 34px;
  padding: 28px 30px;
  border-left: 3px solid var(--brown);
  background: var(--sand);
}

.guide-callout--important {
  border-left-color: #8b4038;
}

.guide-callout strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.guide-callout p {
  margin: 0;
}

.comparison-table {
  width: 100%;
  margin-top: 42px;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  background: var(--paper);
}

.comparison-table th,
.comparison-table td {
  padding: 18px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  background: var(--espresso);
  color: var(--paper);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison-table tbody th {
  width: 22%;
  font-family: var(--serif);
  font-size: 1.03rem;
  font-weight: 400;
}

.comparison-table td {
  color: var(--taupe);
  font-size: 0.86rem;
}

.guide-checklist {
  margin: 34px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.guide-checklist li {
  position: relative;
  padding: 17px 0 17px 34px;
  border-bottom: 1px solid var(--line);
}

.guide-checklist li::before {
  position: absolute;
  top: 21px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage-deep);
  content: "";
}

.page-guide .care-grid {
  display: grid;
  margin: 38px 0;
  gap: 1px;
  background: var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.page-guide .care-grid > div {
  padding: 32px;
  background: var(--paper);
}

.page-guide .care-grid strong {
  display: block;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.page-guide .care-grid ul {
  margin: 0;
  padding-left: 20px;
  color: var(--taupe);
}

.guide-faq .faq-list {
  margin-top: 38px;
}

.guide-cta {
  display: grid;
  align-items: end;
  margin-bottom: 112px;
  padding: clamp(54px, 6vw, 78px);
  background: var(--espresso);
  color: var(--paper);
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
}

.guide-cta p:not(.eyebrow) {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgba(252, 249, 243, 0.62);
}

.guide-cta > div:last-child {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 18px;
}

.guide-cta > div:last-child > a:not(.button) {
  color: rgba(252, 249, 243, 0.72);
  font-size: 0.8rem;
}

.footer-main__inner {
  grid-template-columns: 1.35fr 0.55fr 0.75fr 0.72fr;
}

@media (max-width: 960px) {
  .editorial-guides__heading,
  .price-included,
  .result-notes,
  .contact-section,
  .guide-cta {
    grid-template-columns: 1fr;
  }

  .editorial-guides__heading {
    gap: 24px;
  }

  .editorial-guides__grid,
  .treatment-guide-links__grid,
  .about-principles__grid {
    grid-template-columns: 1fr;
  }

  .guide-card,
  .treatment-guide-links__grid a {
    min-height: 250px;
  }

  .price-included__intro {
    border-right: 0;
    border-bottom: 1px solid rgba(252, 249, 243, 0.15);
  }

  .result-notes {
    gap: 44px;
  }

  .result-notes__action {
    grid-column: 1;
  }

  .contact-section {
    gap: 58px;
  }

  .guide-article {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .guide-article__nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 32px;
  }

  .guide-article__nav .eyebrow {
    grid-column: 1 / -1;
  }

  .guide-cta {
    align-items: start;
    gap: 40px;
  }

  .footer-main__inner {
    grid-template-columns: 1.2fr repeat(3, 0.7fr);
  }
}

@media (max-width: 700px) {
  .page-feature-hero .local-page-hero__copy h1,
  .page-region-detail .local-page-hero__copy h1,
  .guide-page-hero .local-page-hero__copy h1 {
    max-width: none;
    font-size: clamp(2.65rem, 12vw, 3.45rem);
    line-height: 0.98;
  }

  .page-feature-hero .local-page-hero__copy,
  .page-region-detail .local-page-hero__copy {
    padding: 48px 20px 42px;
  }

  .page-texture,
  .texture-section {
    min-height: 210px;
  }

  .local-quickfacts,
  .guide-summary {
    width: calc(100% - 28px);
    grid-template-columns: repeat(2, 1fr);
  }

  .local-quickfacts > div,
  .guide-summary > div {
    min-height: 102px;
    padding: 18px 10px;
    border-bottom: 1px solid var(--line);
  }

  .local-quickfacts > div:nth-child(2),
  .guide-summary > div:nth-child(2) {
    border-right: 0;
  }

  .editorial-guides,
  .treatment-guide-links,
  .about-principles,
  .price-included,
  .result-notes,
  .guide-article,
  .guide-cta {
    width: calc(100% - 28px);
  }

  .editorial-guides,
  .about-principles {
    padding-block: 76px;
  }

  .editorial-guides__heading,
  .about-principles__heading {
    margin-bottom: 36px;
  }

  .editorial-guides__heading h2,
  .treatment-guide-links__heading h2,
  .about-principles__heading h2,
  .price-included__intro h2,
  .result-notes__heading h2,
  .guide-cta h2 {
    font-size: clamp(2.4rem, 11vw, 3.15rem);
  }

  .guide-card,
  .treatment-guide-links__grid a {
    min-height: 232px;
    padding: 27px;
  }

  .guide-card__number {
    margin-bottom: 38px;
  }

  .treatment-guide-links {
    padding-top: 74px;
  }

  .treatment-guide-links__heading {
    display: block;
    margin-bottom: 34px;
  }

  .prices-overview .content-section__copy,
  .contact-section .contact-form {
    padding: 26px 20px;
  }

  .price-included__intro,
  .result-notes {
    padding: 48px 24px;
  }

  .price-included__list,
  .result-notes__grid {
    grid-template-columns: 1fr;
  }

  .price-included__list li {
    min-height: auto;
    padding: 27px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(252, 249, 243, 0.15) !important;
  }

  .price-included__list li:last-child {
    border-bottom: 0 !important;
  }

  .result-notes__grid article,
  .about-principles__grid article {
    min-height: 230px;
    padding: 27px;
  }

  .contact-section {
    width: calc(100% - 28px);
    padding: 76px 0;
  }

  .contact-section .contact-form {
    display: block;
  }

  .contact-section .form-field + .form-field,
  .contact-section .form-actions {
    margin-top: 22px;
  }

  .guide-article {
    padding-block: 76px;
    gap: 54px;
  }

  .guide-article__nav {
    display: flex;
  }

  .guide-article__body > section {
    padding-bottom: 62px;
    margin-bottom: 62px;
  }

  .guide-article__body h2 {
    font-size: clamp(2.35rem, 10.5vw, 3.1rem);
  }

  .page-guide .care-grid {
    grid-template-columns: 1fr;
  }

  .guide-callout,
  .page-guide .care-grid > div {
    padding: 24px 21px;
  }

  .guide-cta {
    margin-bottom: 76px;
    padding: 48px 24px;
  }

  .footer-main__inner {
    grid-template-columns: 1fr;
  }
}
