:root {
  --ivory: #F8F5F1;
  --sand: #EFE9E1;
  --card: #FFFFFF;
  --charcoal: #222222;
  --grey: #666666;
  --gold: #C8A04D;
  --border: #E8E1D8;
  --shadow: 0 22px 60px rgba(55, 45, 34, 0.08);
  --shadow-soft: 0 12px 34px rgba(55, 45, 34, 0.06);
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

.whatsapp-button {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 18;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(31, 143, 95, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #1f8f5f;
  box-shadow: 0 12px 30px rgba(55, 45, 34, 0.14);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.whatsapp-button img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.whatsapp-button:focus-visible {
  outline: 3px solid rgba(200, 160, 77, 0.48);
  outline-offset: 4px;
}

.back-to-top-button {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 17;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(248, 245, 241, 0.96);
  color: var(--gold);
  box-shadow: 0 10px 26px rgba(55, 45, 34, 0.12);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.back-to-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top-icon {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-top: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.back-to-top-button:focus-visible {
  outline: 3px solid rgba(200, 160, 77, 0.48);
  outline-offset: 4px;
}

body.menu-open .back-to-top-button {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .whatsapp-button:hover {
    transform: translateY(-3px);
    border-color: rgba(31, 143, 95, 0.42);
    box-shadow: 0 16px 34px rgba(55, 45, 34, 0.18);
  }

  .back-to-top-button:hover {
    border-color: rgba(200, 160, 77, 0.52);
    box-shadow: 0 14px 30px rgba(55, 45, 34, 0.16);
    transform: translateY(-2px);
  }
}

@media (max-width: 768px) {
  .whatsapp-button {
    right: 18px;
    bottom: max(22px, env(safe-area-inset-bottom));
    width: 50px;
    height: 50px;
  }

  .whatsapp-button img {
    width: 24px;
    height: 24px;
  }

  .back-to-top-button {
    bottom: max(22px, env(safe-area-inset-bottom));
    left: 18px;
    width: 42px;
    height: 42px;
  }
}

.footer-socials.social-icon-row,
.direct-socials.social-icon-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
}

.footer-social-label {
  display: block;
  margin: 24px 0 4px;
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-social-label + .footer-socials {
  margin-top: 0;
}

.social-icon-link {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  min-height: 44px;
  place-items: center;
  border-radius: 50%;
  transition: background-color 180ms ease, transform 180ms ease;
}

.social-icon-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.social-icon-link:focus-visible {
  outline: 2px solid rgba(200, 160, 77, 0.62);
  outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
  .social-icon-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.62);
  }
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 30;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--charcoal);
  color: #fff;
  padding: 0.65rem 0.9rem;
}

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

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

.section {
  padding: 112px 0;
}

.announcement {
  background: var(--sand);
  border-bottom: 1px solid var(--border);
  color: var(--grey);
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  gap: 18px;
  text-align: center;
}

.announcement a {
  color: var(--gold);
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 245, 241, 0.86);
  border-bottom: 1px solid rgba(232, 225, 216, 0.82);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(248, 245, 241, 0.94);
  box-shadow: 0 10px 30px rgba(50, 42, 32, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 28px;
  transition: min-height 220ms ease;
}

.site-header.is-scrolled .nav {
  min-height: 72px;
}

.brand,
.nav-panel,
.nav-links {
  display: flex;
  align-items: center;
}

.brand img {
  width: 192px;
  max-width: 192px;
  height: auto;
  transition: width 220ms ease;
}

.site-header.is-scrolled .brand img {
  width: 156px;
  max-width: 156px;
  height: auto;
}

.nav-panel {
  gap: 28px;
}

.nav-links {
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: width 220ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--charcoal);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, border-color 200ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--charcoal);
  color: #fff;
  box-shadow: 0 16px 34px rgba(34, 34, 34, 0.14);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--border);
  color: var(--charcoal);
}

.btn-small {
  min-height: 42px;
  padding: 0.78rem 1.05rem;
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(200, 160, 77, 0.18);
}

.consultation-cta {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: #fff;
  box-shadow: 0 16px 34px rgba(34, 34, 34, 0.14);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    background-color 200ms ease,
    border-color 200ms ease,
    color 200ms ease;
}

.consultation-cta:hover,
.consultation-cta:focus-visible,
.consultation-cta:active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 16px 34px rgba(200, 160, 77, 0.2);
}

.consultation-cta:active {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 126px);
  overflow: hidden;
  padding: 84px 0 72px;
  background:
    radial-gradient(circle at 14% 22%, rgba(255, 255, 255, 0.92), transparent 28rem),
    linear-gradient(115deg, #F8F5F1 0%, #F8F5F1 42%, #EFE9E1 100%);
}

.hero::after {
  content: none;
}

.hero-image {
  display: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1fr);
  align-items: center;
  gap: 0;
}

.hero-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
  max-width: 690px;
  padding: 52px 68px 52px 0;
  animation: heroTextIn 900ms ease both;
}

.hero-copy::before {
  display: block;
  width: 74px;
  height: 1px;
  margin-bottom: 22px;
  background: var(--gold);
  content: "";
}

.hero-label {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Cormorant Garamond", Cormorant, Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

h1 {
  max-width: 670px;
  margin-bottom: 28px;
  color: var(--charcoal);
  font-size: clamp(4rem, 7.2vw, 7.6rem);
  line-height: 0.9;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.45rem, 4.4vw, 4.7rem);
}

h3 {
  color: var(--charcoal);
  font-size: 1.02rem;
  line-height: 1.35;
}

p {
  color: var(--grey);
}

.hero-text {
  max-width: 560px;
  margin-bottom: 32px;
  color: var(--grey);
  font-size: 1.08rem;
  line-height: 1.85;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero .button-row {
  margin-bottom: 22px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 650;
}

.hero-trust span {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.hero-card {
  position: relative;
  z-index: 1;
  width: min(58vw, 690px);
  margin: 0 0 0 -58px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 28px 76px rgba(55, 45, 34, 0.12);
  animation: heroImageIn 1100ms 120ms ease both;
}

.hero-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 42%;
  background: linear-gradient(90deg, #F8F5F1 0%, rgba(248, 245, 241, 0.78) 34%, rgba(248, 245, 241, 0) 100%);
  content: "";
  pointer-events: none;
}

.hero-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248, 245, 241, 0.025), rgba(200, 160, 77, 0.045));
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.craft-image,
.craft-comparison {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(232, 225, 216, 0.9);
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.craft-comparison {
  --position: 50%;
}

.comparison-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ivory);
  user-select: none;
}

.comparison-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.comparison-after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 var(--position));
  will-change: clip-path;
}

.comparison-label {
  position: absolute;
  top: 20px;
  z-index: 3;
  padding: 8px 12px;
  border: 1px solid rgba(232, 225, 216, 0.78);
  border-radius: 999px;
  background: rgba(248, 245, 241, 0.88);
  color: var(--charcoal);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.comparison-label--before {
  left: 20px;
}

.comparison-label--after {
  right: 20px;
}

.comparison-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  touch-action: pan-y;
}

.comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 4;
  width: 1px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 0 1px rgba(200, 160, 77, 0.32);
  transform: translateX(-50%);
  pointer-events: none;
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(200, 160, 77, 0.72);
  border-radius: 50%;
  background: rgba(248, 245, 241, 0.96);
  box-shadow: 0 8px 24px rgba(55, 45, 34, 0.14);
  transform: translate(-50%, -50%);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.comparison-handle i {
  width: 7px;
  height: 7px;
  border-bottom: 1.5px solid var(--gold);
  border-left: 1.5px solid var(--gold);
  transform: rotate(45deg);
}

.comparison-handle i + i {
  transform: rotate(225deg);
}

.comparison-range:focus-visible + .comparison-divider .comparison-handle {
  outline: 3px solid rgba(200, 160, 77, 0.35);
  outline-offset: 4px;
}

.comparison-range:active + .comparison-divider .comparison-handle {
  box-shadow: 0 10px 28px rgba(55, 45, 34, 0.18);
  transform: translate(-50%, -50%) scale(1.04);
}

.hero-card img {
  width: 100%;
  height: min(72vh, 720px);
  min-height: 610px;
  object-fit: cover;
  object-position: center 50%;
  transition: transform 900ms ease;
}

.craft-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center 42%;
  transition: transform 700ms ease;
}

.craft-image.craft-image--results img {
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.craft-image figcaption,
.craft-comparison figcaption {
  display: flex;
  align-items: center;
  min-height: 70px;
  gap: 15px;
  padding: 0 26px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--charcoal);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.craft-image figcaption span,
.craft-comparison figcaption span {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0;
}

.craft-image-frame .comparison-media {
  border-radius: 24px;
}

.about-page .about-craft .comparison-media {
  background: var(--ivory);
}

.craft-image-frame .craft-detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-card:hover img {
  transform: scale(1.025);
}

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

@keyframes heroTextIn {
  from {
    transform: translateY(18px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes heroImageIn {
  from {
    transform: translateX(24px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.trust {
  padding-top: 28px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--border);
  box-shadow: var(--shadow-soft);
}

.trust-item {
  min-height: 188px;
  padding: 30px 26px;
  background: rgba(255, 255, 255, 0.78);
}

.trust-item span,
.process-grid span {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
}

.trust-item h2 {
  margin: 14px 0 8px;
  font-family: Inter, Manrope, Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-item p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px auto 0;
  font-size: 1.02rem;
}

.treatments,
.results,
.reviews,
.faq {
  background: var(--sand);
}

.treatment-grid,
.review-grid,
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.treatment-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.treatment-card,
.result-card,
.review-card,
.faq-list details,
.process-grid li {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.treatment-card {
  display: flex;
  flex-direction: column;
  min-height: 294px;
  padding: 36px;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.treatment-image {
  width: 100%;
  height: clamp(210px, 22vw, 250px);
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--ivory);
}

.treatment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.home-page .treatment-card .treatment-image img {
  transition: none;
}

.treatment-image--hairline img {
  object-position: center 32%;
}

.treatment-image--density img {
  object-position: center 44%;
}

.treatment-image--scar img {
  object-position: center 42%;
}

.treatment-image--alopecia img {
  object-position: center 38%;
}

.treatment-image--women img {
  object-position: center 40%;
}

.home-page .treatment-grid > .treatment-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: calc((100% - 26px) / 2);
  justify-self: center;
}

@media (min-width: 1024px) {
  .home-page .treatment-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
  }

  .home-page .treatment-grid > .treatment-card {
    grid-column: span 2;
    padding: 30px;
  }

  .home-page .treatment-grid > .treatment-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .home-page .treatment-grid > .treatment-card:last-child:nth-child(odd) {
    grid-column: 4 / span 2;
    width: 100%;
    justify-self: stretch;
  }

  .home-page .treatment-card .treatment-image {
    height: clamp(190px, 18vw, 220px);
  }
}

.treatment-card h3 {
  margin-top: 24px;
}

.line-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  border: 1px solid rgba(200, 160, 77, 0.25);
  border-radius: 999px;
  background: #fbf7f0;
  color: var(--gold);
}

.line-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.treatment-card h3,
.result-card h3,
.process-grid h3 {
  margin-bottom: 12px;
  font-size: 0.98rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.treatment-card p {
  margin-bottom: 24px;
}

.text-link {
  position: relative;
  width: fit-content;
  margin-top: auto;
  padding-bottom: 4px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link::after {
  content: "  ->";
}

.treatment-card .text-link::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .treatment-card:hover {
    border-color: rgba(200, 160, 77, 0.68);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
  }

  .treatment-card:hover .text-link::before {
    transform: scaleX(1);
  }

}

.craft-grid,
.faq-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 72px;
}

@media (min-width: 769px) {
  .home-page .craft-comparison {
    width: 100%;
    max-width: 480px;
  }
}

@media (min-width: 769px) and (max-width: 960px) {
  .home-page .craft-comparison {
    justify-self: center;
  }
}

@media (min-width: 961px) {
  .home-page .craft-grid {
    grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
    gap: clamp(72px, 8vw, 110px);
  }

  .home-page .craft-comparison {
    justify-self: start;
  }
}

.craft-image img {
  height: 540px;
}

.craft-copy {
  max-width: 540px;
  padding: 18px 0;
}

.craft-copy p {
  margin-bottom: 24px;
  font-size: 1.04rem;
}

.craft-copy .craft-detail {
  margin: 4px 0 34px;
  padding-left: 22px;
  border-left: 1px solid rgba(200, 160, 77, 0.65);
}

.craft-title {
  max-width: 100%;
  margin-bottom: 28px;
}

.hero-grid > *,
.craft-grid > *,
.faq-grid > *,
.footer-grid > *,
.meet-panel > * {
  min-width: 0;
}

.results-heading {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.results.section {
  padding: 88px 0;
}

.results .section-heading {
  margin-bottom: 36px;
}

.results-intro {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--grey);
  line-height: 1.75;
}

.result-card {
  --position: 50%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  border-radius: 20px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.results .gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.result-comparison .comparison-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  margin: 0;
  border-radius: 20px;
  background: var(--ivory);
}

.result-card.result-comparison .comparison-media > img,
.portfolio-comparison .comparison-media > img {
  object-position: center var(--result-y, 50%);
}

.result-comparison-layer {
  position: absolute;
  inset: 0;
  background-image: var(--result-image);
  background-repeat: no-repeat;
  background-size: 200% auto;
  background-position-y: var(--result-y, 12%);
  pointer-events: none;
}

.result-comparison-before {
  background-position-x: left;
}

.result-comparison-after {
  background-position-x: right;
}

.result-comparison .comparison-label {
  top: 12px;
  padding: 6px 8px;
  font-size: 0.54rem;
  letter-spacing: 0.09em;
}

.result-comparison .comparison-label--before {
  left: 12px;
}

.result-comparison .comparison-label--after {
  right: 12px;
}

.result-comparison .comparison-handle {
  width: 38px;
  height: 38px;
  box-shadow: 0 5px 16px rgba(55, 45, 34, 0.13);
}

.result-comparison .comparison-handle i {
  width: 6px;
  height: 6px;
}

@media (hover: hover) and (pointer: fine) {
  .result-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 160, 77, 0.48);
    box-shadow: 0 18px 40px rgba(70, 55, 35, 0.1);
  }

}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.results .centered-action {
  margin-top: 30px;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.experience-heading {
  max-width: 960px;
}

.experience-heading p:not(.eyebrow) {
  max-width: 700px;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--gold), var(--border));
}

.process-grid li {
  position: relative;
  min-height: 0;
  padding: 0 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.process-grid li:nth-child(2) {
  transition-delay: 80ms;
}

.process-grid li:nth-child(3) {
  transition-delay: 160ms;
}

.process-grid li:nth-child(4) {
  transition-delay: 240ms;
}

.process-grid span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 24px;
  border: 1px solid rgba(200, 160, 77, 0.68);
  border-radius: 50%;
  background: var(--ivory);
  font-family: Inter, Manrope, Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

.process-grid h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: none;
}

.process-grid p {
  max-width: 30ch;
  margin-bottom: 0;
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.65;
}

@media (max-width: 1080px) and (min-width: 769px) {
  .experience .process-grid {
    row-gap: 48px;
  }

  .experience .process-grid::before {
    display: none;
  }
}

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 350px;
  margin: 0;
  padding: 34px 32px 30px;
  background: rgba(255, 255, 255, 0.86);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.reviews-heading {
  max-width: 800px;
}

.review-card:nth-child(2) {
  transition-delay: 90ms;
}

.review-card:nth-child(3) {
  transition-delay: 180ms;
}

.review-quote {
  display: block;
  height: 34px;
  margin-bottom: 16px;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.5rem;
  line-height: 1;
}

.review-card blockquote {
  margin: 0;
  color: var(--grey);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.28rem, 1.7vw, 1.48rem);
  line-height: 1.38;
}

.review-card figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 26px;
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.review-card figcaption::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

@media (hover: hover) and (pointer: fine) {
  .review-card:hover {
    transform: translateY(-3px);
    border-color: rgba(200, 160, 77, 0.38);
    box-shadow: 0 16px 36px rgba(70, 55, 35, 0.08);
  }
}

.consultation-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.meet-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
  align-items: center;
  gap: clamp(56px, 7vw, 104px);
}

.meet-copy h2 {
  max-width: 680px;
  margin-bottom: 28px;
}

.meet-copy > p:not(.eyebrow):not(.meet-signature) {
  max-width: 62ch;
  margin-bottom: 18px;
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.75;
}

.meet-copy .meet-signature {
  margin: 28px 0 30px;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
}

.meet-media {
  margin: 0;
}

.meet-media img {
  width: 100%;
  height: clamp(520px, 40vw, 600px);
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border);
  border-radius: 24px;
  object-fit: cover;
  object-position: center 28%;
  box-shadow: var(--shadow-soft);
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .meet-media:hover img {
    transform: scale(1.012);
  }
}

.faq-grid {
  align-items: start;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1fr);
  gap: clamp(64px, 8vw, 116px);
}

.faq-copy {
  position: sticky;
  top: 150px;
}

.faq-copy h2 {
  margin-bottom: 24px;
}

.faq-copy > p:not(.eyebrow) {
  max-width: 46ch;
  color: var(--grey);
  line-height: 1.75;
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.faq-list details {
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 20px 48px 20px 0;
  cursor: pointer;
  color: var(--charcoal);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.42rem;
  font-weight: 600;
  line-height: 1.2;
  list-style: none;
  transition: color 180ms ease;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(200, 160, 77, 0.5);
  border-radius: 50%;
  color: var(--gold);
  font-family: Inter, Manrope, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 220ms ease, background-color 220ms ease;
}

.faq-list details[open] summary {
  color: var(--gold);
}

.faq-list details[open] summary::after {
  background: rgba(200, 160, 77, 0.08);
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 280ms ease, opacity 220ms ease;
}

.faq-list details:not([open]) > .faq-answer {
  display: grid;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-list details[open] .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-list p {
  margin: 0;
  padding: 0 48px 24px 0;
  color: var(--grey);
  font-size: 0.94rem;
  line-height: 1.7;
}

.faq-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.consultation {
  padding: 96px 0;
  background: var(--ivory);
}

.consultation-panel {
  position: relative;
  overflow: hidden;
  max-width: 1080px;
  padding: 82px 68px 78px;
  border-radius: 28px;
  text-align: center;
}

.consultation-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 88px;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
}

.consultation-panel h2 {
  max-width: 760px;
  margin: 0 auto;
}

.consultation-panel p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px auto 34px;
  color: var(--grey);
  font-size: 1.06rem;
  line-height: 1.75;
}

.consultation-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.consultation-link {
  position: relative;
  padding: 8px 0 6px;
  color: var(--charcoal);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.consultation-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 220ms ease;
}

.consultation-link:hover::after,
.consultation-link:focus-visible::after {
  transform: scaleX(1);
}

.consultation-panel .btn-primary:hover,
.consultation-panel .btn-primary:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 16px 34px rgba(200, 160, 77, 0.2);
}

.site-footer {
  position: relative;
  padding: 72px 0 30px;
  border-top: 1px solid var(--border);
  background: var(--sand);
}

.site-footer::before {
  position: absolute;
  top: -1px;
  left: 50%;
  width: 76px;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: translateX(-50%);
}

.footer-grid {
  grid-template-columns: minmax(280px, 1.35fr) minmax(120px, 0.58fr) minmax(190px, 0.82fr) minmax(250px, 1fr);
  align-items: start;
  gap: clamp(34px, 4vw, 68px);
}

.footer-brand img {
  width: 236px;
  max-width: 236px;
  height: auto;
}

.footer-brand p {
  max-width: 390px;
  margin: 20px 0 0;
  font-size: 0.96rem;
  line-height: 1.75;
}

.site-footer h2 {
  margin-bottom: 18px;
  font-family: Inter, Manrope, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  color: var(--grey);
  list-style: none;
}

.footer-links a,
.footer-contact a,
.footer-socials a,
.footer-legal a {
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact address a:hover,
.footer-contact address a:focus-visible,
.footer-socials a:hover,
.footer-socials a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--gold);
}

.footer-contact address {
  display: grid;
  gap: 13px;
  color: var(--grey);
  font-style: normal;
}

.footer-contact address p {
  display: grid;
  gap: 3px;
  margin: 0;
}

.footer-contact address span {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 24px;
}

.footer-socials a {
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
}

.footer-cta {
  min-height: 46px;
  margin-top: 24px;
  padding: 0.9rem 1.1rem;
  font-size: 0.68rem;
}

.footer-cta:hover,
.footer-cta:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--charcoal);
}

.footer-locations {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(2, minmax(180px, 1fr));
  align-items: start;
  gap: clamp(34px, 4vw, 68px);
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.footer-locations > h2 {
  margin: 2px 0 0;
}

.studio-address {
  padding-left: 18px;
  border-left: 1px solid rgba(200, 160, 77, 0.48);
  color: var(--grey);
  font-style: normal;
}

.studio-address h3 {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.studio-coming-soon {
  display: block;
  margin-top: 5px;
  color: var(--grey);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.studio-address p {
  margin: 0;
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.78rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: var(--grey);
  font-size: 0.78rem;
}

.footer-legal a,
.footer-legal button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.footer-legal button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: color 180ms ease;
}

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

.reveal {
  transform: translateY(24px);
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

:focus-visible {
  outline: 3px solid rgba(200, 160, 77, 0.52);
  outline-offset: 3px;
}

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

  .reveal {
    transform: none;
    opacity: 1;
  }
}

@media (min-width: 769px) {
  .section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .trust.section {
    padding-top: 28px;
    padding-bottom: 64px;
  }

  .results.section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .consultation.section {
    padding-top: 76px;
    padding-bottom: 64px;
  }

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

  .section-heading p:not(.eyebrow) {
    margin-top: 18px;
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  .craft-title,
  .meet-copy h2,
  .faq-copy h2 {
    margin-bottom: 24px;
  }

  .craft-copy .craft-detail {
    margin-bottom: 30px;
  }

  .faq-action {
    margin-top: 28px;
  }

  .consultation-panel {
    padding: 64px 56px 60px;
  }

  .site-footer {
    padding-top: 64px;
    padding-bottom: 28px;
  }
}

@media (max-width: 1080px) {
  .nav-panel,
  .nav-links {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  }

  .hero-copy {
    padding-right: 42px;
  }

  .hero-card {
    width: min(55vw, 600px);
    margin-left: -34px;
  }
}

@media (min-width: 1024px) {
  .home-page .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
    gap: clamp(36px, 4.5vw, 68px);
  }

  .home-page .hero-copy {
    padding-right: clamp(24px, 3vw, 48px);
  }

  .home-page .hero-card {
    width: min(45vw, 590px);
    max-width: 590px;
    margin-left: 0;
    justify-self: end;
    border-radius: 24px;
    background: transparent;
    box-shadow: none;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 84%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 0%, #000 84%, transparent 100%);
  }

  .home-page .hero-card::after {
    border: 0;
  }

  .home-page .hero-card img {
    height: min(64vh, 620px);
    min-height: 520px;
  }
}

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

  .nav-panel {
    position: absolute;
    left: 22px;
    right: 22px;
    top: calc(100% + 10px);
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(248, 245, 241, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-panel.open {
    display: flex;
  }

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

  .craft-grid,
  .faq-grid,
  .meet-panel {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 56px;
  }

  .footer-locations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 56px;
  }

  .footer-locations > h2 {
    grid-column: 1 / -1;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.9fr);
  }

  .hero-copy {
    padding-right: 24px;
  }

  .hero-card {
    width: auto;
    margin-left: -28px;
  }

  .hero-card img {
    height: 560px;
    min-height: 560px;
  }

  .craft-image img {
    height: 500px;
  }

  .trust-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .treatment-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .section {
    padding: 76px 0;
  }

  .announcement-inner {
    flex-direction: column;
    gap: 2px;
    min-height: 0;
    padding: 6px 0;
    font-size: 0.68rem;
    line-height: 1.45;
  }

  .nav {
    min-height: 96px;
  }

  .brand img {
    width: 164px;
    max-width: 164px;
    height: auto;
  }

  .site-header.is-scrolled .nav {
    min-height: 86px;
  }

  .site-header.is-scrolled .brand img {
    /* The transparent logo artwork has generous internal canvas space. */
    width: 144px;
    max-width: 144px;
    height: auto;
  }

  .menu-toggle {
    width: 52px;
    height: 52px;
    transition: width 220ms ease, height 220ms ease, background-color 180ms ease;
  }

  .site-header.is-scrolled .menu-toggle {
    width: 48px;
    height: 48px;
  }

  .menu-toggle span {
    width: 19px;
    margin: 5px auto;
  }

  .hero {
    display: flex;
    align-items: flex-start;
    position: relative;
    min-height: auto;
    padding: 38px 0 34px;
    background: #F8F5F1;
    overflow: hidden;
  }

  .hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    opacity: 1;
    pointer-events: none;
  }

  .hero::after {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(248, 245, 241, 0.98) 0%, rgba(248, 245, 241, 0.92) 36%, rgba(248, 245, 241, 0.68) 70%, rgba(248, 245, 241, 0.38) 100%),
      linear-gradient(180deg, rgba(248, 245, 241, 0.6) 0%, rgba(248, 245, 241, 0.22) 45%, rgba(248, 245, 241, 0.78) 100%);
    content: "";
    z-index: 1;
    pointer-events: none;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 32% 58%;
    opacity: 0.52;
  }

  .hero-grid {
    position: relative;
    z-index: 2;
    display: block;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 0;
  }

  .hero-copy::before {
    width: 54px;
    margin-bottom: 12px;
  }

  .hero-label {
    margin: 0 0 12px;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
  }

  .hero-card {
    display: none;
  }

  h1 {
    margin-bottom: 22px;
    font-size: clamp(3.45rem, 15.6vw, 4.8rem);
    line-height: 0.91;
  }

  h2 {
    font-size: clamp(2.3rem, 11vw, 3.35rem);
  }

  h1,
  h2 {
    overflow-wrap: break-word;
    word-break: normal;
  }

  .hero-text {
    max-width: 34rem;
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.75;
  }

  .button-row,
  .btn {
    width: 100%;
  }

  .button-row {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }

  .hero-trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    font-size: 0.88rem;
  }

  .craft {
    overflow-x: hidden;
  }

  .craft-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 28px;
  }

  .craft-copy {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .craft-title {
    margin-bottom: 22px;
    font-size: clamp(2.05rem, 8.8vw, 3.2rem);
    line-height: 1.02;
    letter-spacing: 0;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .craft-image,
  .craft-comparison {
    width: 100%;
    max-width: 100%;
    margin-top: 4px;
    border-radius: 24px;
  }

  .craft-image img {
    height: clamp(280px, 68vw, 390px);
    object-fit: cover;
  }

  .craft-image figcaption,
  .craft-comparison figcaption {
    min-height: 58px;
    padding: 0 20px;
    font-size: 0.68rem;
  }

  .comparison-label {
    top: 14px;
    padding: 7px 10px;
    font-size: 0.62rem;
  }

  .comparison-label--before {
    left: 14px;
  }

  .comparison-label--after {
    right: 14px;
  }

  .comparison-handle {
    width: 44px;
    height: 44px;
  }

  .craft-copy p {
    margin-bottom: 19px;
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .craft-copy .craft-detail {
    margin: 2px 0 28px;
    padding-left: 17px;
  }

  .treatment-grid,
  .review-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .trust {
    margin-top: 0;
    padding-top: 24px;
    padding-bottom: 48px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-radius: 20px;
  }

  .trust-item {
    min-height: auto;
    padding: 20px;
  }

  .trust-item span {
    display: block;
    margin-bottom: 12px;
    font-size: 1.35rem;
    line-height: 1;
  }

  .trust-item h2 {
    margin: 0 0 8px;
    font-size: 0.8rem;
    letter-spacing: 0.07em;
    line-height: 1.35;
  }

  .trust-item p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .treatment-card,
  .review-card,
  .process-grid li,
  .consultation-panel {
    padding: 28px 22px;
  }

  .treatment-grid {
    gap: 14px;
  }

  .home-page .treatment-grid > .treatment-card:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
  }

  .treatment-card {
    display: grid;
    grid-template-areas:
      "image title link"
      "image description link";
    grid-template-columns: 76px minmax(0, 1fr) 24px;
    gap: 5px 14px;
    align-items: center;
    min-height: auto;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(55, 45, 34, 0.045);
  }

  .treatment-card .treatment-image {
    grid-area: image;
    width: 76px;
    height: 76px;
    border-radius: 18px;
  }

  .treatment-card .treatment-image--hairline img {
    transform: scale(1.75);
    transform-origin: center 24%;
  }

  .treatment-card h3 {
    grid-area: title;
    margin: 0;
    font-size: 0.82rem;
    letter-spacing: 0.07em;
    line-height: 1.35;
  }

  .treatment-card p {
    grid-area: description;
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .treatment-card .text-link {
    grid-area: link;
    align-self: center;
    width: 24px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: var(--gold);
    font-size: 0;
    line-height: 1;
    white-space: nowrap;
  }

  .treatment-card .text-link::after {
    content: "\2192";
    font-size: 1.05rem;
  }

  .treatment-card .text-link::before {
    display: none;
  }

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

  .results.section {
    padding: 60px 0 52px;
  }

  .results .section-heading {
    margin-bottom: 28px;
  }

  .result-card {
    border-radius: 18px;
  }

  .result-comparison .comparison-media {
    aspect-ratio: 1.12 / 1;
    border-radius: 18px;
  }

  .result-comparison .comparison-label {
    top: 8px;
    padding: 5px 6px;
    font-size: 0.48rem;
  }

  .result-comparison .comparison-label--before {
    left: 8px;
  }

  .result-comparison .comparison-label--after {
    right: 8px;
  }

  .result-comparison .comparison-handle {
    width: 36px;
    height: 36px;
  }

  .results .centered-action {
    margin-top: 24px;
  }

  .experience.section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

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

  .experience-heading h2 {
    font-size: clamp(2.45rem, 11vw, 3.4rem);
    line-height: 0.98;
  }

  .experience .process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .experience .process-grid::before {
    top: 21px;
    right: auto;
    bottom: 21px;
    left: 20px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, var(--gold), var(--border));
  }

  .experience .process-grid li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 18px;
    min-height: 0;
    padding: 0 0 30px;
    text-align: left;
  }

  .experience .process-grid li:last-child {
    padding-bottom: 0;
  }

  .experience .process-grid span {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .experience .process-grid h3 {
    margin: 3px 0 7px;
    font-size: 1.65rem;
  }

  .experience .process-grid p {
    grid-column: 2;
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .reviews .review-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    gap: 18px;
    width: 100%;
    overflow: visible;
    padding: 0;
  }

  .reviews.section {
    padding-top: 58px;
    padding-bottom: 64px;
  }

  .reviews .section-heading {
    margin-bottom: 36px;
  }

  .reviews .review-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 0;
    padding: 24px;
    border-radius: 20px;
  }

  .reviews .review-card blockquote {
    font-size: 1.22rem;
    line-height: 1.4;
  }

  .reviews .review-quote {
    height: 28px;
    margin-bottom: 12px;
    font-size: 2.1rem;
  }

  .meet-panel {
    gap: 38px;
  }

  .meet.section {
    padding-bottom: 44px;
  }

  .meet-copy h2 {
    margin-bottom: 22px;
    font-size: clamp(2.45rem, 11vw, 3.35rem);
    line-height: 0.98;
  }

  .meet-copy > p:not(.eyebrow):not(.meet-signature) {
    margin-bottom: 15px;
    font-size: 0.94rem;
    line-height: 1.66;
  }

  .meet-copy .meet-signature {
    margin: 22px 0 24px;
    font-size: 1.12rem;
  }

  .meet-media img {
    height: min(72vw, 290px);
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    object-position: center 44%;
  }

  .faq-copy {
    position: static;
  }

  .faq-copy h2 {
    margin-bottom: 14px;
    font-size: clamp(2.4rem, 10vw, 3.6rem);
    line-height: 0.95;
  }

  .faq-copy .eyebrow {
    margin-bottom: 12px;
  }

  .faq-copy > p:not(.eyebrow) {
    line-height: 1.6;
  }

  .faq-grid {
    gap: 30px;
  }

  .faq.section {
    padding-top: 48px;
    padding-bottom: 50px;
  }

  .faq-list summary {
    min-height: 62px;
    padding: 15px 42px 15px 0;
    font-size: 1.12rem;
  }

  .faq-list summary::after {
    right: 2px;
    width: 28px;
    height: 28px;
  }

  .faq-list p {
    padding: 0 38px 20px 0;
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .faq-action {
    margin-top: 24px;
  }

  .consultation {
    padding: 46px 0 44px;
  }

  .consultation .consultation-panel {
    padding: 42px 22px 40px;
    border-radius: 24px;
  }

  .consultation-panel h2 {
    max-width: 13ch;
    font-size: clamp(2.45rem, 10.5vw, 3.35rem);
    line-height: 0.96;
  }

  .consultation-panel p:not(.eyebrow) {
    margin: 18px auto 28px;
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .consultation-actions {
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }

  .consultation-actions .btn-primary {
    width: 100%;
    min-height: 54px;
  }

  .results-intro {
    margin-top: 18px;
    line-height: 1.65;
  }

  .site-footer {
    padding: 48px 0 24px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
  }

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

  .footer-brand img {
    width: 236px;
    max-width: min(236px, 100%);
  }

  .footer-brand p {
    margin-top: 16px;
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .site-footer h2 {
    margin-bottom: 12px;
  }

  .footer-links {
    gap: 0;
  }

  .footer-links a,
  .footer-contact address a,
  .footer-socials a,
  .footer-legal a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
  }

  .footer-contact address {
    gap: 8px;
  }

  .footer-contact address p {
    gap: 0;
  }

  .footer-cta {
    width: 100%;
    min-height: 52px;
    margin-top: 22px;
  }

  .footer-socials {
    margin-top: 18px;
  }

  .footer-locations {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
    padding-top: 24px;
  }

  .footer-locations > h2 {
    grid-column: auto;
    margin-bottom: 2px;
  }

  .studio-address {
    padding-left: 16px;
  }

  .studio-address h3 {
    margin-bottom: 6px;
  }

  .studio-address p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
    padding-top: 20px;
  }

  .footer-legal {
    gap: 2px 22px;
  }

}

@media (max-width: 380px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(3rem, 14.8vw, 3.4rem);
    line-height: 0.92;
  }

  .craft-title {
    font-size: clamp(1.9rem, 8.4vw, 2.05rem);
  }

  .treatment-card {
    grid-template-columns: 60px minmax(0, 1fr) 20px;
    gap: 4px 10px;
    padding: 16px;
  }

  .treatment-card .treatment-image {
    width: 60px;
    height: 60px;
    border-radius: 14px;
  }

  .treatment-card h3 {
    font-size: 0.78rem;
    letter-spacing: 0.05em;
  }
}

/* Refined global typography scale */
body {
  font-size: 0.97rem;
}

.nav-links a {
  font-size: 0.69rem;
}

.btn {
  min-height: 48px;
  padding: 0.9rem 1.28rem;
  font-size: 0.7rem;
}

.btn-small {
  min-height: 40px;
  padding: 0.74rem 1rem;
  font-size: 0.67rem;
}

.eyebrow,
.hero-label {
  font-size: 0.69rem;
}

.hero h1 {
  font-size: clamp(3.6rem, 6.45vw, 6.55rem);
}

.hero-text {
  font-size: 1.02rem;
}

.about-hero-copy h1,
.treatments-hero-copy h1 {
  font-size: clamp(3.55rem, 5.35vw, 5.1rem);
}

.results-hero-copy h1 {
  font-size: clamp(3.55rem, 5.3vw, 5.55rem);
}

.faq-page-hero h1 {
  font-size: clamp(3.8rem, 6.35vw, 6.2rem);
}

.contact-hero-copy h1 {
  font-size: clamp(3.85rem, 6.15vw, 6.15rem);
}

.about-hero-copy > p:not(.eyebrow),
.treatments-hero-copy > p:not(.eyebrow),
.contact-hero-copy > p:not(.eyebrow),
.results-hero-copy > p:not(.eyebrow),
.faq-page-hero-inner > p:not(.eyebrow) {
  font-size: 0.98rem;
}

.section-heading h2,
.craft-title,
.experience-heading h2,
.reviews-heading h2,
.meet-copy h2,
.faq-copy h2,
.consultation-panel h2 {
  font-size: clamp(2.2rem, 3.85vw, 4.15rem);
}

.about-story-heading h2,
.training-copy h2,
.care-copy h2,
.smp-method-copy h2,
.treatment-detail-copy h2,
.treatments-intro h2,
.treatment-guidance-panel h2,
.results-introduction h2,
.results-guidance-copy h2,
.faq-page-intro h2,
.faq-library-heading h2,
.faq-pricing-panel h2,
.contact-section-heading h2,
.centered-section-heading h2,
.enquiry-copy h2,
.direct-contact-panel h2 {
  font-size: clamp(2.25rem, 3.8vw, 3.85rem);
}

.treatment-card h3,
.overview-treatment-content h3 {
  font-size: clamp(1.45rem, 2.45vw, 2.3rem);
}

.method-points h3,
.maintenance-points h3,
.best-for h3,
.reassurance-card h3 {
  font-size: 1.45rem;
}

.review-card blockquote,
.testimonial-card blockquote {
  font-size: 0.96rem;
}

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

.faq-list p,
.treatment-detail-copy > p:not(.eyebrow),
.about-story-copy p,
.contact-intro-copy,
.centered-section-heading > p:not(.eyebrow) {
  font-size: 0.94rem;
}

.site-footer {
  font-size: 0.94rem;
}

.site-footer h2 {
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  body {
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 13.2vw, 4.05rem);
    line-height: 0.93;
  }

  .about-hero-copy h1,
  .treatments-hero-copy h1,
  .results-hero-copy h1,
  .faq-page-hero h1,
  .contact-hero-copy h1 {
    font-size: clamp(2.75rem, 11.7vw, 3.65rem);
    line-height: 0.95;
  }

  .section-heading h2,
  .craft-title,
  .experience-heading h2,
  .reviews-heading h2,
  .meet-copy h2,
  .faq-copy h2,
  .consultation-panel h2,
  .about-story-heading h2,
  .training-copy h2,
  .care-copy h2,
  .smp-method-copy h2,
  .treatment-detail-copy h2,
  .treatments-intro h2,
  .treatment-guidance-panel h2,
  .results-introduction h2,
  .results-guidance-copy h2,
  .faq-page-intro h2,
  .faq-library-heading h2,
  .faq-pricing-panel h2,
  .contact-section-heading h2,
  .centered-section-heading h2,
  .enquiry-copy h2,
  .direct-contact-panel h2 {
    font-size: clamp(2.05rem, 8.8vw, 2.85rem);
    line-height: 1;
  }

  .hero-text,
  .about-hero-copy > p:not(.eyebrow),
  .treatments-hero-copy > p:not(.eyebrow),
  .results-hero-copy > p:not(.eyebrow),
  .faq-page-hero-inner > p:not(.eyebrow),
  .contact-hero-copy > p:not(.eyebrow) {
    font-size: 0.92rem;
  }

  .treatment-card h3,
  .overview-treatment-content h3,
  .method-points h3,
  .maintenance-points h3,
  .reassurance-card h3 {
    font-size: 1.4rem;
  }

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

  .faq-list p,
  .treatment-detail-copy > p:not(.eyebrow),
  .about-story-copy p,
  .contact-intro-copy,
  .centered-section-heading > p:not(.eyebrow) {
    font-size: 0.9rem;
  }

  .btn {
    min-height: 48px;
    padding: 0.88rem 1.15rem;
    font-size: 0.68rem;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 3.25rem);
  }

  .about-hero-copy h1,
  .treatments-hero-copy h1,
  .results-hero-copy h1,
  .faq-page-hero h1,
  .contact-hero-copy h1 {
    font-size: clamp(2.5rem, 11.6vw, 3rem);
  }

  .section-heading h2,
  .craft-title,
  .experience-heading h2,
  .reviews-heading h2,
  .meet-copy h2,
  .faq-copy h2,
  .consultation-panel h2,
  .about-story-heading h2,
  .training-copy h2,
  .care-copy h2,
  .smp-method-copy h2,
  .treatment-detail-copy h2,
  .treatments-intro h2,
  .treatment-guidance-panel h2,
  .results-introduction h2,
  .results-guidance-copy h2,
  .faq-page-intro h2,
  .faq-library-heading h2,
  .faq-pricing-panel h2,
  .contact-section-heading h2,
  .centered-section-heading h2,
  .enquiry-copy h2,
  .direct-contact-panel h2 {
    font-size: clamp(1.9rem, 8.6vw, 2.45rem);
  }
}

/* Contact / free consultation page */
.contact-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 8vw, 108px) 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.94), transparent 30rem),
    linear-gradient(120deg, var(--ivory) 0%, var(--ivory) 55%, var(--sand) 100%);
}

.contact-hero-grid,
.enquiry-layout,
.contact-section-heading,
.reassurance-grid,
.studio-card-grid {
  display: grid;
}

.contact-hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(400px, 0.82fr);
  align-items: center;
  gap: clamp(52px, 7vw, 108px);
}

.contact-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.contact-hero-copy h1 {
  max-width: 690px;
  margin: 16px 0 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.4rem, 7vw, 7rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.88;
}

.contact-hero-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 0;
  color: var(--grey);
  font-size: 1.04rem;
  line-height: 1.8;
}

.contact-hero-copy .button-row {
  margin-top: 34px;
}

.contact-hero-media {
  position: relative;
  margin: 0;
}

.contact-hero-media::before {
  position: absolute;
  z-index: -1;
  top: -18px;
  right: -18px;
  width: 46%;
  height: 46%;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  border-radius: 0 24px 0 0;
  content: "";
}

.contact-hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  object-fit: cover;
  object-position: center 22%;
  box-shadow: var(--shadow);
}

.contact-hero-media figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  color: var(--grey);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-hero-media figcaption span {
  color: var(--gold);
}

.contact-expect,
.studio-section,
.contact-faq {
  background: var(--sand);
}

.contact-section-heading {
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.72fr);
  column-gap: clamp(54px, 8vw, 120px);
  align-items: start;
}

.contact-section-heading .eyebrow {
  grid-column: 1 / -1;
}

.contact-section-heading h2,
.centered-section-heading h2,
.enquiry-copy h2,
.direct-contact-panel h2 {
  margin: 12px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.4rem, 5.2vw, 5rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.contact-intro-copy {
  padding-top: 16px;
  color: var(--grey);
}

.contact-intro-copy p {
  margin: 0;
}

.contact-intro-copy p + p {
  margin-top: 18px;
}

.reassurance-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.reassurance-card {
  min-height: 210px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  transition: transform 200ms ease, border-color 200ms ease;
}

.reassurance-card:hover {
  border-color: rgba(200, 160, 77, 0.55);
  transform: translateY(-4px);
}

.reassurance-card > span,
.studio-kicker {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.reassurance-card h3 {
  margin: 34px 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.78rem;
  font-weight: 600;
  line-height: 1.1;
}

.reassurance-card p {
  margin: 0;
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.65;
}

.enquiry-section {
  scroll-margin-top: 94px;
  background: var(--ivory);
}

.enquiry-layout {
  grid-template-columns: minmax(260px, 0.62fr) minmax(500px, 1.12fr);
  align-items: start;
  gap: clamp(52px, 8vw, 112px);
}

.enquiry-copy {
  position: sticky;
  top: 122px;
}

.enquiry-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--grey);
}

.enquiry-intro-mobile {
  display: none;
}

.enquiry-note {
  margin-top: 34px;
  padding: 22px 0 0 20px;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--gold);
}

.enquiry-note span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.enquiry-note p {
  margin: 7px 0 0;
  color: var(--grey);
  font-size: 0.88rem;
}

.consultation-form {
  position: relative;
  padding: clamp(30px, 4vw, 50px);
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 18px;
}

.form-field {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label,
.contact-method legend {
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.form-field label span {
  color: var(--grey);
  font-weight: 500;
}

.form-field .required-marker,
.contact-method .required-marker,
.consent-field .required-marker {
  margin-left: 0.12em;
  color: var(--gold);
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--border);
  border-radius: 12px;
  outline: 0;
  background: var(--ivory);
  color: var(--charcoal);
  padding: 0.9rem 1rem;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.photo-upload-field {
  gap: 10px;
}

.photo-upload-field input[type="file"] {
  min-height: 58px;
  overflow: hidden;
  padding: 7px;
  color: var(--grey);
  cursor: pointer;
}

.photo-upload-field input[type="file"]::file-selector-button {
  min-height: 42px;
  margin-right: 12px;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 0 16px;
  background: var(--sand);
  color: var(--charcoal);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 750;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.photo-upload-field input[type="file"]:hover::file-selector-button {
  border-color: rgba(200, 160, 77, 0.58);
  background: var(--ivory);
}

.form-helper,
.form-file-status,
.form-privacy {
  margin: 0;
  color: var(--grey);
  font-size: 0.82rem;
  line-height: 1.55;
}

.form-file-status {
  color: var(--charcoal);
}

.form-file-status.is-error {
  color: #9a3f35;
}

.photo-selection {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
}

.photo-selection-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.photo-selection-heading p {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 700;
}

.photo-selection-heading button,
.photo-selection-item button {
  min-height: 40px;
  border: 0;
  padding: 0 10px;
  background: transparent;
  color: var(--gold);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 750;
  cursor: pointer;
}

.photo-selection-heading button:hover,
.photo-selection-item button:hover {
  color: var(--charcoal);
}

.photo-selection-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.photo-selection-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.photo-selection-item img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
}

.photo-selection-details {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.photo-selection-details strong {
  overflow: hidden;
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.photo-selection-details small {
  color: var(--grey);
  font-size: 0.72rem;
}

.form-privacy {
  padding-left: 12px;
  border-left: 1px solid rgba(200, 160, 77, 0.5);
  font-size: 0.78rem;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(200, 160, 77, 0.14);
}

.contact-method {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-method legend {
  width: 100%;
  margin-bottom: 3px;
}

.contact-method label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  background: var(--ivory);
  cursor: pointer;
}

.contact-method input,
.consent-field input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--gold);
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--grey);
  font-size: 0.88rem;
  cursor: pointer;
}

.consent-field small {
  display: block;
  margin-top: 5px;
  color: var(--grey);
  font-size: 0.76rem;
  line-height: 1.5;
}

.marketing-consent-field {
  padding-top: 2px;
}

.form-submit {
  margin-top: 30px;
}

.form-status {
  margin: 22px 0 0;
  border-left: 2px solid var(--gold);
  padding: 12px 16px;
  background: var(--sand);
  color: var(--charcoal);
  font-size: 0.92rem;
}

.form-status strong,
.form-status span {
  display: block;
}

.form-status strong {
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
}

.form-status.is-error {
  border-left-color: #9f3f35;
  background: #fff4f1;
}

.form-status.is-sending {
  color: var(--grey);
}

.form-status a {
  color: var(--gold);
  font-weight: 700;
  text-underline-offset: 0.18em;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.centered-section-heading {
  max-width: 790px;
  text-align: center;
}

.centered-section-heading > p:not(.eyebrow) {
  margin: 24px auto 0;
  color: var(--grey);
}

.studio-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.studio-card {
  position: relative;
  padding: 38px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.location-mark {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 30px;
  border: 1px solid var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.location-mark::after {
  display: block;
  width: 8px;
  height: 8px;
  margin: 12px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.studio-card address {
  margin: 14px 0 28px;
  color: var(--grey);
  font-size: 1rem;
  font-style: normal;
  line-height: 1.8;
}

.studio-status {
  display: inline-flex;
  margin: 10px 0 0;
  border-bottom: 1px solid rgba(200, 160, 77, 0.62);
  padding-bottom: 3px;
  color: var(--charcoal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.studio-card-coming-soon address {
  margin-top: 18px;
  margin-bottom: 0;
}

.studio-card .btn {
  min-height: 46px;
}

.direct-contact {
  background: var(--ivory);
}

.direct-contact-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(260px, 0.8fr) auto;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-top: 48px;
  padding-bottom: 48px;
}

.direct-contact-panel h2 {
  font-size: clamp(2.8rem, 4vw, 4rem);
}

.direct-contact-copy > p:last-child {
  margin: 18px 0 0;
  color: var(--grey);
}

.direct-contact-links {
  display: grid;
  gap: 14px;
  font-style: normal;
}

.direct-contact-links a {
  display: grid;
  color: var(--charcoal);
  transition: color 180ms ease;
}

.direct-contact-links a:hover,
.direct-contact-links a:focus-visible,
.direct-socials a:hover,
.direct-socials a:focus-visible {
  color: var(--gold);
}

.direct-contact-links span {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.direct-socials {
  display: grid;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.direct-social-group {
  justify-self: start;
}

.direct-social-label {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-faq .faq-copy .btn {
  margin-top: 26px;
}

.contact-page .consultation {
  background: var(--ivory);
}

@media (min-width: 1024px) {
  .contact-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
    gap: clamp(56px, 6vw, 88px);
  }

  .contact-hero-media {
    width: 100%;
    max-width: 470px;
    justify-self: end;
  }

  .contact-hero-media img {
    height: clamp(420px, 32vw, 480px);
    aspect-ratio: auto;
  }
}

@media (max-width: 1023px) {
  .contact-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
    gap: 42px;
  }

  .contact-hero-copy h1 {
    font-size: clamp(4rem, 7.8vw, 5.6rem);
  }

  .enquiry-layout {
    grid-template-columns: minmax(230px, 0.55fr) minmax(430px, 1fr);
    gap: 42px;
  }

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

  .direct-social-group {
    grid-column: 1 / -1;
  }

  .direct-socials {
    grid-template-columns: repeat(3, max-content);
  }
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: auto;
    padding: 52px 0 50px;
  }

  .contact-hero-grid,
  .contact-section-heading,
  .enquiry-layout,
  .studio-card-grid,
  .direct-contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-hero-grid {
    gap: 28px;
  }

  .contact-hero-media::before {
    display: none;
  }

  .contact-page .contact-expect.section,
  .contact-page .enquiry-section.section,
  .contact-page .studio-section.section,
  .contact-page .direct-contact.section,
  .contact-page .contact-faq.section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .contact-page .consultation.section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .contact-hero-copy h1 {
    margin: 12px 0 20px;
    font-size: clamp(3.45rem, 15vw, 4.75rem);
    line-height: 0.9;
  }

  .contact-hero-copy > p:not(.eyebrow) {
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .contact-hero-copy .button-row {
    align-items: stretch;
    margin-top: 26px;
  }

  .contact-hero-media {
    width: min(100%, 520px);
  }

  .contact-hero-media img {
    aspect-ratio: 5 / 4;
    object-position: center 18%;
  }

  .contact-section-heading h2,
  .centered-section-heading h2,
  .enquiry-copy h2,
  .direct-contact-panel h2 {
    font-size: clamp(2.55rem, 11vw, 3.6rem);
    line-height: 0.98;
  }

  .contact-intro-copy {
    padding-top: 20px;
  }

  .reassurance-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .reassurance-card {
    min-height: 0;
    padding: 24px;
  }

  .reassurance-card h3 {
    margin: 20px 0 6px;
    font-size: 1.58rem;
  }

  .enquiry-copy {
    position: static;
  }

  .enquiry-intro-desktop {
    display: none;
  }

  .enquiry-intro-mobile {
    display: inline;
  }

  .enquiry-layout {
    gap: 28px;
  }

  .consultation-form {
    padding: 24px 20px;
    border-radius: 22px;
  }

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

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

  .contact-method label {
    flex: 1 1 auto;
    justify-content: center;
  }

  .form-submit {
    width: 100%;
  }

  .studio-card-grid {
    margin-top: 28px;
  }

  .studio-card {
    padding: 28px;
  }

  .direct-contact-panel {
    gap: 24px;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .direct-social-group {
    grid-column: auto;
  }

  .contact-faq .faq-copy .btn {
    width: 100%;
  }

  .contact-page .contact-faq .faq-grid {
    gap: 28px;
  }

  .contact-page .consultation .consultation-panel {
    padding-top: 36px;
    padding-bottom: 34px;
  }
}

@media (max-width: 380px) {
  .contact-hero-copy h1 {
    font-size: clamp(3.1rem, 14.7vw, 3.65rem);
  }

  .consultation-form {
    padding-right: 16px;
    padding-left: 16px;
  }

  .contact-method {
    display: grid;
  }

  .direct-socials {
    grid-template-columns: 1fr;
  }
}

/* Shared treatments navigation */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown-toggle {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  border-radius: 50%;
  font-size: 0;
  line-height: 1;
  transition: color 200ms ease;
}

.nav-dropdown-toggle::before {
  content: "+";
  font-size: 1rem;
  transition: transform 200ms ease;
}

.nav-dropdown-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.nav-dropdown.is-open .nav-dropdown-toggle {
  transform: none;
}

.nav-dropdown.is-open .nav-dropdown-toggle::before {
  transform: rotate(45deg);
}

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

@media (min-width: 961px) {
  .nav-submenu {
    position: absolute;
    z-index: 20;
    top: calc(100% + 18px);
    left: 50%;
    width: 244px;
    padding: 12px 0;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(248, 245, 241, 0.98);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translate(-50%, -6px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-dropdown:hover .nav-submenu,
  .nav-dropdown:focus-within .nav-submenu,
  .nav-dropdown.is-open .nav-submenu {
    opacity: 1;
    transform: translate(-50%, 0);
    visibility: visible;
  }

  .nav-dropdown.is-dismissed .nav-submenu {
    opacity: 0;
    transform: translate(-50%, -6px);
    visibility: hidden;
  }

  .nav-submenu::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 20px;
    content: "";
  }

  .nav-links .nav-submenu a {
    display: block;
    padding: 9px 18px;
    color: var(--grey);
    font-size: 0.67rem;
    letter-spacing: 0.06em;
    line-height: 1.35;
    text-transform: none;
  }

  .nav-links .nav-submenu a::after {
    display: none;
  }

  .nav-links .nav-submenu a:hover,
  .nav-links .nav-submenu a:focus-visible {
    background: rgba(239, 233, 225, 0.72);
    color: var(--charcoal);
  }
}

@media (min-width: 961px) and (max-width: 1220px) {
  .nav-panel {
    gap: 16px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 0.66rem;
  }

  .brand img {
    width: 160px;
    max-width: 160px;
  }
}

@media (max-width: 960px) {
  .nav-panel {
    max-height: calc(100vh - 112px);
    overflow-y: auto;
  }

  .nav-dropdown-row {
    justify-content: space-between;
  }

  .nav-dropdown-toggle {
    width: 44px;
    height: 44px;
    margin: -10px 0;
  }

  .nav-submenu {
    display: grid;
    max-height: 0;
    overflow: hidden;
    gap: 0;
    padding-left: 16px;
    border-left: 1px solid transparent;
    opacity: 0;
    transition: max-height 260ms ease, opacity 180ms ease, margin 180ms ease, border-color 180ms ease;
  }

  .nav-dropdown.is-open .nav-submenu {
    max-height: 360px;
    margin-top: 14px;
    border-left-color: rgba(200, 160, 77, 0.55);
    opacity: 1;
  }

  .nav-links .nav-submenu a {
    display: block;
    padding: 7px 10px;
    color: var(--grey);
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    line-height: 1.35;
    text-transform: none;
  }

  .nav-links .nav-submenu a::after {
    display: none;
  }
}

/* Treatments editorial page */
.anchor-section {
  scroll-margin-top: 126px;
}

.treatments-results,
.treatments-page .consultation {
  scroll-margin-top: 126px;
}

.smp-method {
  background: var(--ivory);
}

.smp-method-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.7fr);
  align-items: start;
  gap: clamp(70px, 9vw, 136px);
}

.smp-method-copy h2,
.treatment-detail-copy h2 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  line-height: 0.96;
}

.smp-method-copy > p:not(.eyebrow),
.treatment-detail-copy > p:not(.eyebrow) {
  max-width: 64ch;
  margin: 0 0 18px;
  color: var(--grey);
  line-height: 1.72;
}

.method-points {
  margin: 6px 0 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.method-points li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid var(--border);
}

.method-points span,
.maintenance-points span {
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.method-points h3,
.maintenance-points h3,
.best-for h3 {
  margin: 0 0 7px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.1;
}

.method-points p,
.maintenance-points p {
  margin: 0;
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.6;
}

.treatment-detail {
  overflow: hidden;
  background: var(--ivory);
}

.treatment-detail--sand {
  background: var(--sand);
}

.treatment-detail-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.86fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(64px, 8vw, 126px);
}

.treatment-detail-grid--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
}

.treatment-detail-grid--reverse .treatment-detail-media {
  order: 2;
}

.treatment-detail-grid--reverse .treatment-detail-copy {
  order: 1;
}

.treatment-detail-media {
  position: relative;
  min-width: 0;
  margin: 0;
}

.treatment-detail-media::after {
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 42%;
  height: 42%;
  border-right: 1px solid rgba(200, 160, 77, 0.72);
  border-bottom: 1px solid rgba(200, 160, 77, 0.72);
  border-radius: 0 0 28px 0;
  content: "";
  pointer-events: none;
}

.treatment-detail-media img {
  width: 100%;
  height: clamp(430px, 47vw, 580px);
  border-radius: 24px;
  object-fit: cover;
  object-position: center 36%;
  box-shadow: var(--shadow-soft);
}

.treatment-detail-media--treatment img {
  object-position: center;
}

.best-for {
  max-width: 650px;
  margin: 28px 0 32px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.best-for h3 {
  color: var(--gold);
  font-family: Inter, Manrope, Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.best-for ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  margin: 14px 0 0;
  padding: 0;
  color: var(--grey);
  font-size: 0.88rem;
  list-style: none;
}

.best-for li {
  position: relative;
  padding-left: 16px;
}

.best-for li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.maintenance-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 70px;
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  list-style: none;
}

.maintenance-points li {
  padding: 30px 34px;
  border-right: 1px solid var(--border);
}

.maintenance-points li:first-child {
  padding-left: 0;
}

.maintenance-points li:last-child {
  padding-right: 0;
  border-right: 0;
}

.maintenance-points h3 {
  margin-top: 14px;
}

.treatment-guidance-panel--center {
  display: block;
  max-width: 980px;
  padding: 62px clamp(28px, 7vw, 84px);
  text-align: center;
}

.treatment-guidance-panel--center h2,
.treatment-guidance-panel--center > p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.treatment-guidance-panel--center > p:not(.eyebrow) {
  max-width: 700px;
}

.treatments-results {
  background: var(--sand);
}

@media (min-width: 1024px) {
  .smp-method.section,
  .treatment-detail.section,
  .treatment-guidance.section,
  .treatments-results.section {
    padding-top: 94px;
    padding-bottom: 94px;
  }
}

@media (max-width: 768px) {
  .anchor-section {
    scroll-margin-top: 104px;
  }

  .treatments-results,
  .treatments-page .consultation {
    scroll-margin-top: 104px;
  }

  .smp-method.section,
  .treatment-detail.section,
  .treatment-guidance.section,
  .treatments-results.section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .smp-method.section {
    padding-top: 44px;
  }

  .smp-method-grid,
  .treatment-detail-grid,
  .treatment-detail-grid--reverse {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .smp-method-copy h2,
  .treatment-detail-copy h2 {
    margin-bottom: 20px;
    font-size: clamp(2.35rem, 10.4vw, 3.25rem);
    line-height: 0.98;
    overflow-wrap: normal;
  }

  .smp-method-copy > p:not(.eyebrow),
  .treatment-detail-copy > p:not(.eyebrow) {
    font-size: 0.94rem;
    line-height: 1.66;
  }

  .method-points {
    margin-top: 0;
  }

  .method-points li {
    padding: 21px 0;
  }

  .treatment-detail-copy,
  .treatment-detail-grid--reverse .treatment-detail-copy {
    order: 1;
  }

  .treatment-detail-media,
  .treatment-detail-grid--reverse .treatment-detail-media {
    order: 2;
  }

  .treatment-detail-media {
    padding-right: 10px;
  }

  .treatment-detail-media::after {
    right: -2px;
    bottom: -10px;
  }

  .treatment-detail-media img {
    height: min(96vw, 430px);
    border-radius: 20px;
  }

  .best-for {
    margin: 24px 0 26px;
  }

  .best-for ul {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .treatment-detail-copy .btn {
    width: 100%;
  }

  .maintenance-points {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .maintenance-points li,
  .maintenance-points li:first-child,
  .maintenance-points li:last-child {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .maintenance-points li:last-child {
    border-bottom: 0;
  }

  .treatment-guidance-panel--center {
    padding: 42px 22px;
  }

  .treatment-maintenance.section {
    padding-bottom: 36px;
  }

  .treatment-maintenance + .treatment-guidance.section {
    padding-top: 40px;
  }
}

@media (max-width: 380px) {
  .smp-method-copy h2,
  .treatment-detail-copy h2 {
    font-size: clamp(2.08rem, 10vw, 2.55rem);
  }

  .method-points li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }
}

/* About page */
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 88px;
  background:
    linear-gradient(115deg, rgba(239, 233, 225, 0.54), rgba(248, 245, 241, 0) 54%),
    var(--ivory);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.68fr);
  align-items: center;
  gap: clamp(72px, 8vw, 116px);
}

.about-hero-grid > *,
.about-story-grid > *,
.care-grid > * {
  min-width: 0;
}

.about-hero-copy {
  max-width: 650px;
}

.about-hero-copy h1 {
  margin-bottom: 28px;
  font-size: clamp(4rem, 6vw, 5.8rem);
  line-height: 0.94;
}

.about-hero-copy > p:not(.eyebrow) {
  max-width: 58ch;
  margin: 0 0 34px;
  color: var(--grey);
  font-size: 1.04rem;
  line-height: 1.78;
}

.about-hero-copy .button-row {
  align-items: center;
  margin: 0;
}

.about-text-link {
  position: relative;
  padding: 8px 0 6px;
  color: var(--charcoal);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 220ms ease;
}

.about-text-link:hover::after,
.about-text-link:focus-visible::after {
  transform: scaleX(1);
}

.about-hero-media {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0;
  padding: 0 0 34px 34px;
  justify-self: end;
}

.about-hero-media::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42%;
  height: 42%;
  border-bottom: 1px solid rgba(200, 160, 77, 0.62);
  border-left: 1px solid rgba(200, 160, 77, 0.62);
  border-radius: 0 0 0 24px;
  content: "";
}

.about-hero-media img {
  position: relative;
  width: 100%;
  height: clamp(460px, 39vw, 560px);
  border: 1px solid rgba(232, 225, 216, 0.86);
  border-radius: 24px;
  object-fit: cover;
  object-position: center 38%;
  box-shadow: var(--shadow);
}

.about-hero-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--grey);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-hero-media figcaption span {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.about-story {
  background: var(--sand);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(64px, 9vw, 132px);
}

.about-story-heading {
  position: sticky;
  top: 128px;
}

.about-story-heading h2 {
  max-width: 560px;
  margin-bottom: 42px;
  font-size: clamp(2.5rem, 3.35vw, 3.1rem);
  line-height: 1;
}

.no-break {
  white-space: nowrap;
}

.about-story-copy {
  max-width: 700px;
}

.about-story-copy p {
  margin: 0 0 22px;
  color: var(--grey);
  font-size: 0.98rem;
  line-height: 1.82;
}

.about-story-copy .story-lead {
  margin-bottom: 28px;
  color: var(--charcoal);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.1vw, 1.85rem);
  line-height: 1.35;
}

.hair-restoration-experience {
  margin: 42px 0 38px;
}

.hair-restoration-experience h3 {
  margin: 0 0 16px;
  color: var(--charcoal);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 2.1vw, 2.1rem);
  font-weight: 600;
  line-height: 1.05;
}

.about-story-copy .hair-restoration-experience p {
  margin-bottom: 18px;
}

.about-story-copy .hair-restoration-experience p:last-child {
  margin-bottom: 0;
}

.about-story-copy .story-closing {
  margin: 34px 0 0;
  padding: 24px 0 0 26px;
  border-top: 1px solid var(--border);
  border-left: 1px solid rgba(200, 160, 77, 0.64);
  color: var(--charcoal);
  font-weight: 600;
}

.about-craft {
  background: var(--ivory);
}

.about-craft .craft-copy .craft-detail {
  margin-bottom: 0;
}

.philosophy {
  background: var(--ivory);
}

.philosophy-heading {
  max-width: 900px;
}

.philosophy-heading > p:not(.eyebrow) + p {
  margin-top: 12px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.philosophy-card {
  min-height: 270px;
  padding: 34px 32px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(55, 45, 34, 0.045);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.philosophy-card:nth-child(2) {
  transition-delay: 80ms;
}

.philosophy-card:nth-child(3) {
  transition-delay: 160ms;
}

.philosophy-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border: 1px solid rgba(200, 160, 77, 0.5);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.philosophy-card h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.05;
}

.philosophy-card p {
  margin: 0;
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.66;
}

@media (hover: hover) and (pointer: fine) {
  .philosophy-card:hover {
    border-color: rgba(200, 160, 77, 0.46);
    box-shadow: 0 16px 38px rgba(55, 45, 34, 0.07);
    transform: translateY(-3px);
  }
}

.training {
  background: var(--sand);
}

.training-heading {
  max-width: 900px;
}

.training-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.training-timeline::before {
  position: absolute;
  top: 24px;
  right: 15%;
  left: 15%;
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--gold), var(--border));
  content: "";
}

.training-timeline li {
  position: relative;
  padding: 0 clamp(22px, 3vw, 42px);
  text-align: center;
}

.training-timeline li:nth-child(2) {
  transition-delay: 90ms;
}

.training-timeline li:nth-child(3) {
  transition-delay: 180ms;
}

.training-timeline time {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin: 0 auto 28px;
  border: 1px solid rgba(200, 160, 77, 0.72);
  border-radius: 50%;
  background: var(--sand);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.training-timeline h3 {
  margin: 0 auto 13px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2vw, 1.9rem);
  font-weight: 600;
  line-height: 1.12;
}

.training-timeline p {
  max-width: 34ch;
  margin: 0 auto;
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.68;
}

.professional-care {
  background: var(--ivory);
}

.care-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.74fr);
  align-items: center;
  gap: clamp(64px, 9vw, 132px);
}

.care-copy h2 {
  margin-bottom: 26px;
}

.care-copy > p:not(.eyebrow) {
  max-width: 60ch;
  margin: 0;
  color: var(--grey);
  line-height: 1.78;
}

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

.care-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 70px;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
}

.care-list span {
  color: var(--gold);
  font-family: Inter, Manrope, Arial, sans-serif;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.about-page .consultation {
  background: var(--sand);
}

@media (min-width: 1024px) {
  .about-page .about-hero {
    padding-top: 68px;
    padding-bottom: 74px;
  }

  .about-page main > .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .about-page .about-craft .craft-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.9fr);
    gap: clamp(68px, 7vw, 96px);
  }

  .about-page .about-craft .craft-comparison {
    width: 100%;
    max-width: 520px;
    justify-self: start;
  }

  .about-page .about-craft .comparison-media {
    height: clamp(440px, 33vw, 470px);
    aspect-ratio: auto;
  }
}

@media (max-width: 960px) {
  .about-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.66fr);
    gap: 52px;
  }

  .about-hero-media {
    max-width: 440px;
  }

  .about-hero-media img {
    height: clamp(430px, 52vw, 510px);
  }

  .about-hero-copy h1 {
    font-size: clamp(3.55rem, 7vw, 4.6rem);
  }

  .about-story-grid,
  .care-grid {
    gap: 54px;
  }

  .philosophy-grid {
    gap: 16px;
  }

  .philosophy-card {
    padding: 28px 24px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 44px 0 50px;
  }

  .about-hero-grid,
  .about-story-grid,
  .care-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-grid {
    gap: 28px;
  }

  .about-hero-copy h1 {
    margin-bottom: 22px;
    font-size: clamp(3rem, 13vw, 4.2rem);
    line-height: 0.94;
  }

  .about-hero-copy > p:not(.eyebrow) {
    margin-bottom: 26px;
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .about-hero-copy .button-row {
    align-items: stretch;
    margin-bottom: 0;
  }

  .about-text-link {
    align-self: center;
    min-height: 44px;
    padding-top: 11px;
    text-align: center;
  }

  .about-page .consultation-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .about-hero-media {
    width: min(100%, 390px);
    max-width: 390px;
    padding: 0 0 22px 18px;
    justify-self: center;
  }

  .about-hero-media.reveal {
    opacity: 1;
    transform: none;
  }

  .about-hero-media img {
    height: clamp(320px, 92vw, 400px);
    border-radius: 20px;
    object-position: center 35%;
  }

  .about-hero-media figcaption {
    min-height: 42px;
    padding: 0 14px;
  }

  .about-story.section,
  .about-craft.section,
  .philosophy.section,
  .training.section,
  .professional-care.section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .about-story-grid,
  .care-grid {
    gap: 28px;
  }

  .about-page .about-craft .craft-grid {
    gap: 24px;
  }

  .about-page .consultation.section {
    padding-top: 42px;
    padding-bottom: 40px;
  }

  .about-story-heading {
    position: static;
  }

  .about-story-heading h2,
  .care-copy h2 {
    margin-bottom: 24px;
    font-size: clamp(2.2rem, 9.3vw, 3.2rem);
    line-height: 0.98;
  }

  .about-story-copy .story-lead {
    font-size: 1.35rem;
  }

  .hair-restoration-experience {
    margin: 32px 0 30px;
  }

  .hair-restoration-experience h3 {
    margin-bottom: 14px;
    font-size: clamp(1.6rem, 7vw, 1.9rem);
    line-height: 1.08;
  }

  .about-story-copy p {
    margin-bottom: 18px;
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .about-story-copy .story-closing {
    margin-top: 28px;
    padding: 20px 0 0 18px;
  }

  .philosophy-heading,
  .training-heading {
    margin-bottom: 28px;
  }

  .philosophy-heading h2,
  .training-heading h2 {
    font-size: clamp(2.4rem, 10.5vw, 3.35rem);
    line-height: 0.98;
  }

  .philosophy-heading > p:not(.eyebrow) {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .philosophy-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 7px 16px;
    min-height: 0;
    padding: 22px;
    border-radius: 20px;
  }

  .philosophy-card > span {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .philosophy-card h3 {
    margin: 2px 0 3px;
    font-size: 1.55rem;
  }

  .philosophy-card p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .training-timeline {
    grid-template-columns: 1fr;
  }

  .training-timeline::before {
    top: 24px;
    right: auto;
    bottom: 24px;
    left: 24px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, var(--gold), var(--border));
  }

  .training-timeline li {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 18px;
    padding: 0 0 32px;
    text-align: left;
  }

  .training-timeline li:last-child {
    padding-bottom: 0;
  }

  .training-timeline time {
    margin: 0;
  }

  .training-timeline h3 {
    margin: 2px 0 9px;
    font-size: 1.55rem;
  }

  .training-timeline p {
    max-width: none;
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .care-copy > p:not(.eyebrow) {
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .care-list li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    min-height: 60px;
    font-size: 1.16rem;
  }
}

@media (max-width: 380px) {
  .about-hero-copy h1 {
    font-size: clamp(2.85rem, 13.8vw, 3.3rem);
  }

  .about-story-heading h2 {
    font-size: clamp(1.9rem, 8.7vw, 2.2rem);
  }

  .training-timeline li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
  }

  .training-timeline time {
    width: 44px;
    height: 44px;
  }

  .training-timeline::before {
    top: 22px;
    bottom: 22px;
    left: 22px;
  }

  .training-timeline h3 {
    font-size: 1.35rem;
  }

  .philosophy-card {
    padding: 19px;
  }
}

/* Treatments overview page */
.treatments-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 88px;
  background:
    linear-gradient(115deg, rgba(239, 233, 225, 0.56), rgba(248, 245, 241, 0) 55%),
    var(--ivory);
}

.treatments-hero::before {
  position: absolute;
  top: 0;
  right: clamp(24px, 6vw, 96px);
  width: 1px;
  height: 92px;
  background: linear-gradient(var(--gold), transparent);
  content: "";
}

.treatments-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: clamp(64px, 8vw, 120px);
}

.treatments-hero-grid > *,
.treatments-intro-grid > *,
.treatment-guidance-panel > * {
  min-width: 0;
}

.treatments-hero-copy {
  max-width: 680px;
}

.treatments-hero-copy h1 {
  margin-bottom: 28px;
  font-size: clamp(4rem, 6vw, 5.8rem);
  line-height: 0.94;
}

.treatments-hero-copy > p:not(.eyebrow) {
  max-width: 62ch;
  margin: 0 0 34px;
  color: var(--grey);
  font-size: 1.04rem;
  line-height: 1.78;
}

.treatments-hero-copy .button-row {
  align-items: center;
  margin: 0;
}

.treatments-hero-media {
  position: relative;
  margin: 0;
  padding: 0 0 34px 34px;
}

.treatments-hero-media::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42%;
  height: 42%;
  border-bottom: 1px solid rgba(200, 160, 77, 0.62);
  border-left: 1px solid rgba(200, 160, 77, 0.62);
  border-radius: 0 0 0 24px;
  content: "";
}

.treatments-hero-media img {
  position: relative;
  width: 100%;
  height: clamp(520px, 46vw, 620px);
  border: 1px solid rgba(232, 225, 216, 0.86);
  border-radius: 24px;
  object-fit: cover;
  object-position: center 28%;
  box-shadow: var(--shadow);
}

.treatments-hero-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--grey);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.treatments-hero-media figcaption span {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.treatments-intro {
  background: var(--ivory);
}

.treatments-intro-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(64px, 9vw, 132px);
}

.treatments-intro h2 {
  max-width: 560px;
  font-size: clamp(2.6rem, 3.8vw, 3.65rem);
  line-height: 0.98;
}

.treatments-intro-copy {
  max-width: 680px;
  padding: 6px 0 0 28px;
  border-left: 1px solid rgba(200, 160, 77, 0.64);
}

.treatments-intro-copy p {
  margin: 0 0 20px;
  color: var(--grey);
  font-size: 0.98rem;
  line-height: 1.78;
}

.treatments-intro-copy p:last-child {
  margin-bottom: 0;
  color: var(--charcoal);
  font-weight: 600;
}

.treatment-menu {
  background: var(--sand);
}

.overview-treatment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.overview-treatment-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  scroll-margin-top: 110px;
}

.overview-treatment-card:nth-child(2) {
  transition-delay: 70ms;
}

.overview-treatment-card:nth-child(3) {
  transition-delay: 110ms;
}

.overview-treatment-card:nth-child(4) {
  transition-delay: 150ms;
}

.overview-treatment-media {
  position: relative;
  height: 320px;
  margin: 0;
  overflow: hidden;
  background: var(--ivory);
}

.overview-treatment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms cubic-bezier(0.22, 1, 0.36, 1);
}

.overview-treatment-media.treatment-image--hairline img {
  object-position: center 30%;
}

.overview-treatment-media.treatment-image--density img {
  object-position: center 42%;
}

.overview-treatment-media.treatment-image--scar img {
  object-position: center 40%;
}

.overview-treatment-media.treatment-image--alopecia img {
  object-position: center 38%;
}

.overview-line-icon {
  position: absolute;
  right: 22px;
  bottom: 20px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(200, 160, 77, 0.48);
  border-radius: 50%;
  background: rgba(248, 245, 241, 0.94);
  color: var(--gold);
  backdrop-filter: blur(8px);
}

.overview-line-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.overview-treatment-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 34px 34px 36px;
}

.overview-number {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.overview-treatment-content h3 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.65rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.overview-description {
  max-width: 56ch;
  margin: 0 0 26px;
  color: var(--grey);
  line-height: 1.68;
}

.overview-treatment-content h4 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.overview-treatment-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 24px;
  margin: 0 0 30px;
  padding: 0;
  color: var(--grey);
  font-size: 0.88rem;
  line-height: 1.5;
  list-style: none;
}

.overview-treatment-content li {
  position: relative;
  padding-left: 16px;
}

.overview-treatment-content li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 5px;
  height: 5px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.overview-treatment-content .btn {
  align-self: flex-start;
  margin-top: auto;
}

@media (hover: hover) and (pointer: fine) {
  .overview-treatment-card:hover {
    border-color: rgba(200, 160, 77, 0.5);
    box-shadow: 0 18px 44px rgba(55, 45, 34, 0.08);
    transform: translateY(-4px);
  }

  .overview-treatment-card:hover .overview-treatment-media img {
    transform: scale(1.025);
  }
}

.treatment-guidance {
  background: var(--ivory);
}

.treatment-guidance-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.68fr);
  align-items: center;
  gap: clamp(52px, 7vw, 96px);
  padding: 62px 66px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--sand);
  box-shadow: var(--shadow-soft);
}

.treatment-guidance-copy h2 {
  max-width: 680px;
  margin-bottom: 22px;
}

.treatment-guidance-copy > p:not(.eyebrow) {
  max-width: 64ch;
  margin: 0 0 30px;
  color: var(--grey);
  line-height: 1.72;
}

.treatment-reassurance {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.treatment-reassurance li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 64px;
  border-bottom: 1px solid var(--border);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
}

.treatment-reassurance span {
  color: var(--gold);
  font-family: Inter, Manrope, Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.treatments-results .results-intro {
  max-width: 760px;
}

.treatments-process {
  background: var(--ivory);
}

.treatments-page .consultation {
  background: var(--sand);
}

@media (max-width: 960px) {
  .treatments-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
    gap: 48px;
  }

  .treatments-hero-copy h1 {
    font-size: clamp(3.55rem, 7vw, 4.6rem);
  }

  .treatments-intro-grid {
    gap: 54px;
  }

  .treatment-guidance-panel {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .treatments-hero {
    padding: 48px 0 40px;
  }

  .treatments-hero::before {
    display: none;
  }

  .treatments-hero-grid,
  .treatments-intro-grid {
    grid-template-columns: 1fr;
  }

  .treatments-hero-grid {
    gap: 30px;
  }

  .treatments-hero-copy h1 {
    margin-bottom: 22px;
    font-size: clamp(3rem, 13vw, 4.2rem);
    line-height: 0.94;
  }

  .treatments-hero-copy > p:not(.eyebrow) {
    margin-bottom: 26px;
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .treatments-hero-copy .button-row {
    align-items: stretch;
    margin-bottom: 0;
  }

  .treatments-hero-media {
    padding: 0 0 22px 18px;
  }

  .treatments-hero-media.reveal {
    opacity: 1;
    transform: none;
  }

  .treatments-hero-media img {
    height: min(104vw, 430px);
    border-radius: 20px;
  }

  .treatments-hero-media figcaption {
    min-height: 42px;
    padding: 0 14px;
  }

  .treatments-intro.section,
  .treatment-menu.section,
  .treatment-guidance.section,
  .treatments-process.section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .treatments-intro-grid {
    gap: 28px;
  }

  .treatments-intro h2,
  .treatment-guidance-copy h2,
  .treatments-process .section-heading h2 {
    font-size: clamp(2.35rem, 10vw, 3.25rem);
    line-height: 0.98;
  }

  .treatments-intro-copy {
    padding: 20px 0 0 18px;
    border-top: 1px solid var(--border);
  }

  .treatments-intro-copy p {
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .overview-treatment-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .overview-treatment-card {
    border-radius: 20px;
  }

  .overview-treatment-media {
    height: 220px;
  }

  .overview-line-icon {
    right: 16px;
    bottom: 14px;
    width: 48px;
    height: 48px;
  }

  .overview-line-icon svg {
    width: 27px;
    height: 27px;
  }

  .overview-treatment-content {
    padding: 24px 22px 26px;
  }

  .overview-number {
    margin-bottom: 12px;
  }

  .overview-treatment-content h3 {
    margin-bottom: 10px;
    font-size: 2rem;
  }

  .overview-description {
    margin-bottom: 20px;
    font-size: 0.92rem;
  }

  .overview-treatment-content ul {
    margin-bottom: 24px;
    font-size: 0.86rem;
  }

  .overview-treatment-content .btn {
    width: 100%;
  }

  .treatment-guidance-panel {
    gap: 30px;
    padding: 42px 22px;
    border-radius: 24px;
  }

  .treatment-guidance-copy > p:not(.eyebrow) {
    font-size: 0.94rem;
    line-height: 1.66;
  }

  .treatment-guidance-copy .btn {
    width: 100%;
  }

  .treatment-reassurance li {
    min-height: 58px;
    font-size: 1.13rem;
  }

  .treatments-page .consultation-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}

@media (max-width: 360px) {
  .overview-treatment-content ul {
    grid-template-columns: 1fr;
    gap: 7px;
  }
}

@media (max-width: 380px) {
  .treatments-hero-copy h1 {
    font-size: clamp(2.75rem, 13.4vw, 3.2rem);
  }

  .treatments-intro h2,
  .treatment-guidance-copy h2,
  .treatments-process .section-heading h2 {
    font-size: clamp(2.05rem, 9.5vw, 2.45rem);
  }

  .overview-treatment-content {
    padding: 22px 18px 24px;
  }

  .overview-treatment-content h3 {
    font-size: 1.75rem;
  }

  .overview-treatment-content .btn {
    padding-right: 0.9rem;
    padding-left: 0.9rem;
    font-size: 0.68rem;
  }
}

/* Keep the consultation guide centred after legacy overview styles. */
.treatment-guidance-panel.treatment-guidance-panel--center {
  display: block;
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.treatment-guidance-panel--center > p:not(.eyebrow) {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  color: var(--grey);
  line-height: 1.72;
}

@media (max-width: 768px) {
  .treatment-guidance-panel.treatment-guidance-panel--center {
    padding: 42px 22px;
  }

  .treatment-guidance-panel--center .btn {
    width: 100%;
  }
}

@media (min-width: 769px) {
  .treatments-hero {
    padding-top: 64px;
    padding-bottom: 48px;
  }

  .treatments-hero::before {
    display: none;
  }

  .treatments-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
    gap: clamp(48px, 7vw, 92px);
  }

  .treatments-hero-media {
    width: 100%;
    max-width: 460px;
    justify-self: end;
  }

  .treatments-hero-media img {
    height: clamp(420px, 38vw, 500px);
  }

  .smp-method.section {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .treatment-detail.section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .treatment-detail-grid {
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
    gap: clamp(48px, 6vw, 84px);
  }

  .treatment-detail-grid--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  }

  .treatment-detail-media {
    width: 100%;
    max-width: 450px;
    justify-self: start;
  }

  .treatment-detail-grid--reverse .treatment-detail-media {
    justify-self: end;
  }

  .treatment-detail-media img {
    height: clamp(360px, 30vw, 420px);
  }

  .treatment-maintenance .treatment-detail-media img {
    height: clamp(350px, 28vw, 390px);
  }

  .maintenance-points {
    margin-top: 48px;
  }

  .treatment-maintenance.section {
    padding-bottom: 44px;
  }

  .treatment-maintenance + .treatment-guidance.section {
    padding-top: 40px;
    padding-bottom: 64px;
  }

  .treatments-results.section {
    padding-top: 64px;
    padding-bottom: 56px;
  }

  .treatments-page .consultation.section {
    padding-top: 48px;
    padding-bottom: 56px;
  }
}

/* Results portfolio page */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.results-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 8vw, 118px) 0 clamp(82px, 9vw, 126px);
  background: var(--ivory);
}

.results-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: clamp(64px, 8vw, 122px);
}

.results-hero-copy {
  position: relative;
  z-index: 1;
}

.results-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(4rem, 6vw, 6.4rem);
  line-height: 0.9;
}

.results-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 32px;
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.78;
}

.results-hero-copy .button-row {
  margin-bottom: 0;
}

.results-hero-comparison {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 0 18px 20px 0;
}

.results-hero-comparison::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 46%;
  border-right: 1px solid rgba(200, 160, 77, 0.72);
  border-bottom: 1px solid rgba(200, 160, 77, 0.72);
  border-radius: 0 0 26px 0;
  content: "";
  pointer-events: none;
}

.results-hero-comparison .comparison-media {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.results-hero-comparison figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--grey);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.results-hero-comparison figcaption span {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.results-introduction {
  background: var(--ivory);
}

.results-introduction-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(64px, 9vw, 132px);
}

.results-introduction h2 {
  max-width: 600px;
  font-size: clamp(2.8rem, 4.2vw, 4.1rem);
  line-height: 0.96;
}

.results-introduction-copy {
  max-width: 680px;
  padding: 6px 0 0 28px;
  border-left: 1px solid rgba(200, 160, 77, 0.62);
}

.results-introduction-copy p {
  margin: 0 0 20px;
  color: var(--grey);
  line-height: 1.76;
}

.results-introduction-copy p:last-child {
  margin-bottom: 0;
  color: var(--charcoal);
  font-weight: 600;
}

.results-portfolio {
  background: var(--sand);
}

.results-portfolio .section-heading {
  max-width: 760px;
  margin-bottom: 30px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.result-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 32px;
}

.result-filter {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--grey);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.result-filter:hover,
.result-filter:focus-visible {
  border-color: rgba(200, 160, 77, 0.74);
  color: var(--charcoal);
}

.result-filter:focus-visible {
  outline: 2px solid rgba(200, 160, 77, 0.4);
  outline-offset: 3px;
}

.result-filter.is-active {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--ivory);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.portfolio-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e8e1d8;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(55, 45, 34, 0.055);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.portfolio-comparison {
  --position: 50%;
  margin: 0;
}

.portfolio-comparison .comparison-media {
  height: 380px;
  aspect-ratio: auto;
  border-radius: 0;
}

.results-page .portfolio-grid > .portfolio-card:nth-child(1) .comparison-media > img {
  object-position: center 12%;
}

.results-page .portfolio-grid > .portfolio-card:nth-child(2) .comparison-media > img {
  object-position: center 11%;
}

.portfolio-comparison .comparison-label {
  top: 16px;
  padding: 7px 10px;
  font-size: 0.56rem;
}

.portfolio-comparison .comparison-label--before {
  left: 16px;
}

.portfolio-comparison .comparison-label--after {
  right: 16px;
}

.portfolio-card-copy {
  padding: 20px 22px 22px;
}

.portfolio-category {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.portfolio-card-copy h3 {
  margin: 0 0 7px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 2.2vw, 2.15rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.portfolio-card-copy > p:last-child {
  max-width: 54ch;
  margin: 0;
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.64;
}

.portfolio-placeholder-visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 380px;
  aspect-ratio: auto;
  background: var(--ivory);
  color: var(--grey);
}

.portfolio-placeholder-visual::before,
.portfolio-placeholder-visual::after {
  position: absolute;
  width: 92px;
  height: 1px;
  background: rgba(200, 160, 77, 0.58);
  content: "";
}

.portfolio-placeholder-visual::before {
  transform: translateY(-16px);
}

.portfolio-placeholder-visual::after {
  transform: translateY(16px);
}

.portfolio-placeholder-visual span {
  padding: 8px 14px;
  background: var(--ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
}

@media (hover: hover) and (pointer: fine) {
  .portfolio-card:hover {
    border-color: rgba(200, 160, 77, 0.48);
    box-shadow: 0 18px 44px rgba(55, 45, 34, 0.08);
    transform: translateY(-4px);
  }

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

@media (min-width: 1200px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .portfolio-comparison .comparison-media,
  .portfolio-placeholder-visual {
    height: 360px;
  }
}

.results-note {
  background: var(--ivory);
}

.results-note-panel {
  max-width: 980px;
  padding: 58px clamp(28px, 7vw, 82px);
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--sand);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.results-note-panel h2 {
  margin-bottom: 20px;
}

.results-note-panel > p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: var(--grey);
  line-height: 1.72;
}

.results-guidance {
  background: var(--ivory);
}

.results-guidance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  align-items: center;
  gap: clamp(64px, 9vw, 132px);
}

.results-guidance-copy h2 {
  max-width: 700px;
  margin-bottom: 22px;
}

.results-guidance-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 30px;
  color: var(--grey);
  line-height: 1.72;
}

.results-reassurance {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.results-reassurance li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 72px;
  border-bottom: 1px solid var(--border);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.2;
}

.results-reassurance span {
  color: var(--gold);
  font-family: Inter, Manrope, Arial, sans-serif;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.results-page .consultation {
  scroll-margin-top: 126px;
  background: var(--sand);
}

@media (min-width: 769px) {
  .results-hero {
    padding-bottom: 64px;
  }

  .results-introduction.section {
    padding-top: 72px;
    padding-bottom: 56px;
  }

  .results-portfolio.section {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .results-note.section {
    padding-top: 72px;
    padding-bottom: 48px;
  }

  .results-guidance.section {
    padding-top: 48px;
    padding-bottom: 72px;
  }
}

@media (max-width: 960px) {
  .results-hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
    gap: 48px;
  }

  .results-hero-copy h1 {
    font-size: clamp(3.55rem, 7vw, 4.7rem);
  }

  .results-guidance-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 768px) {
  .results-hero {
    padding: 48px 0 52px;
  }

  .results-hero-grid,
  .results-introduction-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .results-hero-grid {
    gap: 28px;
  }

  .results-hero-copy h1 {
    margin-bottom: 22px;
    font-size: clamp(3rem, 13vw, 4.15rem);
    line-height: 0.94;
  }

  .results-hero-copy > p:not(.eyebrow) {
    margin-bottom: 26px;
    font-size: 0.95rem;
    line-height: 1.67;
  }

  .results-hero-copy .button-row {
    align-items: stretch;
  }

  .results-hero-comparison {
    padding: 0 10px 18px 0;
  }

  .results-hero-comparison.reveal {
    opacity: 1;
    transform: none;
  }

  .results-hero-comparison .comparison-media {
    border-radius: 20px;
  }

  .results-hero-comparison figcaption {
    min-height: 42px;
    padding: 0 14px;
  }

  .results-introduction.section {
    padding-top: 48px;
    padding-bottom: 44px;
  }

  .results-portfolio.section {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .results-note.section,
  .results-guidance.section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .results-introduction-grid {
    gap: 28px;
  }

  .results-introduction h2,
  .results-guidance-copy h2,
  .results-note-panel h2 {
    font-size: clamp(2.35rem, 10vw, 3.2rem);
    line-height: 0.98;
  }

  .results-introduction-copy {
    padding: 20px 0 0 18px;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .results-introduction-copy p,
  .results-guidance-copy > p:not(.eyebrow) {
    font-size: 0.94rem;
    line-height: 1.66;
  }

  .results-portfolio .section-heading {
    margin-bottom: 24px;
  }

  .result-filters {
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 28px;
  }

  .result-filter {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.63rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .portfolio-card {
    border-radius: 20px;
  }

  .results-page .portfolio-grid > .portfolio-card:nth-child(-n + 2) .result-comparison-layer {
    background-position-y: 22%;
  }

  .results-page .portfolio-grid > .portfolio-card:nth-child(-n + 2) .comparison-media > img {
    object-position: center 22%;
  }

  .portfolio-comparison .comparison-media,
  .portfolio-placeholder-visual {
    height: clamp(260px, 76vw, 300px);
    aspect-ratio: auto;
  }

  .portfolio-card-copy {
    padding: 18px 20px 20px;
  }

  .portfolio-card-copy h3 {
    margin-bottom: 8px;
    font-size: clamp(1.3rem, 5.6vw, 1.5rem);
    line-height: 1.1;
  }

  .portfolio-card-copy > p:last-child {
    font-size: 0.87rem;
  }

  .results-note-panel {
    padding: 42px 22px;
    border-radius: 24px;
  }

  .results-note-panel > p:last-child {
    font-size: 0.94rem;
    line-height: 1.66;
  }

  .results-guidance-grid {
    gap: 30px;
  }

  .results-guidance-copy .btn {
    width: 100%;
  }

  .results-reassurance li {
    min-height: 62px;
    font-size: 1.14rem;
  }

  .results-page .consultation {
    scroll-margin-top: 104px;
  }

  .results-page .consultation.section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 380px) {
  .results-hero-copy h1 {
    font-size: clamp(2.75rem, 13.2vw, 3.18rem);
  }

  .results-introduction h2,
  .results-guidance-copy h2,
  .results-note-panel h2 {
    font-size: clamp(2.08rem, 9.8vw, 2.5rem);
  }

  .result-filter {
    padding: 0 12px;
    letter-spacing: 0.06em;
  }
}

@media (min-width: 700px) and (max-width: 960px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-comparison .comparison-media,
  .portfolio-placeholder-visual {
    height: 340px;
  }
}

/* Full FAQ page */
.faq-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 10vw, 148px) 0 clamp(96px, 11vw, 156px);
  background: var(--ivory);
}

.faq-page-hero::before,
.faq-page-hero::after {
  position: absolute;
  background: rgba(200, 160, 77, 0.5);
  content: "";
}

.faq-page-hero::before {
  top: 0;
  right: 7vw;
  width: 1px;
  height: 112px;
}

.faq-page-hero::after {
  bottom: 56px;
  left: 7vw;
  width: 112px;
  height: 1px;
}

.faq-page-hero-inner {
  max-width: 930px;
  text-align: center;
}

.faq-page-hero h1 {
  max-width: 900px;
  margin: 0 auto 28px;
  font-size: clamp(4.4rem, 7.4vw, 7.2rem);
  line-height: 0.9;
}

.faq-page-hero-inner > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0 auto 34px;
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.75;
}

.faq-page-hero .button-row {
  justify-content: center;
  margin-bottom: 0;
}

.faq-page-intro {
  background: var(--ivory);
}

.faq-page-intro-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(64px, 9vw, 132px);
}

.faq-page-intro h2 {
  max-width: 620px;
  font-size: clamp(2.8rem, 4.4vw, 4.2rem);
  line-height: 0.96;
}

.faq-page-intro-copy {
  max-width: 700px;
  padding: 6px 0 0 28px;
  border-left: 1px solid rgba(200, 160, 77, 0.62);
}

.faq-page-intro-copy p {
  margin: 0;
  color: var(--grey);
  line-height: 1.78;
}

.faq-library {
  background: var(--sand);
}

.faq-library-heading {
  max-width: 760px;
  margin-bottom: 46px;
  text-align: center;
}

.faq-library-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: start;
  gap: clamp(44px, 7vw, 92px);
}

.faq-category-index {
  position: sticky;
  top: 126px;
  padding-top: 8px;
}

.faq-category-index > p {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.faq-category-index nav {
  display: grid;
  border-top: 1px solid var(--border);
}

.faq-category-index a {
  position: relative;
  padding: 13px 26px 13px 0;
  border-bottom: 1px solid var(--border);
  color: var(--grey);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  transition: color 180ms ease, padding-left 180ms ease;
}

.faq-category-index a::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 16px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.faq-category-index a:hover,
.faq-category-index a:focus-visible {
  padding-left: 6px;
  color: var(--charcoal);
}

.faq-category-index a:focus-visible {
  outline: 2px solid rgba(200, 160, 77, 0.42);
  outline-offset: 3px;
}

.faq-page-accordion {
  min-width: 0;
  padding: 8px 34px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.faq-page-list {
  border-top: 0;
}

.faq-page-list details {
  scroll-margin-top: 118px;
}

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

.faq-page-list summary {
  min-height: 72px;
  font-size: 1.32rem;
}

.faq-page-list p {
  max-width: 72ch;
}

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

.faq-pricing-panel {
  max-width: 980px;
  padding: 58px clamp(28px, 7vw, 82px);
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--sand);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.faq-pricing-panel h2 {
  max-width: 760px;
  margin: 0 auto 22px;
}

.faq-pricing-panel > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto 16px;
  color: var(--grey);
  line-height: 1.72;
}

.faq-pricing-panel > p:last-child {
  margin-bottom: 0;
  color: var(--charcoal);
}

.faq-page .consultation {
  scroll-margin-top: 126px;
  background: var(--sand);
}

@media (min-width: 1024px) {
  .faq-page-intro.section,
  .faq-library.section,
  .faq-pricing-section.section {
    padding-top: 94px;
    padding-bottom: 94px;
  }
}

@media (min-width: 769px) {
  .faq-page-hero {
    padding-top: 96px;
    padding-bottom: 64px;
  }

  .faq-page-hero::before,
  .faq-page-hero::after {
    display: none;
  }

  .faq-page-intro.section {
    padding-top: 48px;
    padding-bottom: 72px;
  }
}

@media (max-width: 960px) {
  .faq-library-grid {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 36px;
  }

  .faq-page-accordion {
    padding-right: 26px;
    padding-left: 26px;
  }
}

@media (max-width: 768px) {
  .faq-page-hero {
    padding: 58px 0 44px;
  }

  .faq-page-hero::before {
    display: none;
    content: none;
  }

  .faq-page-hero::after {
    display: none;
  }

  .faq-page-hero-inner {
    text-align: left;
  }

  .faq-page-hero h1 {
    margin-right: 0;
    margin-bottom: 22px;
    margin-left: 0;
    font-size: clamp(3.2rem, 14vw, 4.4rem);
    line-height: 0.93;
  }

  .faq-page-hero-inner > p:not(.eyebrow) {
    margin-right: 0;
    margin-bottom: 28px;
    margin-left: 0;
    font-size: 0.95rem;
    line-height: 1.66;
  }

  .faq-page-hero .button-row {
    justify-content: flex-start;
    align-items: stretch;
  }

  .faq-page-hero .about-text-link::after {
    display: none;
  }

  .faq-page-intro.section,
  .faq-library.section,
  .faq-pricing-section.section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .faq-page-intro.section {
    padding-top: 44px;
    padding-bottom: 56px;
  }

  .faq-page-intro-grid,
  .faq-library-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-page-intro-grid {
    gap: 28px;
  }

  .faq-page-intro h2,
  .faq-library-heading h2,
  .faq-pricing-panel h2 {
    font-size: clamp(2.35rem, 10vw, 3.2rem);
    line-height: 0.98;
  }

  .faq-page-intro-copy {
    padding: 20px 0 0 18px;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .faq-page-intro-copy p {
    font-size: 0.94rem;
    line-height: 1.66;
  }

  .faq-library-heading {
    margin-bottom: 28px;
  }

  .faq-library-grid {
    gap: 24px;
  }

  .faq-category-index {
    position: static;
    padding-top: 0;
  }

  .faq-category-index > p {
    margin-bottom: 12px;
  }

  .faq-category-index nav {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    border-top: 0;
  }

  .faq-category-index a {
    display: flex;
    grid-column: span 2;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 8px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    font-family: Inter, Manrope, Arial, sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-align: center;
    text-transform: uppercase;
  }

  .faq-category-index a:nth-child(4),
  .faq-category-index a:nth-child(5) {
    grid-column: span 3;
  }

  .faq-category-index a::after {
    display: none;
  }

  .faq-category-index a:hover,
  .faq-category-index a:focus-visible {
    padding-left: 8px;
  }

  .faq-page-accordion {
    padding: 4px 20px;
    border-radius: 20px;
  }

  .faq-page-list details {
    scroll-margin-top: 104px;
  }

  .faq-page-list summary {
    min-height: 64px;
    padding: 16px 42px 16px 0;
    font-size: 1.13rem;
  }

  .faq-page-list p {
    padding: 0 36px 20px 0;
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .faq-pricing-panel {
    padding: 42px 22px;
    border-radius: 24px;
  }

  .faq-pricing-panel > p:not(.eyebrow) {
    font-size: 0.94rem;
    line-height: 1.66;
  }

  .faq-page .consultation {
    scroll-margin-top: 104px;
  }
}

@media (max-width: 380px) {
  .faq-page-hero h1 {
    font-size: clamp(2.9rem, 13.6vw, 3.35rem);
  }

  .faq-page-intro h2,
  .faq-library-heading h2,
  .faq-pricing-panel h2 {
    font-size: clamp(2.08rem, 9.8vw, 2.5rem);
  }

  .faq-page-accordion {
    padding-right: 16px;
    padding-left: 16px;
  }
}

/* Final typography normalization: intentionally last in the cascade. */
body {
  font-size: 0.97rem;
}

.nav-links a { font-size: 0.69rem; }
.eyebrow,
.hero-label { font-size: 0.69rem; }

.btn {
  min-height: 48px;
  padding: 0.9rem 1.28rem;
  font-size: 0.7rem;
}

.btn-small {
  min-height: 40px;
  padding: 0.74rem 1rem;
  font-size: 0.67rem;
}

.hero h1 { font-size: clamp(3.6rem, 6.45vw, 6.55rem); }
.about-hero-copy h1,
.treatments-hero-copy h1 { font-size: clamp(3.55rem, 5.35vw, 5.1rem); }
.results-hero-copy h1 { font-size: clamp(3.55rem, 5.3vw, 5.55rem); }
.faq-page-hero h1 { font-size: clamp(3.8rem, 6.35vw, 6.2rem); }
.contact-hero-copy h1 { font-size: clamp(3.85rem, 6.15vw, 6.15rem); }

.hero-text { font-size: 1.02rem; }
.about-hero-copy > p:not(.eyebrow),
.treatments-hero-copy > p:not(.eyebrow),
.contact-hero-copy > p:not(.eyebrow),
.results-hero-copy > p:not(.eyebrow),
.faq-page-hero-inner > p:not(.eyebrow) { font-size: 0.98rem; }

.section-heading h2,
.craft-title,
.experience-heading h2,
.reviews-heading h2,
.meet-copy h2,
.faq-copy h2,
.consultation-panel h2 { font-size: clamp(2.2rem, 3.85vw, 4.15rem); }

.about-story-heading h2,
.training-copy h2,
.care-copy h2,
.smp-method-copy h2,
.treatment-detail-copy h2,
.treatments-intro h2,
.treatment-guidance-panel h2,
.results-introduction h2,
.results-guidance-copy h2,
.faq-page-intro h2,
.faq-library-heading h2,
.faq-pricing-panel h2,
.contact-section-heading h2,
.centered-section-heading h2,
.enquiry-copy h2,
.direct-contact-panel h2 { font-size: clamp(2.25rem, 3.8vw, 3.85rem); }

.treatment-card h3 { font-size: 0.92rem; }
.overview-treatment-content h3 { font-size: clamp(1.45rem, 2.2vw, 2rem); }

.method-points h3,
.maintenance-points h3,
.best-for h3,
.reassurance-card h3 { font-size: 1.45rem; }

.review-card blockquote,
.testimonial-card blockquote { font-size: 0.96rem; }
.faq-list summary { font-size: 1.3rem; }

.faq-list p,
.treatment-detail-copy > p:not(.eyebrow),
.about-story-copy p,
.contact-intro-copy,
.centered-section-heading > p:not(.eyebrow) { font-size: 0.94rem; }

.site-footer { font-size: 0.94rem; }
.site-footer h2 { font-size: 0.75rem; }

@media (max-width: 768px) {
  body { font-size: 0.95rem; }

  .hero h1 {
    font-size: clamp(3rem, 13.2vw, 4.05rem);
    line-height: 0.93;
  }

  .about-hero-copy h1,
  .treatments-hero-copy h1,
  .results-hero-copy h1,
  .faq-page-hero h1,
  .contact-hero-copy h1 {
    font-size: clamp(2.75rem, 11.7vw, 3.65rem);
    line-height: 0.95;
  }

  .section-heading h2,
  .craft-title,
  .experience-heading h2,
  .reviews-heading h2,
  .meet-copy h2,
  .faq-copy h2,
  .consultation-panel h2,
  .about-story-heading h2,
  .training-copy h2,
  .care-copy h2,
  .smp-method-copy h2,
  .treatment-detail-copy h2,
  .treatments-intro h2,
  .treatment-guidance-panel h2,
  .results-introduction h2,
  .results-guidance-copy h2,
  .faq-page-intro h2,
  .faq-library-heading h2,
  .faq-pricing-panel h2,
  .contact-section-heading h2,
  .centered-section-heading h2,
  .enquiry-copy h2,
  .direct-contact-panel h2 {
    font-size: clamp(2.05rem, 8.8vw, 2.85rem);
    line-height: 1;
  }

  .hero-text,
  .about-hero-copy > p:not(.eyebrow),
  .treatments-hero-copy > p:not(.eyebrow),
  .results-hero-copy > p:not(.eyebrow),
  .faq-page-hero-inner > p:not(.eyebrow),
  .contact-hero-copy > p:not(.eyebrow) { font-size: 0.92rem; }

  .overview-treatment-content h3,
  .method-points h3,
  .maintenance-points h3,
  .reassurance-card h3 { font-size: 1.4rem; }

  .treatment-card h3 { font-size: 0.82rem; }

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

  .faq-list p,
  .treatment-detail-copy > p:not(.eyebrow),
  .about-story-copy p,
  .contact-intro-copy,
  .centered-section-heading > p:not(.eyebrow) { font-size: 0.9rem; }

  .btn {
    min-height: 48px;
    padding: 0.88rem 1.15rem;
    font-size: 0.68rem;
  }
}

@media (max-width: 380px) {
  .hero h1 { font-size: clamp(2.8rem, 13vw, 3.25rem); }

  .about-hero-copy h1,
  .treatments-hero-copy h1,
  .results-hero-copy h1,
  .faq-page-hero h1,
  .contact-hero-copy h1 { font-size: clamp(2.5rem, 11.6vw, 3rem); }

  .section-heading h2,
  .craft-title,
  .experience-heading h2,
  .reviews-heading h2,
  .meet-copy h2,
  .faq-copy h2,
  .consultation-panel h2,
  .about-story-heading h2,
  .training-copy h2,
  .care-copy h2,
  .smp-method-copy h2,
  .treatment-detail-copy h2,
  .treatments-intro h2,
  .treatment-guidance-panel h2,
  .results-introduction h2,
  .results-guidance-copy h2,
  .faq-page-intro h2,
  .faq-library-heading h2,
  .faq-pricing-panel h2,
  .contact-section-heading h2,
  .centered-section-heading h2,
  .enquiry-copy h2,
  .direct-contact-panel h2 { font-size: clamp(1.9rem, 8.6vw, 2.45rem); }

  .treatment-card h3 { font-size: 0.76rem; }
}

/* Homepage mobile refinement */
@media (max-width: 768px) {
  .home-page .hero {
    padding-bottom: 28px;
  }

  .home-page .trust.section {
    padding-top: 18px;
    padding-bottom: 44px;
  }

  .home-page .treatments.section,
  .home-page .craft.section,
  .home-page .results.section,
  .home-page .experience.section,
  .home-page .reviews.section,
  .home-page .meet.section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .home-page .faq.section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .home-page .consultation.section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .home-page .section-heading {
    margin-bottom: 28px;
  }

  .home-page .craft-grid {
    gap: 20px;
  }

  .home-page .craft-copy .craft-detail {
    margin-bottom: 22px;
  }

  .home-page .meet-panel {
    gap: 28px;
  }

  .home-page .meet-media img {
    border-radius: 24px;
    object-position: center 22%;
  }

  .site-footer {
    padding-top: 42px;
    padding-bottom: 20px;
  }

  .footer-brand {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .footer-brand p {
    max-width: 34ch;
    margin-top: 12px;
  }

  .footer-social-label {
    margin: 18px 0 4px;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-locations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
    padding-top: 22px;
  }

  .footer-locations > h2 {
    grid-column: 1 / -1;
    margin-bottom: 2px;
    text-align: center;
  }

  .studio-address {
    min-width: 0;
    padding-left: 12px;
  }

  .footer-bottom {
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px 16px;
    margin-top: 26px;
    padding-top: 18px;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
    gap: 2px 16px;
  }
}

@media (min-width: 521px) and (max-width: 768px) {
  .footer-bottom {
    padding-right: 60px;
    padding-left: 60px;
  }
}

@media (max-width: 380px) {
  .footer-locations {
    grid-template-columns: 1fr;
  }

  .footer-locations > h2 {
    grid-column: auto;
  }
}

.footer-socials.social-icon-row .social-icon-link,
.direct-socials.social-icon-row .social-icon-link {
  display: grid;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-height: 42px;
}

.footer-socials.social-icon-row,
.direct-socials.social-icon-row {
  gap: 14px;
}

.footer-socials.social-icon-row .social-icon-link img,
.direct-socials.social-icon-row .social-icon-link img {
  display: block;
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
  object-fit: contain;
}

/* Readable legal and policy pages */
.legal-page {
  background: var(--ivory);
}

.legal-page .legal-container {
  width: min(100% - 40px, 900px);
}

.legal-page .legal-hero {
  padding: clamp(72px, 8vw, 108px) 0 clamp(58px, 7vw, 86px);
  border-bottom: 1px solid var(--border);
  background: var(--sand);
}

.legal-page .legal-hero h1 {
  max-width: 760px;
  margin: 14px 0 18px;
  font-family: "Cormorant Garamond", Cormorant, Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 4.6rem);
  font-weight: 600;
  line-height: 0.98;
}

.legal-page .legal-updated {
  margin: 0;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.legal-page .legal-introduction {
  max-width: 760px;
  margin-top: 30px;
  color: var(--grey);
  font-size: 1.05rem;
  line-height: 1.75;
}

.legal-page .legal-introduction p,
.legal-page .legal-content p {
  margin: 0;
}

.legal-page .legal-introduction p + p,
.legal-page .legal-content p + p,
.legal-page .legal-content ul + p,
.legal-page .legal-content p + ul,
.legal-page .legal-content address + p {
  margin-top: 18px;
}

.legal-page .legal-introduction a {
  color: var(--gold);
  font-weight: 650;
  text-underline-offset: 0.2em;
}

.legal-page .legal-content {
  padding-top: clamp(54px, 7vw, 82px);
  padding-bottom: clamp(76px, 9vw, 116px);
}

.legal-page .legal-content section {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.legal-page .legal-content section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-page .legal-content section:last-child {
  padding-bottom: 0;
}

.legal-page .legal-content h2 {
  max-width: 760px;
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", Cormorant, Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  font-weight: 600;
  line-height: 1.08;
}

.legal-page .legal-content h3 {
  margin: 32px 0 14px;
  font-family: "Cormorant Garamond", Cormorant, Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.15;
}

.legal-page .legal-content p,
.legal-page .legal-content li,
.legal-page .legal-address {
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.8;
}

.legal-page .legal-content strong {
  color: var(--charcoal);
  font-weight: 700;
}

.legal-page .legal-content ul {
  margin-bottom: 0;
  padding-left: 1.3rem;
}

.legal-page .legal-content li {
  padding-left: 0.35rem;
}

.legal-page .legal-content li + li {
  margin-top: 7px;
}

.legal-page .legal-content a {
  color: var(--gold);
  font-weight: 650;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.legal-page .legal-inline-button {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold);
  font: inherit;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  cursor: pointer;
}

.legal-page .legal-inline-button:hover,
.legal-page .legal-inline-button:focus-visible {
  color: var(--charcoal);
}

.legal-page .legal-address {
  margin: 18px 0 0;
  font-style: normal;
}

@media (max-width: 768px) {
  .legal-page .legal-container {
    width: min(100% - 36px, 900px);
  }

  .legal-page .legal-hero {
    padding-top: 58px;
    padding-bottom: 52px;
  }

  .legal-page .legal-hero h1 {
    margin-top: 12px;
    font-size: clamp(2.75rem, 12vw, 3.45rem);
  }

  .legal-page .legal-introduction {
    margin-top: 24px;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .legal-page .legal-content {
    padding-top: 42px;
    padding-bottom: 72px;
  }

  .legal-page .legal-content section {
    padding: 36px 0;
  }

  .legal-page .legal-content h2 {
    margin-bottom: 18px;
    font-size: clamp(1.72rem, 8vw, 2.15rem);
  }

  .legal-page .legal-content p,
  .legal-page .legal-content li,
  .legal-page .legal-address {
    font-size: 0.96rem;
    line-height: 1.72;
  }

}

/* Consent controls: non-essential categories remain off until selected. */
.cookie-banner[hidden],
.cookie-preferences[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  z-index: 1200;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  width: min(calc(100% - 40px), 1120px);
  max-height: calc(100vh - 40px);
  margin: 0 auto;
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  background: rgba(248, 245, 241, 0.98);
  box-shadow: 0 18px 52px rgba(34, 34, 34, 0.16);
  backdrop-filter: blur(10px);
}

.cookie-banner-copy {
  max-width: 720px;
}

.cookie-banner h2,
.cookie-preferences-dialog h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Cormorant, Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.05;
}

.cookie-banner h2 {
  font-size: 1.75rem;
}

.cookie-banner-copy > p {
  margin: 10px 0 0;
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.65;
}

.cookie-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 12px;
}

.cookie-policy-links a {
  min-height: 28px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-underline-offset: 0.2em;
}

.cookie-banner-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  align-content: center;
  gap: 10px;
  min-width: 330px;
}

.cookie-button,
.cookie-manage {
  min-height: 46px;
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.cookie-accept,
.cookie-save {
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: #fff;
}

.cookie-accept:hover,
.cookie-accept:focus-visible,
.cookie-save:hover,
.cookie-save:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--charcoal);
}

.cookie-reject {
  border: 1px solid var(--charcoal);
  background: #fff;
  color: var(--charcoal);
}

.cookie-reject:hover,
.cookie-reject:focus-visible {
  border-color: var(--gold);
  background: var(--sand);
}

.cookie-manage {
  grid-column: 1 / -1;
  min-height: 40px;
  border: 0;
  background: transparent;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.cookie-preferences {
  position: fixed;
  z-index: 1300;
  inset: 0;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 20px;
}

.cookie-preferences-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 34, 34, 0.46);
  backdrop-filter: blur(4px);
}

.cookie-preferences-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 650px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: clamp(26px, 5vw, 42px);
  background: var(--ivory);
  box-shadow: 0 24px 70px rgba(34, 34, 34, 0.2);
}

.cookie-preferences-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  place-items: center;
  background: #fff;
  color: var(--charcoal);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-preferences-dialog h2 {
  max-width: 480px;
  margin-top: 10px;
  padding-right: 38px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.cookie-preferences-dialog > p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.65;
}

.cookie-category-list {
  margin-top: 26px;
  border-top: 1px solid var(--border);
}

.cookie-category {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.cookie-category h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Cormorant, Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.cookie-category p,
.cookie-category span:not(.sr-only) {
  margin: 6px 0 0;
  color: var(--grey);
  font-size: 0.82rem;
  line-height: 1.55;
}

.cookie-category span:not(.sr-only) {
  display: block;
  color: var(--gold);
  font-weight: 700;
}

.cookie-toggle {
  align-self: center;
  cursor: pointer;
}

.cookie-toggle input {
  position: relative;
  width: 48px;
  height: 28px;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  appearance: none;
  background: #d8d4ce;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.cookie-toggle input::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(34, 34, 34, 0.18);
  content: "";
  transition: transform 180ms ease;
}

.cookie-toggle input:checked {
  border-color: var(--gold);
  background: var(--gold);
}

.cookie-toggle input:checked::after {
  transform: translateX(20px);
}

.cookie-toggle input:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.cookie-preferences-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.cookie-preferences-open {
  overflow: hidden;
}

@media (max-width: 820px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

@media (max-width: 520px) {
  .site-footer {
    padding-bottom: 76px;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
    border-radius: 18px;
    padding: 20px 18px;
  }

  .cookie-banner h2 {
    font-size: 1.55rem;
  }

  .cookie-banner-actions,
  .cookie-preferences-actions {
    grid-template-columns: 1fr;
  }

  .cookie-manage {
    grid-column: auto;
  }

  .cookie-preferences {
    align-items: end;
    padding: 10px;
  }

  .cookie-preferences-dialog {
    max-height: min(760px, calc(100vh - 28px));
    border-radius: 20px;
    padding: 20px 18px;
  }

  .cookie-preferences-close {
    top: 14px;
    right: 14px;
  }

  .cookie-preferences-dialog > .eyebrow {
    margin-bottom: 8px;
  }

  .cookie-preferences-dialog h2 {
    margin-top: 0;
    font-size: clamp(1.9rem, 10vw, 2.5rem);
  }

  .cookie-preferences-dialog > p:not(.eyebrow) {
    margin-top: 12px;
    line-height: 1.5;
  }

  .cookie-category-list {
    margin-top: 18px;
  }

  .cookie-category {
    gap: 10px;
    padding: 12px 0;
  }

  .cookie-category p,
  .cookie-category span:not(.sr-only) {
    margin-top: 4px;
    line-height: 1.4;
  }

  .cookie-preferences-actions {
    gap: 6px;
    margin-top: 16px;
  }

  .cookie-preferences-actions .cookie-button {
    min-height: 42px;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }

  .cookie-preferences-dialog .cookie-policy-links {
    margin-top: 8px;
  }
}

/* Minimal production 404 page */
.error-page-main {
  display: grid;
  min-height: 100vh;
  padding: clamp(28px, 5vw, 64px);
  align-content: center;
  justify-items: center;
  background: var(--ivory);
  text-align: center;
}

.error-page-logo {
  width: 150px;
  margin-bottom: 42px;
}

.error-page-content {
  max-width: 760px;
}

.error-page-content h1 {
  margin: 0 0 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 600;
  line-height: 0.96;
}

.error-page-content > p:not(.eyebrow) {
  max-width: 600px;
  margin: 0 auto 32px;
  color: var(--grey);
}

.error-page-content .button-row {
  justify-content: center;
}

@media (max-width: 768px) {
  .error-page-main {
    padding: 28px 22px;
  }

  .error-page-logo {
    width: 126px;
    margin-bottom: 30px;
  }

  .error-page-content h1 {
    font-size: clamp(2.65rem, 12vw, 3.65rem);
  }

  .error-page-content .button-row {
    align-items: stretch;
  }
}
