﻿@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700&family=Playfair+Display:wght@400;600;700&display=swap");

:root {
  --bg: #f4f0ec;
  --card: #ffffff;
  --accent: #0f5b52;
  --accent-2: #b9855b;
  --ink: #1b1d1f;
  --sand: #efe9e2;
  --clay: #d9c9b9;
  --cream: #f9f5f1;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #e7dfd7;
  --shadow: 0 16px 40px rgba(18, 24, 34, 0.08);
  --dark: #f7f3ee;
  --dark-2: #fffdfa;
  --dark-3: #fdf8f2;
  --light-text: #111111;
  --muted-light: #4b5563;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  background: radial-gradient(circle at top right, #f6eee8 0%, #f2f0ec 45%, #f7f3ee 100%);
  color: var(--text);
  position: relative;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(15, 91, 82, 0.08), transparent 40%),
    linear-gradient(300deg, rgba(185, 133, 91, 0.12), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

body.home-dark {
  background: radial-gradient(circle at top right, #f7f1ea 0%, #f6f0e8 45%, #f8f4ee 100%);
  color: var(--light-text);
}

body.home-dark::before {
  background:
    linear-gradient(120deg, rgba(15, 91, 82, 0.05), transparent 40%),
    linear-gradient(300deg, rgba(185, 133, 91, 0.1), transparent 55%);
}

.home-card {
  background: var(--dark-2);
  color: var(--light-text);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(18, 24, 34, 0.08);
  animation: fadeUp 0.7s ease;
}

.home-card p {
  color: var(--muted-light);
}

.home-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 11px;
  color: var(--accent-2);
  font-weight: 600;
  margin: 0;
}

.home-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 18px;
  position: relative;
  z-index: 1;
}

.overview-page .home-section {
  max-width: 1680px;
  padding-left: 0;
  padding-right: 0;
}

.home-section.accent {
  background: transparent;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.home-section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.home-section-head h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3vw, 40px);
  color: var(--light-text);
}

.home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.home-text-block {
  display: grid;
  gap: 12px;
  max-width: 860px;
  color: var(--muted-light);
  line-height: 1.7;
  margin-bottom: 26px;
}

.home-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: center;
}

.home-split.reverse {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.home-split-text h3,
.home-split-text h2 {
  font-family: "Playfair Display", serif;
  margin: 0 0 10px;
  color: var(--light-text);
}

.home-split-text p {
  color: var(--muted-light);
  line-height: 1.7;
}

.home-split-media img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.doctor-gallery-section {
  padding-top: 16px;
  padding-bottom: 90px;
}

.doctor-gallery-head {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.doctor-gallery-head h2 {
  margin: 0;
  max-width: 420px;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #2e1e1e;
  text-align: center;
}

.doctor-gallery-head p {
  width: min(100%, 420px);
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5a544d;
  text-align: left;
}

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

.doctor-gallery-card {
  margin: 0;
}

.doctor-gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0;
  background: #ede7de;
  box-shadow: 0 18px 36px rgba(90, 72, 52, 0.1);
}

.doctor-gallery-card figcaption {
  margin-top: 14px;
  font-family: "Playfair Display", serif;
  font-size: clamp(19px, 2vw, 31px);
  line-height: 1.08;
  color: #000000;
}

.doctor-gallery-card small {
  display: inline-block;
  margin-top: 8px;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000000;
}

.press-page {
  background: #f8f3ee;
}

.press-page::before {
  background:
    linear-gradient(120deg, rgba(210, 198, 184, 0.14), transparent 42%),
    linear-gradient(300deg, rgba(183, 162, 138, 0.12), transparent 55%);
}

.press-hero {
  padding-bottom: 24px;
}

.press-hero h1,
.press-hero p,
.press-hero .eyebrow {
  color: #1c1b1a;
}

.press-hero p:last-child {
  max-width: 760px;
  color: #5e554d;
}

.press-section {
  padding-top: 22px;
  padding-bottom: 96px;
}

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

.press-card {
  background: #e9e1d8;
  padding: 20px 20px 26px;
  display: grid;
  align-content: start;
  min-height: 100%;
}

.press-card-media {
  position: relative;
  background: #f4efe8;
  padding: 20px;
  overflow: hidden;
}

.press-card-track {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
}

.press-card-track img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.press-card-track img.is-active {
  opacity: 1;
  pointer-events: auto;
}

.press-dots {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.press-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(159, 151, 142, 0.55);
}

.press-dots span:last-child {
  background: rgba(128, 120, 112, 0.95);
}

.press-dots span.is-active {
  background: rgba(128, 120, 112, 0.95);
}

.press-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(248, 243, 238, 0.88);
  color: #5b5045;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(64, 52, 40, 0.12);
}

.press-nav-prev {
  left: 28px;
}

.press-nav-next {
  right: 28px;
}

.press-nav:hover {
  background: rgba(255, 250, 246, 0.96);
}

.press-card-single .press-card-track {
  aspect-ratio: 4 / 5;
}

.press-card-single .press-card-track img {
  position: static;
  opacity: 1;
  height: 100%;
}

.press-card-single .press-dots,
.press-card-single .press-nav {
  display: none;
}

.press-card-body {
  padding-top: 16px;
}

.press-card h2 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 2.1vw, 31px);
  font-weight: 400;
  line-height: 1;
  color: #8f7a63;
}

.press-date {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9d8f80;
}

.press-lead {
  margin: 0;
  color: #181514;
  line-height: 1.45;
  font-size: 15px;
}

.press-link {
  color: #6f5a45;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(111, 90, 69, 0.4);
}

.press-link:hover {
  color: #4f3d2d;
  border-bottom-color: rgba(79, 61, 45, 0.85);
}

.editorial-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: start;
}

.editorial-copy {
  display: grid;
  gap: 14px;
}

.editorial-copy h2,
.editorial-copy h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--light-text);
}

.editorial-copy p,
.editorial-copy li {
  color: var(--muted-light);
  line-height: 1.8;
}

.editorial-copy ul,
.editorial-copy ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.editorial-kicker {
  margin: 0;
  color: #e8c7a8;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-triptych {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1fr;
  gap: 34px;
  align-items: start;
}

.editorial-panel {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding-left: 12px;
  padding-right: 12px;
}

.editorial-panel h2,
.editorial-panel h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--light-text);
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1.12;
}

.editorial-panel h3 {
  font-size: clamp(24px, 2.8vw, 42px);
}

.editorial-panel p,
.editorial-panel li {
  color: var(--muted-light);
  line-height: 1.8;
}

.editorial-panel ul {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 8px;
}

.editorial-image-frame img {
  display: block;
  width: 100%;
  border-radius: 42px 0 42px 0;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.3);
}

.editorial-image-frame {
  align-self: center;
}

.light-band {
  max-width: 100%;
  background: #f7f3ee;
  color: var(--ink);
  border-top: 1px solid rgba(15, 15, 15, 0.06);
  border-bottom: 1px solid rgba(15, 15, 15, 0.06);
}

.light-band .editorial-kicker,
.light-band .home-eyebrow {
  color: var(--accent);
}

.light-band .editorial-panel h2,
.light-band .editorial-panel h3,
.light-band .home-section-head h2 {
  color: var(--ink);
}

.light-band .editorial-panel p,
.light-band .editorial-panel li,
.light-band .home-section-head p {
  color: #26313a;
}

.light-band .home-section {
  padding-top: 84px;
  padding-bottom: 84px;
}

.editorial-gallery-head {
  max-width: 860px;
  margin: 0 auto 32px;
  text-align: center;
  display: grid;
  gap: 14px;
}

.editorial-gallery-head h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4vw, 56px);
  color: var(--light-text);
}

.editorial-gallery-head p {
  margin: 0;
  color: var(--muted-light);
  line-height: 1.8;
}

.editorial-rule {
  width: 132px;
  height: 3px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

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

.editorial-duo {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: start;
}

.editorial-duo.equal {
  grid-template-columns: 1fr 1fr;
}

.editorial-column {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding-left: 12px;
  padding-right: 12px;
}

.editorial-column h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--light-text);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.2;
}

.editorial-column p {
  margin: 0;
  color: var(--muted-light);
  line-height: 1.8;
}

.photo-placeholder {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 24px;
  border: 1px dashed rgba(31, 38, 44, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(232, 223, 213, 0.7)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.26) 0,
      rgba(255, 255, 255, 0.26) 16px,
      rgba(219, 205, 190, 0.4) 16px,
      rgba(219, 205, 190, 0.4) 32px
    );
  text-align: center;
  color: #3f3a34;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.photo-placeholder strong,
.photo-placeholder span {
  display: block;
}

.photo-placeholder strong {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.1;
}

.photo-placeholder span {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.photo-placeholder-tall {
  min-height: 520px;
}

.photo-placeholder-wide {
  min-height: 420px;
}

.photo-placeholder-compact {
  min-height: 260px;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  justify-content: center;
  gap: 20px;
}

.before-after-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.04);
}

.before-after-section {
  padding-top: 24px;
  padding-bottom: 96px;
}

.before-after-head {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.before-after-head p:last-child {
  margin: 0;
  color: var(--muted-light);
  line-height: 1.8;
}

.before-after-showcase {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.before-after-compare,
.before-after-summary,
.before-after-case {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 40px rgba(18, 24, 34, 0.08);
}

.before-after-compare {
  --before-after-position: 50%;
  border-radius: 28px;
  overflow: hidden;
  padding: 18px 18px 22px;
  width: min(100%, 600px);
}

.before-after-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, #ebe4db 0%, #f6f1eb 100%);
  touch-action: none;
  max-width: 560px;
  margin: 0 auto;
  cursor: ew-resize;
}

.before-after-image {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.before-after-image-before {
  object-position: 52% 50%;
}

.before-after-image-after {
  object-position: 48% 50%;
}

.before-after-overlay {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--before-after-position)) 0 0);
  z-index: 2;
}

.before-after-overlay .before-after-image {
  inset: 0;
  width: 100%;
}

.before-after-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--before-after-position);
  width: 2px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.06);
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
}

.before-after-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid rgba(17, 17, 17, 0.14);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.18);
  transform: translate(-50%, -50%);
}

.before-after-divider::before {
  content: "\2039    \203A";
  position: absolute;
  top: 50%;
  left: 50%;
  color: #111111;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.before-after-pill {
  position: absolute;
  top: 16px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.68);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 5;
}

.before-after-pill-left {
  left: 16px;
}

.before-after-pill-right {
  right: 16px;
}

.before-after-range {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  pointer-events: none;
}

.before-after-slider-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
}

.before-after-slider-row span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.before-after-range-visible {
  position: static;
  width: 100%;
  height: 20px;
  margin: 0;
  opacity: 1;
  pointer-events: auto;
  cursor: ew-resize;
  accent-color: var(--accent);
}

.before-after-range::-webkit-slider-thumb {
  appearance: none;
  width: 44px;
  height: 44px;
}

.before-after-range::-moz-range-thumb {
  width: 44px;
  height: 44px;
  border: 0;
}

.before-after-summary {
  max-width: 760px;
  margin: 26px auto 0;
  border-radius: 24px;
  padding: 28px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.before-after-summary-tag,
.before-after-case-body span {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.before-after-summary h3,
.before-after-case-body h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--light-text);
}

.before-after-summary p,
.before-after-meta,
.before-after-case-body p {
  margin: 0;
  color: var(--muted-light);
  line-height: 1.8;
}

.before-after-meta {
  padding-left: 18px;
}

.before-after-meta li + li {
  margin-top: 8px;
}

.before-after-cases {
  display: flex;
  flex-direction: column;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  gap: 0;
  margin-top: 26px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.before-after-case {
  appearance: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  border-radius: 0;
  overflow: visible;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: transparent;
  box-shadow: none;
}

.before-after-case:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.45);
}

.before-after-case.is-active {
  background: rgba(15, 91, 82, 0.08);
  box-shadow: none;
}

.before-after-case-body {
  padding: 16px 4px;
  display: grid;
  grid-template-columns: minmax(0, 220px) 1fr auto;
  gap: 18px;
  align-items: center;
}

.before-after-case-body h3,
.before-after-case-body p,
.before-after-case-body span {
  margin: 0;
}

.before-after-note {
  max-width: 860px;
  margin: 24px auto 0;
  text-align: center;
  color: var(--muted-light);
  line-height: 1.7;
  font-size: 14px;
}

.treatment-page {
  --treat-accent: #0f5b52;
  --treat-accent-soft: rgba(15, 91, 82, 0.2);
  --treat-text: #33404b;
  --treat-title: #1a2026;
  background: #f7f5f2;
}

.treatment-page .page-hero h1 {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.treatment-page .page-hero p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--treat-text);
  font-size: 18px;
  line-height: 1.7;
}

.treatment-page .editorial-panel,
.treatment-page .editorial-column {
  display: grid;
  gap: 12px;
}

.treatment-page .editorial-panel p,
.treatment-page .editorial-column p {
  margin: 0;
  color: var(--treat-text);
  line-height: 1.72;
}

.treatment-page .editorial-panel li,
.treatment-page .editorial-column li,
.treatment-page .editorial-gallery-head p {
  color: var(--treat-text);
}

.treatment-page .editorial-panel h2,
.treatment-page .editorial-panel h3,
.treatment-page .editorial-column h3 {
  color: var(--treat-title);
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.08;
}

.treatment-page .editorial-kicker,
.treatment-page .light-band .editorial-kicker {
  color: var(--treat-accent);
  letter-spacing: 0.12em;
}

.treatment-page .editorial-rule {
  background: var(--treat-accent-soft);
  width: 90px;
  height: 2px;
}

.treatment-page .editorial-panel ul,
.treatment-page .editorial-column ul {
  margin-left: 2px;
  padding-left: 20px;
  border-left: none;
  gap: 10px;
}

.treatment-page .editorial-image-frame img {
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(16, 25, 37, 0.12);
}

.treatment-page .hollywood-peel-photo {
  max-width: 400px;
  max-height: 550px;
  margin: 0 auto;
  object-fit: cover;
}

.treatment-tone-precision {
  --treat-accent: #1e5d63;
  --treat-accent-soft: rgba(30, 93, 99, 0.24);
}

.treatment-tone-regen {
  --treat-accent: #7a5c38;
  --treat-accent-soft: rgba(122, 92, 56, 0.24);
}

.treatment-tone-structural {
  --treat-accent: #2f576f;
  --treat-accent-soft: rgba(47, 87, 111, 0.23);
}

.treatment-tone-expressive {
  --treat-accent: #6b4f77;
  --treat-accent-soft: rgba(107, 79, 119, 0.24);
}

.treatment-tone-functional {
  --treat-accent: #4e6a46;
  --treat-accent-soft: rgba(78, 106, 70, 0.24);
}

.treatment-page .treatment-shell {
  display: grid;
  gap: 18px;
}

.treatment-page .treatment-shell h2,
.treatment-page .treatment-shell h3 {
  letter-spacing: -0.01em;
}

.treatment-page .treatment-summary {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.treatment-page .treatment-summary p {
  margin: 0;
  color: var(--treat-text);
}

.treatment-page .treatment-box {
  background: #ffffff;
  border: 1px solid rgba(19, 31, 44, 0.08);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(15, 20, 30, 0.06);
}

.treatment-page .light-band .treatment-box {
  background: #ffffff;
}

.treatment-page .treatment-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.treatment-page .treatment-chip-list li {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--treat-accent-soft);
  color: var(--treat-title);
  font-size: 13px;
  line-height: 1.3;
  background: #fff;
}

.treatment-page .treatment-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.treatment-page .treatment-steps li {
  display: grid;
  gap: 6px;
  padding: 16px 16px 16px 18px;
  border-left: 3px solid var(--treat-accent-soft);
  background: #ffffff;
  border-radius: 8px;
}

.treatment-page .treatment-steps strong {
  color: var(--treat-title);
  font-family: "Playfair Display", serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
}

.treatment-page .treatment-steps span {
  color: var(--treat-text);
  line-height: 1.6;
}

.treatment-page .home-section.dark,
.treatment-page .home-section.dark.accent {
  border-top: 1px solid rgba(16, 25, 37, 0.08);
  border-bottom: 1px solid rgba(16, 25, 37, 0.08);
}

.treatment-page .light-band {
  background: #f4f1ec;
}

.treatment-page .cta-panel {
  background: #ffffff;
  border: 1px solid rgba(16, 25, 37, 0.08);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(16, 25, 37, 0.08);
}

@media (max-width: 980px) {
  .editorial-triptych,
  .editorial-duo,
  .editorial-columns,
  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .editorial-duo.equal {
    grid-template-columns: 1fr;
  }

  .editorial-panel,
  .editorial-column {
    padding-left: 0;
    padding-right: 0;
  }

  .before-after-showcase,
  .before-after-cases {
    grid-template-columns: 1fr;
  }

  .before-after-frame {
    aspect-ratio: 4 / 5;
  }

  .photo-placeholder-tall,
  .photo-placeholder-wide {
    min-height: 320px;
  }

  .treatment-page .hollywood-peel-photo {
    max-width: 380px;
    max-height: 500px;
  }
}

.video-frame {
  aspect-ratio: 9 / 16;
  width: min(320px, 90%);
  justify-self: end;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  background: rgba(10, 10, 10, 0.6);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-marquee {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 56px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.brand-track {
  position: relative;
  height: 70px;
  width: 100%;
}

.brand-track img {
  position: absolute;
  top: 50%;
  height: 54px;
  width: auto;
  transform: translateY(-50%);
  opacity: 0.7;
  filter: brightness(1.2) saturate(1.1);
  animation: logo-run 5s linear infinite, logoFade 3.6s ease-in-out infinite;
}

.brand-track img:nth-child(2) {
  animation-delay: -1.7s, -1.8s;
}

.brand-track img:nth-child(3) {
  animation-delay: -3.4s, -2.6s;
}


.home-contact {
  max-width: 1180px;
  margin: 0 auto 40px;
  padding: 50px 18px 70px;
  display: grid;
  grid-template-columns: 1fr;
}

.home-contact-card {
  background: var(--dark-3);
  color: #f9f7f4;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-contact-card.single {
  background: rgba(8, 9, 11, 0.35);
  backdrop-filter: blur(6px);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.home-contact-card a {
  color: #f9f7f4;
  text-decoration: none;
}

.home-contact-card a:hover {
  text-decoration: underline;
}

.social-icon {
  width: 32px;
  height: 32px;
  margin-right: 12px;
  vertical-align: middle;
  color: #fff; /* ensure visibility on dark backgrounds */
}

.social-links {
  margin-top: 8px;
}

.btn-primary {
  background: #0b1f3b;
  color: #fff;
}

.btn-primary:hover {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
}

.btn-ghost-light {
  background: transparent;
  color: #0b1f3b;
  border: 1px solid #0b1f3b;
}

.btn-ghost-light:hover {
  background: #0b1f3b;
  color: #fff;
}

.topbar {
  padding: 10px 20px;
  background: rgba(8, 10, 13, 0.96);
  color: #fff;
  position: sticky;
  z-index: 10;
  backdrop-filter: blur(6px);
}

.topbar-grid {
  display: grid;
  grid-template-columns: 1fr auto 2.2fr;
  align-items: center;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  text-align: center;
}

.brand-logo {
  width: 92px;
  height: 92px;
  border-radius: 10px;
  object-fit: cover;
  border: none;
  box-shadow: none;
  margin-bottom: 4px;
}

.brand-doctor {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  margin-bottom: 6px;
}

.brand-title {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
}

.brand-sub {
  font-size: 11px;
  color: #d1d5db;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.container {
  max-width: 1100px;
  margin: 24px auto;
  padding: 0 16px 40px;
  position: relative;
  z-index: 1;
}

.panel {
  margin-bottom: 24px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
}

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

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 40px);
  margin: 6px 0 12px;
}

.hero-text {
  color: var(--muted);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.hero-note {
  font-size: 13px;
  color: var(--muted);
}

.hero-card {
  background: linear-gradient(140deg, #ffffff, #f8f2ed);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  margin-top: 0;
}

.hero-list {
  padding-left: 16px;
  margin: 0;
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: var(--accent-2);
  font-weight: 600;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  box-shadow: var(--shadow);
  animation: rise 0.5s ease;
}

.section-head {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

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

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.card-header h3 {
  margin: 0;
}

.tag {
  background: rgba(15, 91, 82, 0.12);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}

.tag.soft {
  background: rgba(185, 133, 91, 0.16);
  color: #8b5a3a;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  color: var(--muted);
  background: #fbfaf8;
}

.price {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--accent);
}

.treatment-card,
.gift-card {
  display: grid;
  gap: 8px;
}

.highlight-card {
  display: grid;
  gap: 10px;
  background: linear-gradient(120deg, rgba(15, 91, 82, 0.08), rgba(185, 133, 91, 0.1));
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.product {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  background: #f3f4f6;
}

.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

input, button {
  font-size: 14px;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
}

.btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn.ghost {
  background: transparent;
  color: #111111;
  border: 1px solid #111111;
}

.btn.ghost.dark {
  color: var(--accent);
  border-color: var(--accent);
}

.btn-blue-login{
  background: #0b1f3b;
}

.btn-blue {
  background: #0b1f3b;
}

.btn-blue:hover {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.btn-blue:active {
  background: rgba(11, 31, 59, 0.4);
}

.top-menu {
  position: absolute;
  top: 12px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  z-index: 1000;
}

.top-menu .brand-logo {
  grid-column: 2;
  justify-self: center;
  width: 140px;
  height: auto;
  border-radius: 10px;
}

.top-menu-nav {
  grid-column: 3;
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding-bottom: 12px;
}

.top-menu-nav > a,
.nav-dropdown-toggle {
  text-decoration: none;
  color: #111111;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-menu-nav > a:hover,
.nav-dropdown-toggle:hover {
  color: var(--accent);
}

.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.nav-item-dropdown.is-open .nav-dropdown-toggle::after {
  transform: rotate(-135deg) translateY(-1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1300;
  width: min(430px, 78vw);
  max-height: 72vh;
  overflow: auto;
  display: grid;
  gap: 14px;
  padding: 30px 18px 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  background: rgba(247, 243, 238, 0.98);
  box-shadow: 0 24px 50px rgba(20, 24, 28, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.nav-item-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-overview {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: #111111;
  color: #f7f3ee;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-dropdown-section {
  width: 100%;
  display: grid;
  gap: 10px;
}

.nav-section-toggle {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent-2);
  font: inherit;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: left;
  pointer-events: none;
}

.nav-dropdown-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
}

.nav-dropdown-links a {
  color: #211f1d;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 1.35;
  text-transform: none;
}

.nav-dropdown-links a:hover,
.nav-dropdown-overview:hover {
  color: var(--accent);
}

.nav-dropdown-overview:hover {
  background: #f1ebe4;
  border-color: rgba(17, 17, 17, 0.12);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 4px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #111111;
  margin: 5px 0;
  transform-origin: center;
  transition: transform 0.22s ease, opacity 0.18s ease, background 0.18s ease;
}

.top-menu.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.top-menu.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.top-menu.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 980px) {
  .top-menu {
    position: absolute;
    top: 0;
    left: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 12px 14px;
    gap: 10px;
    background: transparent;
  }
  .top-menu .brand-logo {
    grid-column: 1;
    width: 140px;
  }
  .menu-toggle {
    display: block;
    position: fixed;
    top: 16px;
    right: 14px;
    grid-column: 1;
    justify-self: end;
    z-index: 1201;
  }
  .top-menu-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    grid-column: 1;
    display: block;
    justify-self: center;
    width: 100%;
    max-height: min(78dvh, 760px);
    padding: 70px 24px 24px;
    margin-top: 0;
    border-radius: 0 0 24px 24px;
    border: 0;
    background: rgba(247, 243, 238, 0.98);
    backdrop-filter: blur(8px);
    box-shadow: 0 24px 44px rgba(20, 24, 28, 0.16);
    gap: 0;
    transform: translateY(-24px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.28s ease, opacity 0.22s ease, visibility 0.22s ease;
    pointer-events: none;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }
  .top-menu.menu-open .top-menu-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .top-menu-nav > a,
  .nav-dropdown-toggle {
    display: block;
    width: 100%;
    min-width: 0;
    text-align: left;
    padding: 10px 0;
    font-size: 15px;
    letter-spacing: 0.06em;
    border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  }
  .nav-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-item-dropdown {
    display: block;
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }
  .nav-dropdown-menu {
    position: static;
    width: 100%;
    min-width: 0;
    max-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    overflow-x: hidden;
    overflow: hidden;
    transition: max-height 0.28s ease, padding-top 0.28s ease, padding-bottom 0.28s ease;
  }
  .nav-item-dropdown.is-open .nav-dropdown-menu {
    max-height: 2400px;
    padding-top: 12px;
    padding-bottom: 10px;
  }
  .nav-dropdown-overview {
    display: block;
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    margin-bottom: 10px;
    padding: 0 0 12px;
    border-radius: 0;
    background: transparent;
    color: #111111;
    font-size: 13px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  }
  .nav-dropdown-links {
    width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.24s ease;
    padding-left: 0;
  }
  .nav-dropdown-section.is-open .nav-dropdown-links {
    max-height: 1400px;
  }
  .nav-section-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8px 0;
    color: #111111;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    pointer-events: auto;
    cursor: pointer;
  }
  .nav-section-toggle::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }
  .nav-dropdown-section.is-open .nav-section-toggle::after {
    transform: rotate(-135deg);
  }
  .nav-dropdown-links a {
    display: block;
    width: 100%;
    padding: 10px 0;
    margin-left: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    font-size: 14px;
    line-height: 1.4;
  }
  .nav-dropdown-section + .nav-dropdown-section {
    margin-top: 0;
  }
  body.menu-lock {
    overflow: hidden;
  }
  .intro {
    min-height: 82vh;
    height: auto;
  }
  .intro-content {
    padding: 210px 16px 64px;
  }
  .home-section {
    padding: 56px 16px;
  }
  .home-contact {
    padding: 36px 16px 56px;
  }
  .video-frame {
    width: min(280px, 100%);
    justify-self: center;
  }
}

@media (max-width: 600px) {
  .top-menu {
    padding: 10px 10px;
    gap: 8px;
  }
  .top-menu .brand-logo {
    width: 124px;
  }
  .menu-toggle {
    top: 10px;
    right: 10px;
  }
  .top-menu-nav {
    padding-top: 20px;
  }
  .top-menu-nav { gap: 14px; }
  .top-menu-nav a {
    font-size: 14px;
  }
  .intro {
    min-height: 76vh;
  }
  .intro-content {
    padding: 175px 14px 46px;
  }
  .intro-content h1 {
    font-size: clamp(24px, 8vw, 34px);
  }
  .home-section {
    padding: 44px 14px;
  }
  .home-section-head h2 {
    font-size: clamp(22px, 7vw, 30px);
  }
  .home-grid {
    grid-template-columns: 1fr;
  }
  .home-contact {
    padding: 24px 14px 44px;
  }
}

.intro {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #f7f3ee;
}

.intro-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
  display: block;
}


.intro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.62), rgba(10, 10, 10, 0.38));
}

.intro-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #111111;
  padding: 280px 16px 80px;
}

.intro-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 44px);
  margin: 12px 0 20px;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 16px;
  background: linear-gradient(rgba(5, 5, 5, 0.55), rgba(5, 5, 5, 0.65)), url("fondo_clinica.png");
  background-size: cover;
  background-position: center;
}

.login-card {
  width: min(420px, 92vw);
  display: grid;
  gap: 12px;
}

.login-card h2{
  text-align: center;
}

.login-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.login-logo {
  display: flex;
  justify-content: center;
}

.login-right {
  display: flex;
  justify-content: flex-end;
}

.login-topbar .brand-logo {
  width: 64px;
  height: 64px;
  opacity: 0.65;
  filter: grayscale(0.3);
  margin-bottom: 0;
}

.login-back-only {
  position: absolute;
  top: 26px;
  right: 16px;
  z-index: 2;
}

.auth {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}

.auth-status {
  font-size: 13px;
  color: #e5e7eb;
}

.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-right: 18px;
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #ffffff;
  color: #0b0b0b;
  font-size: 11px;
  font-weight: 700;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 92vw);
  height: 100vh;
  background: #ffffff;
  border-left: 1px solid var(--border);
  box-shadow: -10px 0 24px rgba(0, 0, 0, 0.15);
  padding: 16px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 20;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 12px;
}

.cart-panel.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cart-body {
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  background: #fafafa;
}

.cart-orders {
  border-top: 1px solid var(--border);
  padding-top: 8px;
}

.cart-orders h4 {
  margin: 0 0 8px;
}

.msg {
  color: var(--muted);
  font-size: 13px;
}

.login-card .msg {
  margin: 0;
}

.login-card .msg:empty {
  display: none;
}

.forgot-link {
  justify-self: end;
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  margin-top: -4px;
}

.forgot-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.checkout {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.checkout input {
  flex: 1;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th, .table td {
  border-bottom: 1px solid var(--border);
  padding: 8px;
  text-align: left;
}

.admin-form {
  display: grid;
  gap: 12px;
}

.admin-list {
  overflow: auto;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.source-list {
  margin: 12px 0 0;
  padding-left: 16px;
  color: var(--muted);
}

.source-list a {
  color: var(--accent);
  text-decoration: none;
}

.source-list a:hover {
  text-decoration: underline;
}

.gift-layout {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(280px, 1fr);
  gap: 18px;
  align-items: stretch;
}

.gift-image img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.gift-form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  color: var(--text);
  background: #fff;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
}

.checkbox input {
  width: auto;
}

@media (max-width: 860px) {
  .gift-layout {
    grid-template-columns: 1fr;
  }
  .gift-image img {
    max-height: 360px;
  }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes logo-run {
  0% { left: -40%; opacity: 0.1; }
  15% { opacity: 1; }
  100% { left: 110%; opacity: 0.1; }
}

@keyframes logoFade {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.9; }
}

@keyframes brands-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(var(--brands-loop-width, 0px) * -1));
  }
}

@keyframes blink-caret {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.top-menu > a {
  grid-column: 2;
  justify-self: center;
}

.inner-page .top-menu {
  position: relative;
  top: 0;
  padding-top: 6px;
}

.page-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 18px 46px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.overview-page .page-hero {
  max-width: 1680px;
  padding-left: 0;
  padding-right: 0;
}

.page-hero-tight {
  padding-top: 4px;
}

.page-hero h1 {
  margin: 10px auto 14px;
  max-width: 860px;
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 5vw, 54px);
  color: var(--light-text);
}

.page-hero p:last-of-type,
.hero-lead {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted-light);
  line-height: 1.75;
  font-size: 17px;
}

.intro-content-wide {
  max-width: 880px;
  margin: 0 auto;
}

.hero-actions-center {
  justify-content: center;
}

.feature-strip {
  margin-top: -34px;
}

.service-grid,
.testimonial-grid,
.blog-grid,
.gallery-grid,
.benefit-grid,
.faq-list,
.footer-grid,
.contact-layout {
  display: grid;
  gap: 18px;
}

.service-grid,
.testimonial-grid,
.gallery-grid,
.benefit-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.blog-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.faq-list,
.footer-grid,
.contact-layout {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card,
.quote-card,
.benefit-card,
.faq-item,
.contact-panel,
.blog-card,
.gallery-card,
.cta-panel,
.map-card,
.landing-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(18, 24, 34, 0.08);
}

.service-card,
.quote-card,
.benefit-card,
.faq-item,
.contact-panel,
.cta-panel,
.map-card {
  padding: 24px;
}

.service-card,
.blog-card,
.gallery-card,
.landing-card {
  overflow: hidden;
}

.service-card h3,
.quote-card h3,
.benefit-card h3,
.faq-item h3,
.contact-panel h2,
.cta-panel h2,
.gallery-card h3,
.blog-card h3,
.map-card h2,
.landing-card h3 {
  margin: 0 0 10px;
  color: var(--light-text);
  font-family: "Playfair Display", serif;
}

.service-card p,
.quote-card p,
.benefit-card p,
.faq-item p,
.contact-panel p,
.contact-panel a,
.blog-card p,
.gallery-card p,
.cta-panel p {
  color: var(--muted-light);
  line-height: 1.7;
}

.service-card a,
.blog-card a,
.gallery-card a,
.landing-card a,
.cta-panel a,
.site-footer a {
  color: #111111;
  text-decoration: none;
}

.service-card a:hover,
.blog-card a:hover,
.site-footer a:hover {
  color: var(--accent-2);
}

.service-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(185, 133, 91, 0.16);
  color: #e8c7a8;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-card span {
  color: #6b7280;
  font-size: 13px;
}

.ethical-note {
  max-width: 860px;
  margin: 0 auto;
}

.reviews-cta {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.blog-card img,
.gallery-card img,
.landing-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.landing-card img {
  height: 420px;
}

.home-section.accent .landing-card:nth-child(1) img,
.home-section.accent .landing-card:nth-child(2) img,
.home-section.accent .landing-card:nth-child(3) img,
.home-section.accent .landing-card:nth-child(4) img {
  object-position: center 22%;
}

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

.landing-card-body {
  padding: 20px 22px 22px;
}

.blog-card div,
.gallery-card h3,
.gallery-card p {
  padding-left: 22px;
  padding-right: 22px;
}

.blog-card div {
  padding-top: 18px;
  padding-bottom: 22px;
}

.gallery-card h3 {
  padding-top: 20px;
}

.gallery-card p {
  padding-bottom: 22px;
}

.cta-panel {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.final-cta {
  padding-top: 24px;
}

.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px 56px;
  position: relative;
  z-index: 1;
}

.site-footer h3 {
  margin-top: 0;
  color: var(--light-text);
}

.site-footer p {
  color: var(--muted-light);
  line-height: 1.7;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #1c8b72, #0f5b52);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 36px rgba(12, 33, 29, 0.45);
}

.whatsapp-float svg {
  width: 44px;
  height: 44px;
  display: block;
  fill: currentColor;
}

.top-menu-home .top-menu-nav > a {
  color: rgba(255, 255, 255, 0.92);
}

.top-menu-home .nav-dropdown-toggle {
  color: rgba(255, 255, 255, 0.92);
}

.top-menu-home .menu-toggle span {
  background: #ffffff;
}

.top-menu-home .top-menu-nav > a:hover,
.top-menu-home .nav-dropdown-toggle:hover {
  color: #ffffff;
}

.intro-home {
  height: 100vh;
  min-height: 760px;
}

.intro-overlay-soft {
  background:
    linear-gradient(180deg, rgba(18, 16, 14, 0.28) 0%, rgba(18, 16, 14, 0.38) 28%, rgba(18, 16, 14, 0.58) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 42%);
}

.intro-content-home {
  padding-top: clamp(330px, 38vh, 420px);
  padding-bottom: 72px;
  color: #ffffff;
}

.intro-content-home .eyebrow,
.intro-content-home .hero-lead,
.intro-content-home h1 {
  color: #ffffff;
}

.intro-content-home .eyebrow {
  letter-spacing: 0.3em;
}

.intro-content-home .hero-lead {
  font-size: 18px;
  max-width: 720px;
}

.home-section-tight {
  padding-top: 48px;
}

.home-section-head.center {
  text-align: center;
  justify-items: center;
}

.areas-section {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  background: #e3dbd1;
  padding-top: 64px;
  padding-bottom: 72px;
  padding-left: 22px;
  padding-right: 22px;
  border-radius: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.area-card {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  text-decoration: none;
  background-image:
    linear-gradient(180deg, rgba(25, 23, 21, 0.18), rgba(25, 23, 21, 0.3)),
    url("indice/laser.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 42px rgba(70, 56, 41, 0.12);
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.area-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 48px rgba(70, 56, 41, 0.18);
  filter: brightness(1.02);
}

.area-card-1 {
  background-image:
    linear-gradient(180deg, rgba(25, 23, 21, 0.18), rgba(25, 23, 21, 0.3)),
    url("indice/mefacial.png");
}

.area-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 26px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: #171717;
  font-size: clamp(24px, 1.8vw, 32px);
  font-weight: 700;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.home-section-editorial {
  padding-top: 84px;
  padding-bottom: 84px;
}

.editorial-why {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: center;
}

.editorial-why-media img {
  display: block;
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 22px 44px rgba(63, 51, 37, 0.16);
}

.editorial-why-copy {
  display: grid;
  gap: 16px;
}

.editorial-why-copy h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.14;
  color: #181614;
  min-height: 124px;
}

#rotating-claim {
  position: relative;
}

#rotating-claim::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.95em;
  margin-left: 8px;
  vertical-align: -0.08em;
  background: #181614;
  animation: blink-caret 0.9s steps(1, end) infinite;
}

.editorial-why-copy p {
  margin: 0;
  color: #4f4a44;
  line-height: 1.85;
  font-size: 16px;
}

.brands-section {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.brands-panel {
  width: 100%;
  margin-top: 28px;
  background: #d9d2c9;
  padding: 48px 32px 54px;
  overflow: hidden;
  position: relative;
}

.brands-panel::before,
.brands-panel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.brands-panel::before {
  left: 0;
  background: linear-gradient(90deg, #d9d2c9 0%, rgba(217, 210, 201, 0) 100%);
}

.brands-panel::after {
  right: 0;
  background: linear-gradient(270deg, #d9d2c9 0%, rgba(217, 210, 201, 0) 100%);
}

.brands-grid {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: brands-scroll 24s linear infinite;
  will-change: transform;
}

.brand-item {
  display: grid;
  justify-items: center;
  align-items: center;
  min-height: 126px;
  min-width: 250px;
  flex: 0 0 auto;
  padding: 10px 8px;
}

.brands-panel:hover .brands-grid {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .brands-grid {
    animation: none;
    transform: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.brand-item img {
  display: block;
  max-width: min(170px, 100%);
  max-height: 62px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.04) opacity(0.88);
}

.brand-item-text {
  text-align: center;
  color: #2d2a27;
}

.brand-item-text span {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 2vw, 40px);
  line-height: 1;
}

.brand-item-text small {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: rgba(45, 42, 39, 0.82);
}

.reviews-section {
  padding-top: 88px;
}

.reviews-summary {
  max-width: 760px;
  margin: 0 auto 28px;
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.reviews-summary p {
  margin: 0;
  color: #5a544d;
  line-height: 1.75;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 22, 20, 0.08);
  box-shadow: 0 12px 28px rgba(30, 27, 23, 0.08);
}

.google-logo {
  display: block;
  width: auto;
  height: 32px;
  object-fit: contain;
}

.google-stars {
  letter-spacing: 0.14em;
  color: #f4b400;
  font-size: 22px;
}

.reviews-summary a {
  color: #181614;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.review-card h3 {
  font-size: 24px;
}

.site-footer-dark {
  max-width: 100%;
  margin-top: 46px;
  padding: 0;
  background: #080808;
}

.footer-home {
  max-width: 1240px;
  margin: 0 auto;
  padding: 42px 18px;
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(480px, 1.2fr);
  gap: 28px;
  align-items: center;
}

.footer-brand-block img {
  width: min(220px, 100%);
  height: auto;
  display: block;
}

.footer-info-block {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-info-block h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-info-block p,
.footer-info-block a {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  text-decoration: none;
}

.site-footer-dark .footer-info-block a[href^="tel:"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-info-block a:hover {
  color: #ffffff;
}

.site-footer-dark .footer-info-block a[href^="tel:"]:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.footer-legal-strip {
  background: var(--dark);
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.footer-legal-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(17, 17, 17, 0.34);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-legal-inner a {
  color: var(--light-text);
  text-decoration: none;
}

.footer-legal-button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--light-text);
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.footer-legal-inner a:hover {
  color: var(--accent-2);
}

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

.legal-page .page-hero {
  padding-bottom: 34px;
}

.legal-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px 84px;
}

.legal-card {
  padding: 0;
}

.legal-card + .legal-card {
  margin-top: 34px;
}

.legal-card h2 {
  margin: 0 0 14px;
  color: var(--light-text);
  font-size: clamp(24px, 4vw, 34px);
}

.legal-card h3 {
  margin: 24px 0 10px;
  color: var(--light-text);
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-card p,
.legal-card li {
  color: #23201d;
  line-height: 1.8;
}

.legal-card p {
  margin: 0 0 14px;
}

.legal-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.legal-card li {
  margin: 0 0 14px;
}

.legal-card strong,
.legal-card a {
  color: var(--light-text);
}

.legal-card a:hover {
  color: #d8b38f;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.field span {
  color: #111111;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.98);
}

.contact-stack {
  display: grid;
  gap: 12px;
}

.contact-stage {
  padding-top: 24px;
  padding-bottom: 88px;
}

.contact-showcase {
  position: relative;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.contact-spotlight {
  position: relative;
  z-index: 2;
  background: #1a1816;
  color: #f6f1ea;
  padding: 42px 46px;
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(32, 25, 20, 0.28);
}

.contact-spotlight-kicker {
  margin: 0 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 2.1vw, 30px);
  color: #f6f1ea;
}

.contact-spotlight h2 {
  margin: 0;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(246, 241, 234, 0.12);
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1;
  color: #f6f1ea;
}

.contact-spotlight-list {
  display: grid;
  gap: 26px;
  padding-top: 28px;
}

.contact-spotlight-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
}

.contact-spotlight-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #f6f1ea;
  display: grid;
  place-items: center;
  color: #1a1816;
  flex-shrink: 0;
}

.contact-spotlight-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.contact-spotlight-item h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 600;
  color: #f6f1ea;
}

.contact-spotlight-item p,
.contact-spotlight-item a {
  margin: 0;
  color: rgba(246, 241, 234, 0.82);
  line-height: 1.65;
  text-decoration: none;
}

.contact-spotlight-item a:hover {
  color: #ffffff;
}

.contact-spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.contact-spotlight-actions .btn.ghost {
  color: #f6f1ea;
  border-color: rgba(246, 241, 234, 0.6);
}

.contact-spotlight-actions .btn.ghost:hover {
  color: #111111;
  background: #f6f1ea;
}

.contact-map-shell {
  position: relative;
  min-height: 520px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 26px 48px rgba(36, 28, 22, 0.16);
  background:
    linear-gradient(135deg, rgba(15, 91, 82, 0.08), rgba(185, 133, 91, 0.1)),
    #f7f3ee;
}

.contact-map-shell iframe {
  display: block;
  width: 100%;
  min-height: 520px;
  border: 0;
}

.contact-map-placeholder {
  min-height: 520px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
  padding: 36px;
}

.contact-map-placeholder[hidden] {
  display: none;
}

.contact-map-placeholder-eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-2);
}

.contact-map-placeholder h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--light-text);
}

.contact-map-placeholder p {
  max-width: 420px;
  margin: 0;
  color: var(--muted-light);
  line-height: 1.7;
}

.map-card iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 16px;
}

.form-feedback {
  min-height: 24px;
  margin: 0;
  font-size: 14px;
}

.form-feedback.is-error,
.input-error {
  color: #f4b6b6;
  border-color: rgba(244, 182, 182, 0.8);
}

.form-feedback.is-success {
  color: #b8ead4;
}

@media (max-width: 980px) {
  .top-menu > a {
    grid-column: 1;
  }

  .inner-page .top-menu {
    padding-top: 6px;
  }

  .page-hero {
    padding-top: 8px;
  }

  .top-menu-home .top-menu-nav {
    background: rgba(247, 243, 238, 0.98);
  }

  .top-menu-home .top-menu-nav > a,
  .top-menu-home .nav-dropdown-toggle {
    color: #111111;
  }

  .top-menu-home .menu-toggle span {
    background: #111111;
  }

  .intro-home {
    min-height: 84vh;
  }

  .intro-content-home {
    padding-top: clamp(220px, 34vh, 300px);
  }

  .areas-grid,
  .testimonial-grid-home,
  .footer-info-block,
  .footer-home,
  .editorial-why {
    grid-template-columns: 1fr;
  }

  .editorial-why {
    gap: 24px;
  }

  .area-card {
    min-height: 300px;
    background-size: cover;
    background-position: center;
  }

  .areas-section {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 52px 16px 58px;
    border-radius: 0;
  }

  .editorial-why-copy h2 {
    min-height: 0;
  }

  .footer-home {
    text-align: center;
  }

  .footer-brand-block img {
    margin: 0 auto;
  }

  .brands-panel {
    padding: 38px 18px 42px;
  }

  .brands-panel::before,
  .brands-panel::after {
    width: 52px;
  }

  .brands-grid {
    gap: 16px;
  }

  .doctor-gallery-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .contact-showcase {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 18px;
  }

  .contact-map-shell {
    margin-left: 0;
    min-height: 420px;
    order: 2;
  }

  .site-footer-dark .footer-info-block a[href^="tel:"] {
    justify-self: center;
  }
}

@media (max-width: 600px) {
  .page-hero {
    padding: 5px 14px 30px;
  }

  .page-hero-tight {
    padding-top: 0;
  }

  .page-hero h1 {
    font-size: clamp(26px, 9vw, 38px);
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 68px;
    height: 68px;
    padding: 0;
  }

  .site-footer-dark .footer-info-block a[href^="tel:"] {
    width: 100%;
    max-width: 280px;
    padding: 12px 18px;
    font-size: 16px;
    letter-spacing: 0.02em;
  }

  .service-card,
  .quote-card,
  .benefit-card,
  .faq-item,
  .contact-panel,
  .cta-panel,
  .map-card {
    padding: 18px;
  }

  .intro-content-home {
    padding-top: clamp(240px, 40vh, 320px);
    padding-bottom: 54px;
  }

  .doctor-gallery-head h2 {
    max-width: 280px;
    font-size: clamp(32px, 10vw, 48px);
  }

  .press-card {
    padding: 14px 14px 20px;
  }

  .press-card-media {
    padding: 14px;
  }

  .press-nav {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .press-nav-prev {
    left: 18px;
  }

  .press-nav-next {
    right: 18px;
  }

  .intro-content-home .hero-lead {
    font-size: 16px;
  }

  .area-card span {
    width: calc(100% - 28px);
    font-size: 22px;
  }

  .google-badge {
    flex-direction: column;
    gap: 8px;
    border-radius: 24px;
  }

  .brand-item {
    min-height: 72px;
    min-width: 180px;
    padding: 18px 14px;
  }

  .brand-item-text span {
    font-size: 26px;
  }

  .brand-item-text small {
    font-size: 12px;
  }

  .contact-stage {
    padding-top: 8px;
    padding-bottom: 64px;
  }

  .contact-spotlight {
    padding: 30px 22px;
  }

  .contact-spotlight-item {
    grid-template-columns: 58px 1fr;
    gap: 14px;
  }

  .contact-spotlight-icon {
    width: 54px;
    height: 54px;
  }

  .contact-spotlight-icon svg {
    width: 24px;
    height: 24px;
  }

  .contact-map-shell,
  .contact-map-shell iframe {
    min-height: 320px;
  }

  .contact-map-placeholder {
    min-height: 320px;
    padding: 24px;
  }

}

@media (max-width: 760px) {
  .areas-section {
    padding-left: 0;
    padding-right: 0;
  }

  .areas-section .home-section-head {
    padding-left: 16px;
    padding-right: 16px;
  }

  .areas-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 86vw);
    gap: 12px;
    margin-top: 28px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 16px 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .areas-grid::-webkit-scrollbar {
    height: 8px;
  }

  .areas-grid::-webkit-scrollbar-thumb {
    background: rgba(75, 67, 58, 0.26);
    border-radius: 999px;
  }

  .areas-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.28);
  }

  .area-card {
    min-height: min(430px, 70vh);
    scroll-snap-align: center;
  }
}

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

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

  .landing-card img {
    height: 360px;
  }

  .footer-legal-inner {
    gap: 8px;
    font-size: 12px;
  }
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  width: min(420px, calc(100vw - 24px));
  padding: 18px;
  border: 1px solid rgba(27, 29, 31, 0.12);
  border-radius: 18px;
  background: rgba(255, 253, 250, 0.96);
  box-shadow: 0 20px 50px rgba(28, 23, 20, 0.16);
  backdrop-filter: blur(12px);
  color: var(--text);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0 0 14px;
  line-height: 1.6;
  color: var(--muted-light);
}

.cookie-banner a {
  color: var(--accent);
  font-weight: 700;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-btn {
  appearance: none;
  border: 1px solid rgba(15, 91, 82, 0.18);
  border-radius: 999px;
  padding: 11px 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.cookie-btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.cookie-btn-secondary {
  background: transparent;
  color: var(--accent);
}

.cookie-btn-tertiary {
  background: rgba(15, 91, 82, 0.08);
  color: var(--accent);
}

.cookie-settings-float {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 1400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 1px solid rgba(27, 29, 31, 0.12);
  border-radius: 50%;
  background: rgba(255, 253, 250, 0.96);
  color: var(--accent);
  box-shadow: 0 16px 34px rgba(18, 24, 34, 0.16);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.cookie-settings-float svg {
  width: 26px;
  height: 26px;
  display: block;
  fill: currentColor;
}

.cookie-modal-open {
  overflow: hidden;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  overflow-y: auto;
  padding: 0 0 24px;
}

.cookie-modal[hidden] {
  display: none;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 18, 20, 0.52);
  backdrop-filter: blur(6px);
}

.cookie-modal-card {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100vw - 24px));
  margin: min(8vh, 64px) auto 24px;
  padding: 28px;
  border-radius: 24px;
  background: #fffdfa;
  border: 1px solid rgba(27, 29, 31, 0.1);
  box-shadow: 0 24px 70px rgba(18, 24, 34, 0.18);
}

.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 91, 82, 0.08);
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.cookie-modal-eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-2);
}

.cookie-modal-card h2 {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--light-text);
}

.cookie-modal-copy {
  margin: 0 0 22px;
  color: var(--muted-light);
  line-height: 1.7;
}

.cookie-preference-list {
  display: grid;
  gap: 12px;
}

.cookie-preference-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(27, 29, 31, 0.1);
  border-radius: 18px;
  background: #ffffff;
}

.cookie-preference-item strong {
  display: block;
}

.cookie-preference-item small {
  display: block;
  margin-top: 6px;
  color: var(--muted-light);
  line-height: 1.5;
}

.cookie-preference-item input {
  width: 22px;
  height: 22px;
  accent-color: var(--accent);
}

.cookie-preference-item-locked {
  background: rgba(15, 91, 82, 0.05);
}

.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

@media (max-width: 640px) {
  .cookie-modal {
    padding: 12px 0 18px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: min(320px, calc(100vw - 20px));
    padding: 10px;
    border-radius: 14px;
  }

  .cookie-banner p {
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.35;
  }

  .cookie-banner-actions {
    gap: 6px;
  }

  .cookie-btn {
    flex: 1 1 calc(50% - 4px);
    min-height: 36px;
    padding: 7px 10px;
    font-size: 12px;
    justify-content: center;
  }

  .cookie-btn-tertiary {
    flex-basis: 100%;
  }

  .cookie-settings-float {
    left: 12px;
    bottom: 12px;
    width: 54px;
    height: 54px;
  }

  .cookie-modal-card {
    width: min(340px, calc(100vw - 32px));
    margin-top: 24px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 18px 14px;
    border-radius: 18px;
  }

  .cookie-modal-close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    font-size: 24px;
  }

  .cookie-modal-card h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .cookie-modal-copy {
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.45;
  }

  .cookie-preference-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .cookie-preference-item small {
    font-size: 12px;
    line-height: 1.4;
  }

  .cookie-modal-actions {
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
  }
}
