:root {
  --ivory: #f4f2ec;
  --porcelain: #fbfaf7;
  --white: #ffffff;
  --forest: #1c3430;
  --forest-deep: #132824;
  --sage: #dfe5dd;
  --sand-soft: #eee7dc;
  --bronze: #b3956b;
  --bronze-light: #d7c6aa;
  --ink: #202826;
  --stone: #6a716d;
  --line: rgba(28, 52, 48, 0.15);
  --line-light: rgba(255, 255, 255, 0.2);
  --serif: Baskerville, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --shell: 1180px;
  --gutter: clamp(22px, 4vw, 58px);
  --section: clamp(92px, 10vw, 142px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--porcelain);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

p,
h1,
h2,
h3,
figure,
blockquote {
  margin: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--forest);
  color: white;
  font-size: 12px;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: var(--section);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(28, 52, 48, 0.09);
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 44px), 1320px);
  height: 78px;
  margin-inline: auto;
}

.brand {
  display: flex;
  z-index: 3;
  align-items: center;
  gap: 11px;
  min-width: 235px;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  opacity: 0.72;
}

.brand > span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.brand small {
  margin-top: 4px;
  color: var(--stone);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.primary-nav,
.nav-links {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: clamp(22px, 2.5vw, 38px);
}

.nav-links a {
  position: relative;
  padding-block: 10px;
  color: #44504c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.085em;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--bronze);
  transition: transform 260ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-mobile-footer {
  display: none;
}

.header-actions {
  display: flex;
  z-index: 3;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-width: 235px;
}

.instagram-link {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
  transition: border-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.instagram-link:hover,
.instagram-link:focus-visible {
  transform: translateY(-1px);
  border-color: var(--bronze);
  color: var(--bronze);
}

.brand-icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.brand-icon-instagram {
  -webkit-mask-image: url("/icons/instagram.svg");
  mask-image: url("/icons/instagram.svg");
}

.brand-icon-whatsapp {
  -webkit-mask-image: url("/icons/whatsapp.svg");
  mask-image: url("/icons/whatsapp.svg");
}

.instagram-link .brand-icon {
  width: 13px;
  height: 13px;
}

.social-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #8b918e;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.language-switch button {
  padding: 4px 2px;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.48;
}

.language-switch button[aria-pressed="true"] {
  color: var(--forest);
  opacity: 1;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  min-height: 38px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--forest);
  color: white;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 200ms ease, transform 200ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  background: var(--forest-deep);
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 230ms ease;
}

.hero {
  padding: 132px var(--gutter) 72px;
  background:
    radial-gradient(circle at 18% 18%, rgba(215, 198, 170, 0.22), transparent 28%),
    var(--ivory);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.86fr);
  align-items: center;
  gap: clamp(58px, 8vw, 112px);
  width: min(100%, var(--shell));
  min-height: 650px;
  margin-inline: auto;
}

.hero-copy {
  animation: enter 620ms ease both;
}

.kicker,
.section-kicker {
  color: var(--stone);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.kicker i {
  width: 32px;
  height: 1px;
  background: var(--bronze);
}

.hero h1,
.section-head h2,
.story h2,
.method h2,
.locations h2,
.instagram-section h2,
.faq h2,
.final-cta h2 {
  color: var(--forest-deep);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3.25rem, 5.3vw, 4.55rem);
}

.hero h1 span,
.hero h1 em,
.section-head h2 span,
.section-head h2 em,
.story h2 span,
.story h2 em,
.method h2 span,
.method h2 em,
.locations h2 span,
.locations h2 em,
.instagram-section h2 span,
.instagram-section h2 em,
.faq h2 span,
.faq h2 em,
.final-cta h2 span,
.final-cta h2 em {
  display: block;
}

.hero h1 em,
.section-head h2 em,
.story h2 em,
.method h2 em,
.locations h2 em,
.instagram-section h2 em,
.faq h2 em,
.final-cta h2 em {
  color: var(--bronze);
  font-weight: 400;
}

.hero-lead {
  max-width: 590px;
  margin-top: 28px;
  color: #58625e;
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  min-width: 244px;
  background: var(--forest);
  color: white;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--forest-deep);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--forest);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--stone);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-credentials span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-credentials span:not(:last-child)::after {
  color: var(--bronze);
  content: "·";
}

.hero-visual {
  position: relative;
  width: min(100%, 480px);
  justify-self: end;
  animation: enter 720ms 120ms ease both;
}

.hero-frame {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(179, 149, 107, 0.36);
  border-radius: 26px;
}

.hero-frame::before {
  position: absolute;
  z-index: 0;
  top: 30px;
  right: -24px;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(179, 149, 107, 0.35);
  border-radius: 50%;
  content: "";
}

.hero-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 0.82;
  border-radius: 18px;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.8) contrast(0.98);
}

.hero-visual figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  color: var(--stone);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.assurance {
  background: var(--porcelain);
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.assurance-grid > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 20px 30px;
  border-right: 1px solid var(--line);
}

.assurance-grid > div:first-child {
  padding-left: 0;
}

.assurance-grid > div:last-child {
  border-right: 0;
}

.assurance-grid span,
.treatment-index,
.method-steps article > span {
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
}

.assurance-grid p {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.3;
}

.section-dark {
  padding-block: var(--section);
  background: var(--forest);
  color: white;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(50px, 8vw, 110px);
}

.section-head h2,
.story h2,
.method h2,
.locations h2,
.faq h2 {
  margin-top: 18px;
  font-size: clamp(2.75rem, 4.6vw, 4rem);
}

.section-head > p {
  max-width: 440px;
  padding-bottom: 6px;
  color: var(--stone);
  font-size: 15px;
}

.section-head-light .section-kicker,
.section-head-light > p {
  color: rgba(255, 255, 255, 0.62);
}

.section-head-light h2 {
  color: white;
}

.section-head-light h2 em {
  color: var(--bronze-light);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
  margin-top: 70px;
}

.case-card {
  max-width: 520px;
}

.case-card-offset {
  margin-top: 74px;
}

.case-card > a {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: var(--forest-deep);
}

.case-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 500ms ease;
}

.case-card > a:hover img,
.case-card > a:focus-visible img {
  transform: scale(1.015);
}

.case-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
}

.case-meta span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.case-meta h3 {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.case-meta > a {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line-light);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.results-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
  margin-top: 62px;
  padding-top: 30px;
  border-top: 1px solid var(--line-light);
}

.results-footer p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.6;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.46);
  color: white;
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  background: white;
  color: var(--forest);
}

.treatments {
  background: var(--porcelain);
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 64px;
}

.treatment-grid article {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  transition: transform 220ms ease, border-color 220ms ease;
}

.treatment-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(179, 149, 107, 0.55);
}

.treatment-grid h3 {
  margin-top: 44px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
}

.treatment-grid p {
  margin-top: 16px;
  color: var(--stone);
  font-size: 14px;
}

.treatment-goal {
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--forest);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.treatment-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  margin-top: 34px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.treatment-cta p {
  max-width: 690px;
  color: var(--stone);
  font-family: var(--serif);
  font-size: 17px;
}

.story {
  background: var(--ivory);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(65px, 9vw, 130px);
}

.story-visual {
  max-width: 465px;
}

.story-visual img {
  width: 100%;
  aspect-ratio: 0.82;
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(0.98);
}

.story-visual figcaption {
  margin-top: 14px;
  color: var(--stone);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-lead {
  margin-top: 30px;
  color: #48534f;
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.7vw, 1.34rem);
  line-height: 1.55;
}

.story-copy > p:not(.section-kicker):not(.story-lead) {
  margin-top: 22px;
  color: var(--stone);
}

.timeline {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.timeline > div {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.timeline strong {
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
}

.timeline span {
  color: #4b5652;
  font-size: 12px;
}

.registrations {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
  color: var(--stone);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.method {
  background: var(--porcelain);
}

.method-intro {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 60px;
  align-items: start;
}

.method-intro h2 {
  margin-top: 0;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 66px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method-steps article {
  min-height: 260px;
  padding: 30px 38px 32px 0;
  border-right: 1px solid var(--line);
}

.method-steps article + article {
  padding-left: 38px;
}

.method-steps article:last-child {
  border-right: 0;
}

.method-steps h3 {
  margin-top: 30px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.method-steps p {
  max-width: 290px;
  margin-top: 12px;
  color: var(--stone);
  font-size: 14px;
}

.reviews {
  background: var(--sand-soft);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 64px;
}

.review-grid article {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 38px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.quote-mark {
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 55px;
  line-height: 0.8;
}

.review-grid article > p {
  margin-top: 28px;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  line-height: 1.55;
}

.review-grid footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.review-grid footer strong {
  color: var(--forest);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.review-grid footer a {
  color: inherit;
  text-decoration: none;
}

.review-grid footer a:hover,
.review-grid footer a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.review-grid footer span {
  color: var(--stone);
  font-size: 9px;
}

.locations {
  background: var(--porcelain);
}

.locations-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 9vw, 130px);
}

.location-cards {
  border-top: 1px solid var(--line);
}

.location-cards article {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.location-cards article > span {
  color: var(--stone);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.location-cards h3 {
  margin-top: 5px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
}

.location-cards strong {
  display: block;
  margin-top: 10px;
  color: #48534f;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.location-cards p {
  margin-top: 10px;
  color: var(--stone);
  font-size: 13px;
}

.location-cards article > div {
  display: flex;
  gap: 28px;
  margin-top: 18px;
}

.location-cards a {
  padding-bottom: 2px;
  border-bottom: 1px solid var(--line);
  color: var(--forest);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.instagram-section {
  padding-block: 72px;
  background: var(--bronze-light);
}

.instagram-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.instagram-handle {
  color: rgba(28, 52, 48, 0.65);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.instagram-section h2 {
  margin-top: 8px;
  font-size: clamp(2.25rem, 3.8vw, 3.25rem);
}

.instagram-section h2 em {
  color: var(--forest);
}

.button-outline {
  flex: 0 0 auto;
  border-color: rgba(28, 52, 48, 0.4);
  color: var(--forest);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--forest);
  color: white;
}

.faq {
  background: var(--porcelain);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(60px, 9vw, 130px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 42px 25px 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 20px;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 3px;
  content: "+";
  transform: translateY(-50%);
  color: var(--bronze);
  font-family: var(--sans);
  font-size: 18px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  padding: 0 42px 24px 0;
  color: var(--stone);
  font-size: 14px;
}

.final-cta {
  padding-block: clamp(82px, 9vw, 118px);
  background: var(--forest);
  color: white;
}

.final-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 80px;
}

.final-inner > div:first-child > p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.final-cta h2 {
  color: white;
  font-size: clamp(2.75rem, 4.8vw, 4.1rem);
}

.final-cta h2 em {
  color: var(--bronze-light);
}

.final-action > p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--serif);
  font-size: 17px;
}

.button-light {
  min-width: 250px;
  background: white;
  color: var(--forest);
}

.site-footer {
  padding-top: 60px;
  background: var(--porcelain);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 50px;
  padding-bottom: 48px;
}

.footer-main strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.footer-main p {
  margin-top: 5px;
  color: var(--stone);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-contact,
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 11px;
}

.footer-links {
  align-items: flex-end;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 62px;
  border-top: 1px solid var(--line);
  color: var(--stone);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 7px 16px 7px 7px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: var(--forest);
  box-shadow: 0 12px 34px rgba(19, 40, 36, 0.2);
  color: white;
}

.floating-whatsapp > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--forest);
}

.floating-whatsapp .brand-icon {
  width: 18px;
  height: 18px;
}

.floating-whatsapp strong {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes enter {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .brand,
  .header-actions {
    min-width: auto;
  }

  .nav-links {
    gap: 20px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.76fr);
    gap: 60px;
  }
}

@media (max-width: 900px) {
  :root {
    --gutter: 28px;
  }

  .site-header {
    background: rgba(251, 250, 247, 0.98);
    backdrop-filter: none;
  }

  .header-inner {
    width: calc(100% - 40px);
    height: 74px;
  }

  .primary-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    padding: 120px 30px 38px;
    transform: translateY(-10px);
    background: var(--porcelain);
    opacity: 0;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .menu-open .primary-nav {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    color: var(--forest);
    font-family: var(--serif);
    font-size: 31px;
    font-weight: 400;
    letter-spacing: -0.02em;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-mobile-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .nav-mobile-footer > a:first-child {
    color: var(--stone);
    font-size: 11px;
  }

  .nav-mobile-footer .button {
    width: min(100%, 330px);
  }

  .menu-button {
    display: block;
  }

  .menu-open .menu-button span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-open .menu-button span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .instagram-link,
  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    width: min(88%, 520px);
    justify-self: center;
  }

  .assurance-grid > div {
    padding-inline: 18px;
  }

  .story-grid,
  .locations-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .story-visual {
    width: min(78%, 520px);
    max-width: none;
  }

  .method-intro {
    grid-template-columns: 0.42fr 1.58fr;
  }

  .method-steps article,
  .method-steps article + article {
    padding-inline: 24px;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 20px;
    --section: 78px;
  }

  html {
    scroll-padding-top: 76px;
  }

  .header-inner {
    width: calc(100% - 28px);
    height: 68px;
  }

  .brand img {
    width: 33px;
    height: 33px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .primary-nav {
    padding: 108px 22px 30px;
  }

  .nav-links a {
    font-size: 28px;
  }

  .hero {
    padding: 104px 20px 58px;
  }

  .hero-shell {
    min-height: auto;
    gap: 50px;
  }

  .kicker {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
  }

  .kicker i {
    width: 18px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13.4vw, 3.45rem);
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }

  .button-primary {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-credentials {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 34px;
  }

  .hero-credentials span::after {
    display: none;
  }

  .hero-visual {
    width: calc(100% - 12px);
  }

  .hero-frame {
    padding: 7px;
    border-radius: 20px;
  }

  .hero-frame img {
    border-radius: 14px;
  }

  .hero-frame::before {
    right: -12px;
    width: 82px;
    height: 82px;
  }

  .hero-visual figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .assurance-grid {
    grid-template-columns: 1fr;
  }

  .assurance-grid > div,
  .assurance-grid > div:first-child {
    min-height: 66px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .assurance-grid > div:last-child {
    border-bottom: 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-head h2,
  .story h2,
  .method h2,
  .locations h2,
  .faq h2 {
    font-size: clamp(2.45rem, 11.7vw, 3.15rem);
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 48px;
  }

  .case-card,
  .case-card-offset {
    margin-top: 0;
  }

  .case-meta h3 {
    font-size: 21px;
  }

  .results-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
  }

  .results-footer .button {
    width: 100%;
  }

  .treatment-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 44px;
  }

  .treatment-grid article {
    min-height: 290px;
    padding: 28px;
  }

  .treatment-grid h3 {
    margin-top: 32px;
  }

  .treatment-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .story-grid {
    gap: 48px;
  }

  .story-visual {
    width: 100%;
  }

  .timeline > div {
    grid-template-columns: 58px 1fr;
  }

  .method-intro {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .method-steps {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .method-steps article,
  .method-steps article + article {
    min-height: auto;
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .method-steps article:last-child {
    border-bottom: 0;
  }

  .method-steps h3 {
    margin-top: 18px;
  }

  .review-grid {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .review-grid article {
    min-height: 315px;
    padding: 30px;
  }

  .review-grid footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .locations-grid,
  .faq-grid {
    gap: 44px;
  }

  .instagram-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .instagram-inner .button {
    width: 100%;
  }

  .faq-list summary {
    font-size: 18px;
  }

  .final-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .final-cta h2 {
    font-size: clamp(2.55rem, 11.8vw, 3.2rem);
  }

  .final-action .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-links {
    align-items: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    padding-block: 18px 94px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Privacy, consent and legal pages */

[hidden] {
  display: none !important;
}

.footer-privacy-button,
.legal-inline-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: inherit;
  cursor: pointer;
}

.footer-privacy-button:hover,
.footer-privacy-button:focus-visible,
.legal-inline-button:hover,
.legal-inline-button:focus-visible {
  color: var(--bronze);
}

.privacy-banner {
  position: fixed;
  z-index: 1000;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
  padding: 26px 62px 26px 28px;
  border: 1px solid rgba(179, 149, 107, 0.32);
  border-radius: 20px;
  background: rgba(251, 250, 247, 0.98);
  box-shadow: 0 22px 70px rgba(20, 39, 35, 0.22);
  backdrop-filter: blur(18px);
  color: var(--forest-deep);
}

.privacy-banner-close,
.privacy-dialog-close {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--forest);
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}

.privacy-banner-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.privacy-eyebrow {
  color: var(--bronze);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.privacy-banner h2,
.privacy-dialog h2 {
  margin-top: 5px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.privacy-banner-copy > p:last-of-type {
  max-width: 690px;
  margin-top: 8px;
  color: var(--stone);
  font-size: 13px;
  line-height: 1.55;
}

.privacy-banner-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
  color: var(--forest);
  font-size: 10px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-banner-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  min-width: 390px;
}

.privacy-choice-button,
.privacy-settings-link {
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid rgba(28, 52, 48, 0.32);
  border-radius: 999px;
  background: transparent;
  color: var(--forest);
  font-size: 10px;
  font-weight: 750;
  cursor: pointer;
}

.privacy-choice-button:hover,
.privacy-choice-button:focus-visible,
.privacy-settings-link:hover,
.privacy-settings-link:focus-visible {
  border-color: var(--forest);
  background: var(--forest);
  color: white;
}

.privacy-settings-link {
  grid-column: 1 / -1;
  min-height: auto;
  padding-block: 5px;
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-dialog {
  width: min(680px, calc(100% - 32px));
  max-height: min(850px, calc(100dvh - 32px));
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: transparent;
  color: var(--forest-deep);
}

.privacy-dialog::backdrop {
  background: rgba(18, 34, 31, 0.58);
  backdrop-filter: blur(5px);
}

.privacy-dialog-card {
  padding: 32px;
  border: 1px solid rgba(179, 149, 107, 0.32);
  border-radius: 22px;
  background: var(--porcelain);
}

.privacy-dialog-head,
.privacy-category-head,
.privacy-dialog-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.privacy-dialog-intro {
  margin-top: 16px;
  color: var(--stone);
  font-size: 14px;
}

.privacy-category {
  display: block;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
}

.privacy-category strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.privacy-category-head span {
  color: var(--bronze);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.privacy-category p,
.privacy-category small {
  display: block;
  margin-top: 7px;
  color: var(--stone);
  font-size: 12px;
  line-height: 1.5;
}

.privacy-category-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
}

.privacy-category-toggle input {
  width: 42px;
  height: 22px;
  flex: 0 0 auto;
  accent-color: var(--forest);
  cursor: pointer;
}

.privacy-category-disabled {
  opacity: 0.78;
}

.privacy-dialog-actions {
  margin-top: 22px;
}

.privacy-dialog-actions > * {
  flex: 1;
}

.legal-page {
  background: var(--porcelain);
}

.legal-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.96);
  backdrop-filter: blur(16px);
}

.legal-header-inner {
  display: flex;
  width: min(1180px, calc(100% - 48px));
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-inline: auto;
}

.legal-header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.legal-back-link {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line);
  color: var(--forest);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-main {
  width: min(920px, calc(100% - 48px));
  margin-inline: auto;
  padding-block: clamp(70px, 8vw, 110px);
}

.legal-hero {
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin-top: 12px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(3.1rem, 7vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.legal-hero > p:not(.section-kicker) {
  max-width: 690px;
  margin-top: 22px;
  color: var(--stone);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
}

.legal-hero > span {
  display: block;
  margin-top: 18px;
  color: var(--stone);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-document {
  max-width: 800px;
  margin-top: 42px;
}

.legal-document section {
  padding-block: 30px;
  border-bottom: 1px solid var(--line);
}

.legal-document h2 {
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.legal-document h3 {
  margin-top: 20px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.legal-document p,
.legal-document li {
  color: #525d59;
  font-size: 14px;
  line-height: 1.72;
}

.legal-document p,
.legal-document ul {
  margin-top: 14px;
}

.legal-document ul {
  display: grid;
  gap: 11px;
  padding-left: 20px;
}

.legal-document a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-language-note {
  padding: 14px 18px;
  border-left: 3px solid var(--bronze);
  background: var(--sand-soft);
}

.legal-table-wrap {
  margin-top: 20px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.legal-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.48);
  color: #525d59;
  font-size: 12px;
  line-height: 1.5;
}

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

.legal-table th {
  color: var(--forest);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-table tbody tr:last-child td {
  border-bottom: 0;
}

.legal-table code {
  color: var(--forest);
  font-size: 11px;
  white-space: nowrap;
}

.legal-inline-button {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--forest);
  color: var(--forest);
  font-weight: 750;
}

.legal-footer {
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .privacy-banner {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 20px;
  }

  .privacy-banner-actions {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .privacy-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
    padding: 24px 20px 20px;
    overflow-y: auto;
    border-radius: 18px;
  }

  .privacy-banner-close {
    top: 12px;
    right: 12px;
  }

  .privacy-banner-copy {
    padding-right: 26px;
  }

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

  .privacy-settings-link {
    grid-column: auto;
  }

  .privacy-dialog-card {
    padding: 24px 18px;
  }

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

  .legal-header-inner,
  .legal-main {
    width: calc(100% - 32px);
  }

  .legal-header-inner {
    min-height: 68px;
  }

  .legal-header .brand small,
  .legal-back-link {
    display: none;
  }

  .legal-header-actions {
    gap: 10px;
  }

  .legal-main {
    padding-block: 58px 78px;
  }

  .legal-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }
}
