:root {
  --bg: #0a0908;
  --bg-strong: #12100f;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.12);
  --text: #fcfcfc;
  --muted: #d1c6b8;
  --soft: #a99e90;
  --gold: #e8c871;
  --gold-strong: #daa53f;
  --gold-soft: #fff0bf;
  --rose: #d9a79d;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.36);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 14% 10%, rgba(232, 200, 113, 0.16), transparent 24%),
    radial-gradient(circle at 82% 11%, rgba(232, 200, 113, 0.11), transparent 22%),
    radial-gradient(circle at 50% 36%, rgba(232, 200, 113, 0.08), transparent 24%),
    radial-gradient(circle at 48% 78%, rgba(232, 200, 113, 0.07), transparent 26%),
    linear-gradient(180deg, #020202 0%, #080706 42%, #040303 100%);
  color: var(--text);
  font-family: "Urbanist", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(232, 200, 113, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 200, 113, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  opacity: 0.7;
  mask-image: radial-gradient(circle at center, black 58%, transparent 100%);
  pointer-events: none;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(180deg, rgba(232, 200, 113, 0.04), transparent 26%),
    linear-gradient(0deg, rgba(232, 200, 113, 0.03), transparent 22%);
  content: "";
  pointer-events: none;
}

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

svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

button {
  cursor: pointer;
}

.background-orb {
  position: fixed;
  z-index: -2;
  border-radius: 999px;
  filter: blur(96px);
  opacity: 0.26;
  pointer-events: none;
}

.background-orb-left {
  top: 60px;
  left: -80px;
  width: 340px;
  height: 340px;
  background: rgba(232, 200, 113, 0.28);
}

.background-orb-right {
  top: 480px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: rgba(195, 143, 36, 0.24);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 18px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(6, 6, 6, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.topbar.is-open {
  border-radius: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  width: 126px;
  height: auto;
  opacity: 0.94;
  filter: brightness(0.9) contrast(0.97) saturate(0.9);
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.96rem;
}

.topbar-nav a {
  position: relative;
}

.topbar-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  content: "";
}

.topbar-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.menu-toggle {
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
}

.menu-toggle-text {
  display: inline-flex;
}

.menu-toggle-icon {
  display: grid;
  gap: 4px;
  width: 18px;
}

.menu-toggle-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease;
}

.topbar.is-open .menu-toggle-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.topbar.is-open .menu-toggle-icon span:nth-child(2) {
  transform: scaleX(0);
}

.topbar.is-open .menu-toggle-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  width: 100%;
  padding-top: 12px;
}

.mobile-nav-link,
.mobile-nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 700;
}

.mobile-nav {
  grid-template-columns: 1fr;
  gap: 12px;
}

.mobile-nav-cta {
  justify-content: center;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(14, 163, 90, 0.12));
  color: #dbffeb;
}

.nav-link-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold-soft);
}

.nav-link-icon-whatsapp {
  color: #7cf5aa;
}

.section {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 110px 0;
}

.section-tight {
  padding-top: 24px;
  padding-bottom: 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 42px;
  padding-top: 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  content: "";
}

.eyebrow-small {
  margin-bottom: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.hero h1,
.section-heading h2,
.gallery-copy h2,
.authority-copy h2,
.hairstroke-copy h2,
.map-locations-copy h2,
.final-cta-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero .lead,
.section-heading p,
.gallery-copy p,
.authority-copy p,
.hairstroke-copy p,
.map-locations-copy p,
.final-cta-copy p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-pills,
.choice-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-pills span,
.choice-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
  text-align: center;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold-strong), var(--gold-soft));
  color: #0f0d0a;
  box-shadow: 0 14px 34px rgba(218, 165, 63, 0.28);
}

.button-secondary,
.button-outline,
.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.button-block {
  width: 100%;
}

.hero-proof-strip,
.authority-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-proof-strip div,
.authority-highlights div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.hero-proof-strip strong,
.authority-highlights strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-soft);
  font-size: 1.2rem;
}

.hero-proof-strip span,
.authority-highlights span {
  color: var(--muted);
  font-size: 0.95rem;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border: 1px solid rgba(232, 200, 113, 0.24);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(232, 200, 113, 0.18), rgba(255, 240, 191, 0.06));
  color: var(--gold-soft);
}

.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(232, 200, 113, 0.22);
  border-radius: 12px;
  background: rgba(232, 200, 113, 0.12);
  color: var(--gold-soft);
}

.lead-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04)),
    rgba(13, 12, 11, 0.88);
  box-shadow: var(--shadow);
}

.lead-card-head {
  margin-bottom: 22px;
}

.lead-card-head h2 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 0.96;
}

.lead-card-head p {
  margin: 0;
  color: var(--muted);
}

.crm-teaser {
  display: grid;
  gap: 18px;
}

.crm-teaser .lead-card-head {
  margin-bottom: 0;
}

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

.crm-teaser-list > span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-weight: 700;
}

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

.field-grid-compact {
  margin-bottom: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 16px;
}

.field span,
.fieldset legend {
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  outline: 0;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9d9387;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(232, 200, 113, 0.62);
  box-shadow: 0 0 0 3px rgba(232, 200, 113, 0.14);
}

.fieldset {
  margin: 0 0 16px;
  padding: 0;
  border: 0;
}

.fieldset legend {
  margin-bottom: 10px;
}

.choice-pill {
  position: relative;
}

.choice-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-pill input:checked + span {
  border-color: rgba(232, 200, 113, 0.5);
  background: linear-gradient(135deg, rgba(232, 200, 113, 0.24), rgba(255, 240, 191, 0.1));
  color: var(--gold-soft);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 6px 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.consent input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold-strong);
}

.consent a {
  color: var(--gold-soft);
  text-decoration: underline;
}

.hero-visuals {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  min-height: 760px;
}

.hero-media {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.hero-media picture,
.hairstroke-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.04);
}

.hero-visuals-focused {
  min-height: 720px;
}

.hero-media-main {
  grid-column: 1 / 5;
  grid-row: 1 / 7;
  min-height: 680px;
}

.hero-media-proof {
  grid-column: 4 / 7;
  grid-row: 3 / 6;
  min-height: 300px;
  transform: translateY(44px);
}

.hero-media-award {
  grid-column: 3 / 7;
  grid-row: 6 / 8;
  min-height: 250px;
}

.hero-visuals-focused .hero-media-main {
  grid-column: 1 / 5;
  grid-row: 1 / 8;
  min-height: 720px;
}

.hero-brow-detail img {
  object-position: center 34%;
}

.hero-visuals-focused .hero-claim-card {
  grid-column: 4 / 7;
  grid-row: 1 / 4;
  min-height: 310px;
  transform: translateY(26px);
}

.hero-visuals-focused .hero-result-proof {
  grid-column: 3 / 7;
  grid-row: 4 / 8;
  min-height: 380px;
}

.hero-result-proof img {
  object-position: center 18%;
}

.hero-claim-card {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(232, 200, 113, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 18%, rgba(232, 200, 113, 0.22), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(13, 12, 11, 0.92);
  box-shadow: var(--shadow);
}

.hero-claim-card .card-icon {
  margin-bottom: 2px;
}

.hero-claim-card .eyebrow {
  margin: 0;
}

.hero-claim-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero-claim-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.hero-media-badge,
.hero-award-copy,
.gallery-caption,
.authority-media-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.72);
  backdrop-filter: blur(10px);
  color: var(--gold-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-media-main,
.hero-media-award,
.gallery-card,
.authority-media {
  position: relative;
}

.hero-award-copy {
  left: 18px;
  right: auto;
  display: grid;
  gap: 2px;
  border-radius: 18px;
}

.hero-media-badge-stacked {
  right: 18px;
  left: 18px;
  display: grid;
  gap: 4px;
  border-radius: 22px;
}

.hero-media-badge-stacked strong {
  color: var(--gold-soft);
  font-size: 1.04rem;
}

.hero-media-badge-stacked span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-award-copy strong {
  color: var(--gold-soft);
}

.hero-award-copy span {
  color: var(--muted);
  font-size: 0.82rem;
}

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

.stat-card,
.comparison-card,
.treatment-card,
.process-card,
.location-card,
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 22px;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.stat-card span {
  color: var(--muted);
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
  text-align: center;
}

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

.section-heading h2,
.gallery-copy h2,
.authority-copy h2,
.hairstroke-copy h2,
.map-locations-copy h2,
.final-cta-copy h2 {
  font-size: clamp(2.6rem, 4.6vw, 4.6rem);
}

.comparison-grid,
.treatments-grid,
.process-grid,
.locations-grid,
.authority-section {
  display: grid;
  gap: 20px;
}

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

.comparison-card {
  overflow: hidden;
}

.comparison-copy {
  padding: 26px 26px 18px;
}

.comparison-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comparison-copy h3,
.treatment-card h3,
.process-card h3,
.location-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.comparison-copy p,
.treatment-card p,
.process-card p,
.location-card p {
  margin: 0;
  color: var(--muted);
}

.before-after {
  position: relative;
  aspect-ratio: 5 / 6;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(232, 200, 113, 0.14), transparent 28%),
    #0b0a09;
  cursor: ew-resize;
  touch-action: pan-y;
  user-select: none;
}

.before-after.is-dragging {
  cursor: grabbing;
}

.before-after > img,
.before-after picture,
.before-after picture > img,
.comparison-overlay picture,
.comparison-overlay picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after img {
  pointer-events: none;
  user-drag: none;
  -webkit-user-drag: none;
}

.before-after picture > img,
.comparison-overlay picture > img {
  filter: saturate(1.03) contrast(1.06);
}

.comparison-overlay {
  position: absolute;
  inset: 0;
  width: var(--position);
  overflow: hidden;
}

.comparison-labels {
  position: absolute;
  top: 18px;
  right: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.comparison-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.76);
  backdrop-filter: blur(10px);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 800;
}

.comparison-label-after {
  color: var(--gold-soft);
}

.slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 240, 191, 0.2), #fff0bf, rgba(255, 240, 191, 0.2));
  transform: translateX(-50%);
}

.slider-handle {
  position: absolute;
  bottom: 18px;
  left: var(--position);
  width: 30px;
  height: 30px;
  border: 3px solid rgba(255, 248, 223, 0.92);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold-soft));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
}

.slider-handle::before,
.slider-handle::after {
  position: absolute;
  top: 50%;
  width: 9px;
  height: 2px;
  background: rgba(15, 13, 10, 0.9);
  content: "";
}

.slider-handle::before {
  left: 6px;
  transform: translateY(-50%) rotate(45deg);
}

.slider-handle::after {
  right: 6px;
  transform: translateY(-50%) rotate(-45deg);
}

.comparison-range {
  position: absolute;
  inset: auto 16px 12px;
  z-index: 3;
  width: calc(100% - 32px);
  height: 42px;
  margin: 0;
  background: transparent;
  appearance: none;
  cursor: ew-resize;
  touch-action: pan-y;
}

.comparison-range::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.comparison-range::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.comparison-range::-webkit-slider-thumb {
  width: 30px;
  height: 30px;
  margin-top: -13px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  appearance: none;
}

.comparison-range::-moz-range-thumb {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: transparent;
}

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

.treatment-card {
  padding: 28px;
}

.inline-link {
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold-soft);
  font-weight: 800;
}

.hairstroke-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: center;
}

.hairstroke-copy {
  display: grid;
  gap: 18px;
}

.hairstroke-copy h2 {
  line-height: 1.06;
}

.hairstroke-copy p {
  max-width: 56ch;
}

.hairstroke-proof-list {
  display: grid;
  gap: 12px;
}

.hairstroke-proof-list > span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-weight: 800;
}

.hairstroke-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hairstroke-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.hairstroke-card-large {
  grid-row: span 2;
  min-height: 620px;
}

.hairstroke-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(1.04) contrast(1.04);
}

.hairstroke-card-large img {
  object-position: center 38%;
}

.hairstroke-caption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(10, 9, 8, 0.72);
  color: var(--gold-soft);
  font-size: 0.94rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.gallery-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

.gallery-copy {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

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

.gallery-card {
  overflow: hidden;
  min-height: 260px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.04);
}

.gallery-card-tall {
  grid-row: span 2;
  min-height: 560px;
}

.gallery-card-wide {
  grid-column: span 2;
  min-height: 250px;
}

.gallery-caption,
.authority-media-caption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  border-radius: 18px;
  font-weight: 700;
}

.authority-section {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: start;
}

.authority-copy {
  display: grid;
  gap: 18px;
}

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

.authority-media {
  overflow: hidden;
  min-height: 280px;
}

.authority-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.04);
}

.authority-media:last-child {
  min-height: 420px;
}

.authority-media:last-child img {
  object-position: center 18%;
}

.authority-media-video {
  grid-column: span 2;
}

.device-frame {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    #111;
}

.device-frame video {
  width: 100%;
  border-radius: 26px;
  overflow: hidden;
}

.video-play-hint {
  position: absolute;
  inset: 0;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 14px;
  padding: 24px;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.video-play-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 94px;
  height: 94px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(232, 200, 113, 0.28), rgba(232, 200, 113, 0.06) 52%, rgba(0, 0, 0, 0.14) 100%),
    rgba(6, 10, 16, 0.42);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.28),
    0 0 0 12px rgba(255, 255, 255, 0.03);
  color: var(--gold-soft);
  backdrop-filter: blur(8px);
}

.video-play-ring svg {
  width: 36px;
  height: 36px;
}

.video-play-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.72);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  backdrop-filter: blur(10px);
}

.authority-media-video.is-playing .video-play-hint {
  opacity: 0;
  transform: scale(0.96);
}

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

.process-card,
.location-card {
  padding: 26px;
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold-soft));
  color: #0e0c09;
  font-size: 1.12rem;
  font-weight: 800;
}

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

.map-locations-section {
  position: relative;
  padding-top: 32px;
}

.map-locations-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: 28px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(232, 200, 113, 0.15);
  border-radius: 38px;
  background:
    radial-gradient(circle at 16% 22%, rgba(232, 200, 113, 0.16), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(218, 165, 63, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(7, 6, 5, 0.94);
  box-shadow: var(--shadow);
}

.map-locations-shell::before {
  position: absolute;
  top: -70px;
  left: -70px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(232, 200, 113, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 62%),
    rgba(232, 200, 113, 0.04);
  transform: rotate(45deg);
  content: "";
}

.map-locations-shell::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 200, 113, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 200, 113, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(120deg, transparent, black 34%, transparent 86%);
  pointer-events: none;
}

.map-locations-copy,
.map-cards-grid {
  position: relative;
  z-index: 1;
}

.map-locations-copy {
  display: grid;
  align-content: center;
  gap: 22px;
}

.map-locations-copy .eyebrow {
  margin-bottom: 0;
}

.map-locations-copy p {
  max-width: 48ch;
}

@media (min-width: 1141px) {
  .map-locations-shell {
    grid-template-columns: minmax(440px, 0.85fr) minmax(0, 1.15fr);
  }

  .map-locations-copy,
  .map-cards-grid {
    min-width: 0;
  }

  .map-locations-copy h2 {
    max-width: 430px;
    font-size: 3.65rem;
    line-height: 1.02;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .map-locations-copy p {
    max-width: 40ch;
  }
}

.map-trust-list {
  display: grid;
  gap: 12px;
}

.map-trust-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
}

.map-trust-list .mini-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
}

.map-main-cta {
  width: fit-content;
  min-width: 250px;
}

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

.map-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(14, 12, 10, 0.9);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.map-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 22px 16px;
}

.map-city-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(232, 200, 113, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 240, 191, 0.22), transparent 48%),
    rgba(232, 200, 113, 0.1);
  color: var(--gold-soft);
}

.map-card-head .eyebrow {
  margin: 0 0 5px;
}

.map-card-head h3 {
  margin: 0;
  color: var(--gold-soft);
  font-size: 1.45rem;
}

.map-frame {
  position: relative;
  overflow: hidden;
  margin: 0 16px;
  border: 1px solid rgba(232, 200, 113, 0.16);
  border-radius: 24px;
  background: #0c0b0a;
}

.interactive-map {
  display: block;
  width: 100%;
  height: 330px;
  border: 0;
  background: #12100f;
  filter: saturate(0.9) contrast(0.98);
}

.map-zoom-note {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 450;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.78);
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.map-card-footer {
  display: grid;
  gap: 16px;
  padding: 18px 22px 22px;
}

.map-card-footer p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.map-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.map-card-actions .button {
  min-height: 50px;
  padding-inline: 14px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0 22px;
}

.faq-item summary {
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 700;
}

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

.faq-item p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--muted);
}

.final-cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 22px;
  padding-bottom: 150px;
}

.final-cta-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.crm-form-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(13, 12, 11, 0.9);
  box-shadow: var(--shadow);
}

.crm-form-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.crm-form-head div {
  display: grid;
  gap: 2px;
}

.crm-form-head strong {
  color: var(--text);
  font-size: 1rem;
}

.crm-form-head span {
  color: var(--muted);
  font-size: 0.92rem;
}

.crm-form-frame {
  display: block;
  width: 100%;
  height: 818px;
  min-height: 818px;
  border: 0;
  border-radius: 0 0 8px 8px;
  background: #fff;
}

.crm-form-fallback {
  display: none;
  gap: 10px;
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.crm-form-fallback.is-visible {
  display: grid;
}

.crm-form-fallback strong {
  color: var(--gold-soft);
  font-size: 1rem;
}

.crm-form-fallback span {
  color: var(--muted);
  font-size: 0.94rem;
}

.thanks-main {
  min-height: calc(100vh - 120px);
}

.thanks-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
  padding-top: 92px;
}

.thanks-copy {
  display: grid;
  gap: 22px;
}

.thanks-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(232, 200, 113, 0.28);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(232, 200, 113, 0.24), rgba(255, 240, 191, 0.08));
  color: var(--gold-soft);
}

.thanks-icon svg {
  width: 34px;
  height: 34px;
}

.thanks-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.98;
}

.thanks-copy p {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.thanks-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.035)),
    rgba(13, 12, 11, 0.88);
  box-shadow: var(--shadow);
}

.thanks-panel h2 {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-size: 1.18rem;
}

.thanks-next-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.thanks-next-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.thanks-next-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.thanks-next-list span {
  color: var(--muted);
}

.footer {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 0 0 110px;
  color: var(--soft);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto auto;
  gap: 22px;
  align-items: center;
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(9, 9, 9, 0.86);
  box-shadow: var(--shadow);
}

.footer-brand,
.footer-meta {
  display: grid;
  gap: 12px;
}

.footer-brand img {
  width: 118px;
  height: auto;
  opacity: 0.92;
}

.footer-brand p,
.footer-copy {
  margin: 0;
}

.footer-brand p {
  max-width: 34ch;
  color: var(--muted);
}

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

.footer-links a,
.footer-policy,
.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 700;
}

.footer-meta {
  justify-items: end;
}

.footer-badge {
  margin: 0;
  color: var(--gold-soft);
}

.footer-policy {
  color: var(--muted);
}

.footer-copy {
  color: var(--soft);
}

.footer-icon {
  width: 18px;
  height: 18px;
  color: currentColor;
}

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

.whatsapp-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 25;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.chat-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #0ea35a);
  box-shadow: 0 18px 36px rgba(14, 163, 90, 0.34);
  color: #f6fff8;
}

.chat-trigger-icon {
  width: 28px;
  height: 28px;
}

.chat-trigger-icon svg,
.chat-trigger-icon path {
  fill: currentColor;
  stroke: none;
}

.chat-send-icon {
  width: 18px;
  height: 18px;
}

.chat-panel {
  width: min(340px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(7, 7, 7, 0.96);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
}

.chat-panel[hidden] {
  display: none;
}

.chat-panel-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(6, 6, 6, 0.74);
  border: 1px solid rgba(232, 200, 113, 0.18);
}

.chat-avatar img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0.96) contrast(1.02);
}

.chat-meta {
  display: grid;
  gap: 4px;
}

.chat-meta strong {
  font-size: 1rem;
}

.chat-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.chat-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2dd16d;
  box-shadow: 0 0 0 4px rgba(45, 209, 109, 0.18);
}

.chat-close {
  position: relative;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.chat-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.chat-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.chat-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.chat-panel-body {
  padding: 18px;
}

.chat-bubble {
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px 18px 18px 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.chat-composer {
  display: grid;
  gap: 12px;
  padding: 0 18px 18px;
}

.chat-location-fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.chat-location-fieldset legend {
  color: var(--gold-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.chat-location-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.chat-location-option {
  position: relative;
  cursor: pointer;
}

.chat-location-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chat-location-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
}

.chat-location-option input:checked + span {
  border-color: rgba(232, 200, 113, 0.58);
  background: linear-gradient(135deg, rgba(232, 200, 113, 0.24), rgba(255, 240, 191, 0.1));
  color: var(--gold-soft);
  box-shadow: 0 10px 22px rgba(218, 165, 63, 0.12);
}

.chat-composer textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  resize: vertical;
  min-height: 96px;
}

.chat-composer textarea::placeholder {
  color: #a89f93;
}

.chat-send {
  gap: 10px;
}

.mobile-cta {
  display: none;
}

.desktop-only {
  display: inline-flex;
}

@media (max-width: 1140px) {
  .hero,
  .gallery-section,
  .authority-section,
  .hairstroke-section,
  .map-locations-shell,
  .final-cta-section,
  .thanks-section {
    grid-template-columns: 1fr;
  }

  .gallery-copy {
    position: static;
  }

  .hero-visuals {
    min-height: 640px;
  }
}

@media (max-width: 980px) {
  .topbar-nav,
  .desktop-only {
    display: none;
  }

  .topbar {
    width: min(calc(100% - 24px), 360px);
    padding: 10px 14px;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 28px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .topbar.is-open .mobile-nav {
    display: grid;
  }

  .section {
    padding: 84px 0;
  }

  .stats-band,
  .comparison-grid,
  .treatments-grid,
  .process-grid,
  .locations-grid,
  .map-cards-grid,
  .field-grid,
  .hero-proof-strip,
  .authority-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .hero-media-main {
    grid-column: 1 / 5;
    grid-row: 1 / 6;
    min-height: 520px;
  }

  .hero-media-proof {
    grid-column: 4 / 7;
    grid-row: 3 / 5;
  }

  .hero-media-award {
    grid-column: 2 / 7;
    grid-row: 5 / 7;
  }

  .gallery-card-tall,
  .gallery-card-wide {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .topbar {
    width: min(calc(100% - 24px), 340px);
    margin-top: 12px;
    padding: 10px 12px;
  }

  .brand img {
    width: 96px;
  }

  .section {
    width: min(calc(100% - 20px), var(--max-width));
    padding: 72px 0;
  }

  .hero {
    gap: 26px;
    padding-top: 40px;
  }

  .hero h1,
  .section-heading h2,
  .gallery-copy h2,
  .authority-copy h2,
  .hairstroke-copy h2,
  .map-locations-copy h2,
  .final-cta-copy h2 {
    font-size: clamp(2.45rem, 11vw, 4rem);
  }

  .hairstroke-copy h2 {
    font-size: clamp(2.25rem, 10vw, 3.45rem);
    line-height: 1.14;
    letter-spacing: -0.02em;
  }

  .hero-copy,
  .section-heading,
  .gallery-copy,
  .authority-copy,
  .hairstroke-copy,
  .map-locations-copy,
  .final-cta-copy,
  .comparison-copy,
  .treatment-card,
  .process-card,
  .location-card,
  .stat-card {
    text-align: center;
    justify-items: center;
  }

  .map-locations-shell {
    padding: 24px;
    border-radius: 30px;
  }

  .map-trust-list span {
    justify-content: center;
  }

  .map-main-cta {
    width: 100%;
  }

  .align-left {
    text-align: center;
  }

  .eyebrow {
    width: 100%;
    justify-content: center;
  }

  .hero-proof-strip div,
  .authority-highlights div {
    text-align: center;
  }

  .hero-visuals {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .hero-visuals-focused {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .hero-media-main,
  .hero-media-proof,
  .hero-media-award {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
    transform: none;
  }

  .hero-visuals-focused .hero-media-main,
  .hero-visuals-focused .hero-claim-card,
  .hero-visuals-focused .hero-result-proof {
    grid-column: auto;
    grid-row: auto;
    transform: none;
  }

  .hero-visuals-focused .hero-claim-card {
    order: -1;
    min-height: auto;
    padding: 22px;
    align-content: center;
    text-align: center;
    justify-items: center;
  }

  .hero-visuals-focused .hero-media-main {
    min-height: 460px;
  }

  .hero-visuals-focused .hero-result-proof {
    min-height: 330px;
  }

  .stats-band,
  .comparison-grid,
  .treatments-grid,
  .process-grid,
  .locations-grid,
  .map-cards-grid,
  .hairstroke-media-grid,
  .gallery-grid,
  .field-grid,
  .hero-proof-strip,
  .authority-highlights,
  .authority-media-grid {
    grid-template-columns: 1fr;
  }

  .hairstroke-proof-list > span {
    flex-direction: column;
    text-align: center;
  }

  .hairstroke-card,
  .hairstroke-card-large {
    min-height: 360px;
  }

  .hairstroke-card-large {
    grid-row: auto;
  }

  .map-card-head {
    justify-content: center;
    text-align: left;
  }

  .interactive-map {
    height: 300px;
  }

  .comparison-copy,
  .treatment-card,
  .process-card,
  .location-card,
  .lead-card,
  .thanks-panel {
    padding: 22px;
  }

  .crm-form-head {
    align-items: flex-start;
    text-align: left;
  }

  .crm-form-frame {
    min-height: 900px;
  }

  .thanks-section {
    padding-top: 62px;
  }

  .thanks-copy,
  .thanks-panel {
    justify-items: center;
    text-align: center;
  }

  .thanks-actions {
    justify-content: center;
    width: 100%;
  }

  .gallery-card-tall,
  .gallery-card-wide,
  .gallery-card {
    min-height: 280px;
  }

  .authority-media-video {
    grid-column: auto;
  }

  .authority-media:last-child {
    min-height: 440px;
  }

  .authority-media-caption,
  .gallery-caption {
    text-align: center;
  }

  .footer-shell,
  .footer-brand,
  .footer-meta {
    justify-items: center;
    text-align: center;
  }

  .footer {
    padding-bottom: 128px;
  }

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

  .whatsapp-widget {
    right: 12px;
    bottom: 84px;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 24;
    display: block;
    padding: 12px;
    background: rgba(10, 9, 8, 0.92);
    backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .hero-pills,
  .choice-pills {
    flex-direction: column;
  }

  .button,
  .choice-pill span {
    width: 100%;
  }

  .chat-trigger {
    width: 54px;
    height: 54px;
  }

  .chat-panel {
    width: min(calc(100vw - 24px), 340px);
  }

  .menu-toggle-text {
    display: none;
  }

  .footer-links {
    flex-direction: column;
  }

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

  .footer-links a,
  .footer-policy,
  .footer-badge {
    width: 100%;
  }
}
