:root {
  --ivory: #fbf7ef;
  --warm-white: #fffdf8;
  --charcoal: #252321;
  --muted: #6d6660;
  --taupe: #d8ccbd;
  --taupe-deep: #9b8b7b;
  --champagne: #c7a86c;
  --champagne-dark: #9f7e3f;
  --champagne-wash: rgba(199, 168, 108, 0.42);
  --rose-wash: rgba(185, 139, 118, 0.34);
  --sage-wash: rgba(143, 154, 125, 0.34);
  --pearl-wash: rgba(216, 204, 189, 0.56);
  --line: rgba(37, 35, 33, 0.12);
  --glass: rgba(255, 253, 248, 0.82);
  --shadow: 0 24px 70px rgba(37, 35, 33, 0.12);
  --soft-glow: 0 28px 76px rgba(159, 126, 63, 0.34);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

.icon-sprite {
  height: 0;
  overflow: hidden;
  position: absolute;
  width: 0;
}

.lux-icon {
  color: var(--champagne-dark);
  display: block;
  fill: none;
  height: 2.15rem;
  margin-bottom: 1.05rem;
  opacity: 0.9;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
  width: 2.15rem;
}

.compact-icon {
  background: rgba(199, 168, 108, 0.1);
  border: 1px solid rgba(199, 168, 108, 0.24);
  border-radius: 50%;
  grid-row: 1 / span 2;
  height: 2.35rem;
  margin: 0.1rem 0 0;
  padding: 0.48rem;
  width: 2.35rem;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(159, 126, 63, 0.5);
  outline-offset: 4px;
}

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

button {
  cursor: pointer;
}

::selection {
  background: rgba(199, 168, 108, 0.28);
}

.skip-link {
  background: var(--charcoal);
  color: var(--warm-white);
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-140%);
  z-index: 100;
}

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

.site-header {
  left: 0;
  padding: 0.75rem clamp(1rem, 3vw, 2.5rem);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
  transition: padding 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: var(--glass);
  border-bottom: 1px solid rgba(37, 35, 33, 0.08);
  box-shadow: 0 12px 36px rgba(37, 35, 33, 0.08);
  padding-bottom: 0.7rem;
  padding-top: 0.7rem;
  backdrop-filter: blur(18px);
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max-width);
  min-height: 54px;
  position: relative;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.65rem;
  min-width: max-content;
}

.brand-logo {
  aspect-ratio: 1;
  object-fit: contain;
  width: 58px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  margin-top: 0.14rem;
  text-transform: uppercase;
}

.menu-toggle {
  align-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.54), rgba(199, 168, 108, 0.2)),
    rgba(255, 253, 248, 0.24);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  backdrop-filter: blur(24px) saturate(170%);
  border: 1px solid rgba(255, 253, 248, 0.56);
  border-radius: 50%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(159, 126, 63, 0.22),
    0 14px 38px rgba(159, 126, 63, 0.18);
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  height: 46px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: border-color 180ms ease, box-shadow 220ms ease, transform 220ms ease;
  width: 46px;
  z-index: 61;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(255, 253, 248, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -1px 0 rgba(159, 126, 63, 0.26),
    0 18px 44px rgba(159, 126, 63, 0.28);
  transform: translateY(-2px);
}

.menu-toggle span {
  background: var(--charcoal);
  height: 1px;
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
  width: 18px;
}

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

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

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

.nav-panel {
  align-items: stretch;
  background: rgba(255, 253, 248, 0.98);
  border-left: 1px solid rgba(37, 35, 33, 0.08);
  bottom: 0;
  box-shadow: -30px 0 80px rgba(37, 35, 33, 0.14);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  max-width: 390px;
  opacity: 0;
  padding: 6.6rem 1.25rem 2rem;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: opacity 220ms ease, transform 220ms ease;
  width: min(86vw, 390px);
  z-index: 60;
}

.menu-open .nav-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.nav-panel a {
  border-bottom: 1px solid rgba(37, 35, 33, 0.08);
  color: var(--charcoal);
  font-size: 0.98rem;
  font-weight: 600;
  padding: 0.95rem 0.1rem;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  color: var(--champagne-dark);
}

.nav-cta {
  align-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 253, 248, 0.14)),
    radial-gradient(circle at 24% 12%, rgba(255, 255, 255, 0.5), transparent 30%),
    rgba(255, 253, 248, 0.22);
  -webkit-backdrop-filter: blur(34px) saturate(190%);
  backdrop-filter: blur(34px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -1px 0 rgba(159, 126, 63, 0.2),
    inset 0 0 22px rgba(255, 255, 255, 0.2),
    0 16px 44px rgba(159, 126, 63, 0.18);
  color: var(--charcoal) !important;
  display: inline-flex;
  justify-content: center;
  margin-top: 1rem;
  min-height: 48px;
  overflow: hidden;
  padding: 0.8rem 1.1rem !important;
  position: relative;
  transition: border-color 180ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.nav-cta::after,
.button::after {
  background:
    linear-gradient(115deg, transparent 8%, rgba(255, 255, 255, 0.68) 44%, transparent 70%),
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.54), transparent 30%);
  content: "";
  inset: -70% -38%;
  opacity: 0.38;
  pointer-events: none;
  position: absolute;
  transform: translateX(-38%) rotate(8deg);
  transition: opacity 220ms ease, transform 420ms ease;
}

.nav-cta::before,
.button::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), transparent 42%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.42), transparent 38%);
  border-radius: inherit;
  content: "";
  inset: 1px;
  opacity: 0.44;
  pointer-events: none;
  position: absolute;
  transition: opacity 220ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(159, 126, 63, 0.24),
    inset 0 0 26px rgba(255, 255, 255, 0.28),
    0 22px 58px rgba(159, 126, 63, 0.3);
  transform: translateY(-2px);
}

.nav-cta:hover::after,
.nav-cta:focus-visible::after,
.button:hover::after,
.button:focus-visible::after {
  opacity: 0.62;
  transform: translateX(34%) rotate(8deg);
}

.nav-cta:hover::before,
.nav-cta:focus-visible::before,
.button:hover::before,
.button:focus-visible::before {
  opacity: 0.66;
}

.hero {
  align-items: end;
  display: grid;
  min-height: min(780px, 100svh);
  overflow: hidden;
  padding: 8.7rem clamp(1.1rem, 4vw, 3rem) 3.25rem;
  position: relative;
}

.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.96) 0%, rgba(251, 247, 239, 0.86) 31%, rgba(251, 247, 239, 0.2) 66%),
    url("assets/elixir-hero.png") center / cover no-repeat;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(251, 247, 239, 0.12), rgba(251, 247, 239, 0.56)),
    radial-gradient(circle at 12% 82%, rgba(199, 168, 108, 0.18), transparent 34%);
}

.hero-inner {
  margin: 0 auto;
  max-width: var(--max-width);
  position: relative;
  width: 100%;
  z-index: 1;
}

.eyebrow {
  color: var(--champagne-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.5;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

.location-eyebrow,
.location-with-flag {
  align-items: center;
  display: inline-flex;
  gap: 0.55rem;
}

.usa-branch {
  display: inline-block;
  flex: 0 0 auto;
  font-size: 1.05rem;
  line-height: 1;
}

h1,
h2,
h3 {
  color: var(--charcoal);
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.96;
  margin: 0;
}

h1 {
  font-size: clamp(4.25rem, 14vw, 8rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(2.55rem, 8vw, 5rem);
  max-width: 760px;
}

h3 {
  font-size: 1.62rem;
  line-height: 1.08;
}

p {
  margin: 0;
}

.hero-copy {
  color: #4f4944;
  font-size: 1.12rem;
  line-height: 1.65;
  margin-top: 1.25rem;
  max-width: 560px;
}

.hero-actions,
.consultation-inner .button {
  margin-top: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  align-items: center;
  -webkit-backdrop-filter: blur(34px) saturate(190%);
  backdrop-filter: blur(34px) saturate(190%);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 253, 248, 0.12)),
    radial-gradient(circle at 24% 12%, rgba(255, 255, 255, 0.48), transparent 30%),
    rgba(255, 253, 248, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -1px 0 rgba(159, 126, 63, 0.2),
    inset 0 0 24px rgba(255, 255, 255, 0.2),
    0 14px 40px rgba(159, 126, 63, 0.16);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.1em;
  line-height: 1.15;
  min-height: 48px;
  overflow: hidden;
  padding: 0.86rem 1.22rem;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  transition: background 220ms ease, border-color 180ms ease, box-shadow 220ms ease, color 180ms ease, transform 220ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(159, 126, 63, 0.26),
    inset 0 0 28px rgba(255, 255, 255, 0.3),
    0 22px 58px rgba(159, 126, 63, 0.3);
  transform: translateY(-3px);
}

.button-primary {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.46), rgba(199, 168, 108, 0.16)),
    radial-gradient(circle at 24% 12%, rgba(255, 255, 255, 0.5), transparent 30%),
    rgba(255, 253, 248, 0.22);
  border-color: rgba(255, 255, 255, 0.66);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -1px 0 rgba(159, 126, 63, 0.22),
    inset 0 0 24px rgba(255, 255, 255, 0.22),
    0 18px 50px rgba(159, 126, 63, 0.2);
  color: var(--charcoal);
}

.button-primary:hover,
.button-primary:focus-visible {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.56), rgba(199, 168, 108, 0.22)),
    radial-gradient(circle at 24% 12%, rgba(255, 255, 255, 0.58), transparent 32%),
    rgba(255, 253, 248, 0.28);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(159, 126, 63, 0.26),
    inset 0 0 30px rgba(255, 255, 255, 0.3),
    0 24px 64px rgba(159, 126, 63, 0.32);
}

.button-secondary {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.38), rgba(199, 168, 108, 0.12)),
    radial-gradient(circle at 24% 12%, rgba(255, 255, 255, 0.46), transparent 30%),
    rgba(255, 253, 248, 0.16);
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--charcoal);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(199, 168, 108, 0.18)),
    radial-gradient(circle at 24% 12%, rgba(255, 255, 255, 0.56), transparent 32%),
    rgba(255, 253, 248, 0.24);
  border-color: rgba(255, 255, 255, 0.86);
}

.section {
  padding: clamp(4.25rem, 8vw, 7rem) clamp(1.1rem, 4vw, 3rem);
}

.section-heading {
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  max-width: var(--max-width);
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 580px;
}

.section-heading h2 + p {
  margin-top: 1.1rem;
}

.treatment-grid,
.feature-grid,
.gallery-grid,
.contact {
  margin: 0 auto;
  max-width: var(--max-width);
}

.treatment-grid {
  align-items: start;
  display: grid;
  gap: 1.15rem;
}

.treatment-card {
  background:
    radial-gradient(circle at 14% 0%, var(--champagne-wash), transparent 58%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.88), rgba(242, 230, 207, 0.9));
  border: 1px solid rgba(159, 126, 63, 0.34);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: background 220ms ease, border-color 180ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.treatment-card:nth-child(4n + 2) {
  background:
    radial-gradient(circle at 88% 10%, var(--rose-wash), transparent 58%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.88), rgba(248, 230, 220, 0.9));
}

.treatment-card:nth-child(4n + 3) {
  background:
    radial-gradient(circle at 18% 4%, var(--sage-wash), transparent 58%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.88), rgba(235, 238, 221, 0.9));
}

.treatment-card:nth-child(4n) {
  background:
    radial-gradient(circle at 84% 0%, var(--pearl-wash), transparent 60%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.88), rgba(242, 234, 222, 0.9));
}

.treatment-card::after,
.route-card::after,
.feature-block::after,
.gallery-placeholder::after,
.legal-card::after {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.36), transparent 42%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 220ms ease;
}

.treatment-card:hover::after,
.route-card:hover::after,
.feature-block:hover::after,
.gallery-placeholder:hover::after,
.legal-card:hover::after {
  opacity: 1;
}

.treatment-card h3 {
  margin: 1.15rem 1.15rem 0;
}

.service-meta {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  margin: 1rem 1.15rem 0;
}

.service-meta span {
  background: rgba(199, 168, 108, 0.3);
  border: 1px solid rgba(159, 126, 63, 0.52);
  border-radius: 999px;
  color: var(--champagne-dark);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  padding: 0.34rem 0.55rem;
  text-transform: uppercase;
}

.service-meta strong {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.treatment-card p,
.feature-block p,
.testimonial-panel p,
.gallery-placeholder,
.about-copy p,
.faq-answer p,
.consultation-inner p,
.contact-list,
.footer p {
  color: var(--muted);
}

.treatment-card p {
  font-size: 0.95rem;
  line-height: 1.62;
  margin: 0.8rem 1.15rem 0;
}

.treatment-image {
  aspect-ratio: 1.24 / 1;
  background:
    linear-gradient(145deg, rgba(199, 168, 108, 0.22), rgba(143, 154, 125, 0.16)),
    #f4eee4;
  border-bottom: 1px solid rgba(37, 35, 33, 0.08);
  overflow: hidden;
}

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

.treatment-card:hover .treatment-image img {
  transform: scale(1.04);
}

.treatment-benefits {
  display: grid;
  gap: 0.48rem;
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
}

.treatment-benefits li {
  align-items: center;
  color: rgba(37, 35, 33, 0.78);
  display: flex;
  font-size: 0.88rem;
  gap: 0.55rem;
  line-height: 1.35;
}

.treatment-benefits li::before {
  background: var(--champagne);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(199, 168, 108, 0.12);
  content: "";
  flex: 0 0 auto;
  height: 0.42rem;
  width: 0.42rem;
}

.treatment-link {
  align-self: flex-start;
  margin: 1.1rem 1.15rem 1.15rem;
}

.benefit-details,
.menu-details {
  margin: 1rem 1.15rem 1.2rem;
}

.menu-details {
  margin: 0;
}

.benefit-details summary,
.menu-details summary {
  align-items: center;
  border-top: 1px solid rgba(37, 35, 33, 0.08);
  color: var(--champagne-dark);
  cursor: pointer;
  display: flex;
  font-size: 0.72rem;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: 0.12em;
  list-style: none;
  padding-top: 0.85rem;
  text-transform: uppercase;
}

.benefit-details summary::-webkit-details-marker,
.menu-details summary::-webkit-details-marker {
  display: none;
}

.benefit-details summary::after,
.menu-details summary::after {
  content: "+";
  font-size: 1rem;
  line-height: 1;
}

.benefit-details[open] summary::after,
.menu-details[open] summary::after {
  content: "-";
}

.treatment-category,
.compare-panel {
  background:
    radial-gradient(circle at 8% 6%, rgba(199, 168, 108, 0.34), transparent 52%),
    rgba(255, 253, 248, 0.74);
  border: 1px solid rgba(159, 126, 63, 0.28);
  border-radius: 22px;
  display: grid;
  gap: clamp(1.4rem, 4vw, 2.5rem);
  margin: 1.25rem auto 0;
  max-width: var(--max-width);
  padding: clamp(1.2rem, 3vw, 1.8rem);
}

.treatment-category h3,
.compare-panel h3 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.treatment-category p:not(.eyebrow),
.compare-panel p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 0.9rem;
}

.add-ons-copy,
.gluta-copy {
  display: grid;
  align-content: start;
}

.add-ons-visual,
.gluta-visual {
  aspect-ratio: 1.36 / 1;
  border: 1px solid rgba(37, 35, 33, 0.09);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(37, 35, 33, 0.08);
  margin: clamp(1.25rem, 3vw, 1.8rem) 0 0;
  overflow: hidden;
}

.add-ons-visual img,
.gluta-visual img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.add-ons-visual img {
  object-position: 62% center;
}

.gluta-visual img {
  object-position: 74% center;
}

.compact-menu {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.package-menu-stack {
  display: grid;
  gap: 0.85rem;
}

.visible-package-menu {
  margin-top: 0;
}

.compact-menu div {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.86), rgba(242, 229, 207, 0.92)),
    radial-gradient(circle at 92% 12%, var(--champagne-wash), transparent 56%);
  border: 1px solid rgba(159, 126, 63, 0.3);
  border-radius: 16px;
  display: grid;
  gap: 0.18rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 0.78rem 0.9rem;
  position: relative;
  transition: background 220ms ease, border-color 180ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.compact-menu div:nth-child(even) {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.86), rgba(232, 237, 220, 0.92)),
    radial-gradient(circle at 90% 12%, var(--sage-wash), transparent 56%);
}

.compact-menu strong,
.compare-list strong {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.05;
}

.compact-menu span {
  color: var(--champagne-dark);
  font-weight: 800;
}

.compact-menu small {
  color: var(--muted);
  grid-column: 1 / -1;
  line-height: 1.5;
}

.glutathione {
  background: var(--warm-white);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.route-grid {
  display: grid;
  gap: 1rem;
  margin: 0 auto;
  max-width: var(--max-width);
}

.route-card {
  background:
    radial-gradient(circle at 10% 0%, var(--champagne-wash), transparent 60%),
    rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(159, 126, 63, 0.3);
  border-radius: 18px;
  padding: clamp(1.15rem, 3vw, 1.6rem);
  position: relative;
  transition: background 220ms ease, border-color 180ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.route-card:nth-child(2) {
  background:
    radial-gradient(circle at 92% 0%, var(--sage-wash), transparent 60%),
    rgba(255, 253, 248, 0.86);
}

.route-card:nth-child(3) {
  background:
    radial-gradient(circle at 10% 0%, var(--rose-wash), transparent 60%),
    rgba(255, 253, 248, 0.86);
}

.route-card .lux-icon {
  background: rgba(199, 168, 108, 0.3);
  border: 1px solid rgba(159, 126, 63, 0.5);
  border-radius: 50%;
  height: 2.8rem;
  margin-bottom: 1rem;
  padding: 0.58rem;
  width: 2.8rem;
}

.route-card > span {
  color: var(--champagne-dark);
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.route-card h3 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
}

.route-card p {
  color: var(--muted);
  margin-top: 0.85rem;
}

.route-card ul {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
}

.route-card li,
.compare-list span {
  color: rgba(37, 35, 33, 0.78);
  line-height: 1.5;
}

.route-card li {
  border-top: 1px solid rgba(37, 35, 33, 0.08);
  padding-top: 0.55rem;
}

.compare-panel {
  margin-top: 1rem;
}

.compare-list {
  display: grid;
  gap: 0.8rem;
}

.compare-list p {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.86), rgba(242, 229, 207, 0.9)),
    radial-gradient(circle at 100% 0%, var(--champagne-wash), transparent 58%);
  border: 1px solid rgba(159, 126, 63, 0.3);
  border-radius: 16px;
  display: grid;
  gap: 0.3rem;
  grid-template-columns: auto minmax(0, 1fr);
  margin: 0;
  padding: 0.9rem 1rem;
  transition: background 220ms ease, border-color 180ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.compare-list strong,
.compare-list span {
  grid-column: 2;
}

.choice {
  background: var(--warm-white);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.feature-grid {
  display: grid;
  gap: 1rem;
}

.feature-block {
  background:
    radial-gradient(circle at 14% 0%, var(--champagne-wash), transparent 62%),
    rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(159, 126, 63, 0.3);
  border-radius: 18px;
  padding: 1.35rem;
  position: relative;
  transition: background 220ms ease, border-color 180ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.feature-block:nth-child(2) {
  background:
    radial-gradient(circle at 88% 0%, var(--pearl-wash), transparent 62%),
    rgba(255, 253, 248, 0.72);
}

.feature-block:nth-child(3) {
  background:
    radial-gradient(circle at 14% 0%, var(--sage-wash), transparent 62%),
    rgba(255, 253, 248, 0.72);
}

.feature-block:nth-child(4) {
  background:
    radial-gradient(circle at 88% 0%, var(--rose-wash), transparent 62%),
    rgba(255, 253, 248, 0.72);
}

.feature-block .lux-icon {
  background: rgba(199, 168, 108, 0.3);
  border: 1px solid rgba(159, 126, 63, 0.5);
  border-radius: 50%;
  height: 2.75rem;
  margin-bottom: 1.25rem;
  padding: 0.58rem;
  width: 2.75rem;
}

.feature-block span {
  color: var(--champagne-dark);
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
}

.feature-block p {
  margin-top: 0.85rem;
}

.about {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
}

.about-visual,
.about-copy {
  margin: 0 auto;
  max-width: var(--max-width);
  width: 100%;
}

.about-image {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(145deg, rgba(37, 35, 33, 0.05), rgba(199, 168, 108, 0.08)),
    url("assets/about-elixia.png") 52% center / cover no-repeat;
  min-height: 420px;
}

.about-copy p {
  margin-top: 1.15rem;
  max-width: 700px;
}

.text-link {
  border-bottom: 1px solid rgba(159, 126, 63, 0.5);
  color: var(--champagne-dark);
  display: inline-flex;
  font-weight: 700;
  margin-top: 1.45rem;
  padding-bottom: 0.15rem;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-showcase {
  background: var(--warm-white);
  border: 1px solid rgba(37, 35, 33, 0.1);
  box-shadow: 0 18px 54px rgba(37, 35, 33, 0.1);
  display: grid;
  margin: 0 auto 1rem;
  max-width: var(--max-width);
  overflow: hidden;
}

.before-after-showcase {
  align-items: stretch;
}

.gallery-image {
  aspect-ratio: 1.32 / 1;
  background: #f4eee4;
  min-height: 320px;
  overflow: hidden;
}

.gallery-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.before-after {
  background: #3d3934;
  display: block;
}

.before-after-stage {
  aspect-ratio: 1.25 / 1;
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
  user-select: none;
  width: 100%;
}

.before-after-stage:focus-visible {
  outline: 3px solid rgba(199, 168, 108, 0.72);
  outline-offset: 4px;
}

.before-after-img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

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

.after-image {
  object-position: center 51.5%;
}

.after-layer {
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 320ms ease;
}

[data-comparison-state="after"] .after-layer {
  opacity: 1;
}

.comparison-arrow {
  align-items: center;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(37, 35, 33, 0.12);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(37, 35, 33, 0.18);
  color: var(--champagne-dark);
  cursor: pointer;
  display: none;
  height: 42px;
  justify-content: center;
  opacity: 0.92;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease;
  width: 42px;
  z-index: 2;
}

.comparison-arrow::before {
  font-size: 1.45rem;
  line-height: 1;
}

.comparison-arrow:hover,
.comparison-arrow:focus-visible {
  background: var(--warm-white);
  color: var(--charcoal);
  opacity: 1;
  transform: translateY(-50%) scale(1.04);
}

.comparison-arrow-prev {
  left: 1rem;
}

.comparison-arrow-prev::before {
  content: "‹";
}

.comparison-arrow-next {
  right: 1rem;
}

.comparison-arrow-next::before {
  content: "›";
}

.comparison-label {
  background: rgba(37, 35, 33, 0.78);
  backdrop-filter: blur(12px);
  color: var(--warm-white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  opacity: 0;
  padding: 0.36rem 0.55rem;
  pointer-events: none;
  position: absolute;
  text-transform: uppercase;
  top: 1rem;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease;
}

.comparison-label.is-active {
  opacity: 1;
  transform: translateY(0);
}

.before-label {
  left: 1rem;
}

.after-label {
  background: rgba(180, 138, 55, 0.9);
  box-shadow: 0 10px 26px rgba(180, 138, 55, 0.26);
  right: 1rem;
}

[data-comparison-state="before"] .comparison-arrow-prev,
[data-comparison-state="after"] .comparison-arrow-next {
  opacity: 0.34;
}

.comparison-dots {
  align-items: center;
  background: rgba(255, 253, 248, 0.94);
  border-top: 1px solid rgba(37, 35, 33, 0.08);
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  min-height: 34px;
  padding: 0.65rem 1rem;
}

.comparison-dot {
  background: rgba(37, 35, 33, 0.2);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  height: 0.42rem;
  padding: 0;
  transition: background 180ms ease, transform 180ms ease, width 180ms ease;
  width: 0.42rem;
}

.comparison-dot.is-active {
  background: var(--champagne-dark);
  transform: scale(1.1);
}

.gallery-copy {
  align-content: center;
  display: grid;
  padding: clamp(1.35rem, 4vw, 2.4rem);
}

.gallery-copy h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 560px;
}

.gallery-copy p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 1rem;
}

.result-list {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
}

.result-list li {
  color: rgba(37, 35, 33, 0.78);
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}

.result-list li::before {
  background: var(--champagne);
  border-radius: 50%;
  content: "";
  height: 0.35rem;
  left: 0;
  position: absolute;
  top: 0.64rem;
  width: 0.35rem;
}

.gallery-proof-grid {
  margin-top: 1rem;
}

.gallery-placeholder {
  align-items: flex-start;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.84), rgba(216, 204, 189, 0.76)),
    repeating-linear-gradient(135deg, rgba(199, 168, 108, 0.28) 0 1px, transparent 1px 18px);
  border: 1px solid rgba(159, 126, 63, 0.32);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: flex-start;
  min-height: 210px;
  padding: 1.15rem;
  position: relative;
  transition: background 220ms ease, border-color 180ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.gallery-placeholder span {
  color: var(--champagne-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-placeholder strong {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.05;
}

.gallery-placeholder p {
  color: var(--muted);
  margin-top: auto;
}

.testimonials {
  background: var(--warm-white);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.testimonial-panel {
  margin: 0 auto;
  max-width: var(--max-width);
}

.testimonial-panel p:not(.eyebrow) {
  margin-top: 1rem;
  max-width: 600px;
}

.faq-list {
  border-bottom: 1px solid var(--line);
  margin: 0 auto;
  max-width: 860px;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--charcoal);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.15rem 0;
  text-align: left;
  width: 100%;
}

.faq-item button span:first-child {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.15;
}

.faq-symbol {
  flex: 0 0 auto;
  height: 28px;
  position: relative;
  width: 28px;
}

.faq-symbol::before,
.faq-symbol::after {
  background: var(--champagne-dark);
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.faq-symbol::before {
  height: 1px;
  width: 18px;
}

.faq-symbol::after {
  height: 18px;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 1px;
}

.faq-item.is-open .faq-symbol::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

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

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

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 1.25rem;
}

.consultation {
  background:
    linear-gradient(rgba(37, 35, 33, 0.64), rgba(37, 35, 33, 0.58)),
    url("assets/elixir-hero.png") center / cover no-repeat;
  color: var(--warm-white);
  padding: clamp(4.4rem, 8vw, 7rem) clamp(1.1rem, 4vw, 3rem);
}

.consultation-inner {
  margin: 0 auto;
  max-width: var(--max-width);
}

.consultation h2,
.consultation p {
  color: var(--warm-white);
}

.consultation p:not(.eyebrow) {
  max-width: 650px;
}

.consultation .eyebrow {
  color: #ead8aa;
}

.consultation .button-primary {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.48), rgba(199, 168, 108, 0.16)),
    radial-gradient(circle at 24% 12%, rgba(255, 255, 255, 0.54), transparent 30%),
    rgba(255, 253, 248, 0.2);
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -1px 0 rgba(159, 126, 63, 0.22),
    inset 0 0 26px rgba(255, 255, 255, 0.28),
    0 22px 56px rgba(0, 0, 0, 0.2);
  color: var(--charcoal);
}

.contact {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.contact-copy {
  display: flex;
  flex-direction: column;
}

.contact-copy > .eyebrow {
  order: 1;
}

.contact-copy > h2 {
  order: 2;
}

.contact-copy .location-map {
  order: 3;
}

.contact-copy .contact-primary-list {
  order: 4;
}

.contact-copy .contact-secondary-list {
  order: 5;
}

.contact-copy h2 {
  margin-bottom: 1.4rem;
}

.contact-list {
  display: grid;
  gap: 0.9rem;
  max-width: 560px;
}

.contact-list p {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.9rem;
}

.contact-list strong {
  color: var(--charcoal);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location-with-flag {
  color: var(--muted);
}

.address-link {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: rgba(159, 126, 63, 0.46);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.address-link:hover,
.address-link:focus-visible {
  color: var(--champagne-dark);
  text-decoration-color: currentColor;
}

.location-map {
  background:
    radial-gradient(circle at 88% 0%, rgba(143, 154, 125, 0.2), transparent 58%),
    rgba(255, 253, 248, 0.76);
  border: 1px solid rgba(159, 126, 63, 0.28);
  border-radius: 20px;
  box-shadow: 0 18px 54px rgba(37, 35, 33, 0.08);
  margin-top: 0.35rem;
  overflow: hidden;
  position: relative;
}

.location-map-desktop {
  display: none;
}

.location-map-header {
  align-items: center;
  color: var(--charcoal);
  display: flex;
  font-size: 0.74rem;
  font-weight: 800;
  gap: 0.75rem;
  justify-content: space-between;
  letter-spacing: 0.12em;
  padding: 1rem 1.05rem;
  text-transform: uppercase;
}

.location-map-provider {
  color: var(--champagne-dark);
  font-size: 0.6rem;
  margin-left: auto;
}

.location-map-frame {
  aspect-ratio: 16 / 9;
  background: #eee9df;
  min-height: 220px;
}

.location-map-frame iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.location-map-footer {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem 1.05rem 1.1rem;
}

.parking-note {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
  margin: 0;
  max-width: 430px;
}

.location-map-button {
  align-self: flex-start;
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0.72rem 1rem;
}

.contact-form .location-map-button {
  width: auto;
}

.contact-form {
  align-content: start;
  align-items: start;
  background:
    radial-gradient(circle at 12% 0%, var(--champagne-wash), transparent 58%),
    var(--warm-white);
  border: 1px solid rgba(159, 126, 63, 0.3);
  border-radius: 20px;
  box-shadow: 0 18px 54px rgba(37, 35, 33, 0.1);
  display: grid;
  gap: 1rem;
  grid-auto-rows: max-content;
  padding: clamp(1.15rem, 4vw, 2rem);
  transition: border-color 180ms ease, box-shadow 220ms ease;
}

.form-row {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.form-row label {
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-row input,
.form-row select {
  background: #fcfaf5;
  border: 1px solid rgba(37, 35, 33, 0.13);
  color: var(--charcoal);
  height: 52px;
  min-height: 52px;
  padding: 0.85rem 0.9rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  width: 100%;
}

.form-row textarea {
  background: #fcfaf5;
  border: 1px solid rgba(37, 35, 33, 0.13);
  color: var(--charcoal);
  min-height: 52px;
  padding: 0.85rem 0.9rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  width: 100%;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(159, 126, 63, 0.62);
  box-shadow: 0 0 0 4px rgba(199, 168, 108, 0.16);
  outline: none;
}

.contact-form .button {
  margin-top: 0.25rem;
  width: 100%;
}

.contact-form .location-map {
  margin-top: 0.4rem;
}

.form-success {
  background: rgba(199, 168, 108, 0.13);
  border: 1px solid rgba(199, 168, 108, 0.28);
  color: #5c4a29;
  display: none;
  padding: 0.9rem 1rem;
}

.form-success.is-visible {
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .treatment-card:hover,
  .route-card:hover,
  .feature-block:hover,
  .gallery-placeholder:hover,
  .compact-menu div:hover,
  .compare-list p:hover {
    border-color: rgba(159, 126, 63, 0.76);
    box-shadow: var(--soft-glow);
    transform: translateY(-6px);
  }

  .contact-form:hover,
  .legal-card:hover {
    border-color: rgba(159, 126, 63, 0.68);
    box-shadow: 0 28px 78px rgba(159, 126, 63, 0.3);
  }
}

.footer {
  align-items: flex-start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(1.4rem, 4vw, 2.25rem);
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 2.6rem clamp(1.1rem, 4vw, 3rem) 3rem;
}

.footer-brand .brand-logo {
  width: 70px;
}

.footer p,
.footer a {
  font-size: 0.88rem;
}

.footer p {
  color: var(--muted);
  max-width: 660px;
}

.footer-copy {
  display: grid;
  gap: 0.85rem;
}

.footer-notice {
  font-size: 0.82rem !important;
  line-height: 1.65;
}

.footer-legal {
  display: grid;
  gap: 0.35rem;
}

.footer-legal h2 {
  font-size: 1.45rem;
  margin-bottom: 0.25rem;
}

.footer-legal a {
  color: var(--muted);
  transition: color 180ms ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--champagne-dark);
}

.legal-page .site-header {
  background: var(--glass);
  border-bottom: 1px solid rgba(37, 35, 33, 0.08);
  backdrop-filter: blur(18px);
}

.legal-main {
  padding-top: 96px;
}

.legal-hero {
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(251, 247, 239, 0.82)),
    radial-gradient(circle at 88% 18%, rgba(199, 168, 108, 0.16), transparent 34%);
  border-bottom: 1px solid var(--line);
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  padding-top: clamp(3rem, 7vw, 5.5rem);
}

.legal-hero h1 {
  font-size: clamp(3rem, 8vw, 5.8rem);
  max-width: 900px;
}

.legal-hero p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 1.15rem;
  max-width: 760px;
}

.legal-content {
  margin: 0 auto;
  max-width: 900px;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  padding-top: clamp(3rem, 7vw, 5rem);
}

.legal-card {
  background:
    radial-gradient(circle at 10% 0%, var(--champagne-wash), transparent 58%),
    rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(159, 126, 63, 0.3);
  border-radius: 20px;
  box-shadow: 0 18px 54px rgba(37, 35, 33, 0.1);
  display: grid;
  gap: clamp(1.4rem, 3vw, 2rem);
  padding: clamp(1.3rem, 4vw, 2.4rem);
  position: relative;
  transition: border-color 180ms ease, box-shadow 220ms ease;
}

.legal-section {
  border-top: 1px solid rgba(37, 35, 33, 0.08);
  padding-top: 1.35rem;
}

.legal-section:first-child {
  border-top: 0;
  padding-top: 0;
}

.legal-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  margin-bottom: 0.65rem;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
}

.legal-section ul {
  display: grid;
  gap: 0.45rem;
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
}

.legal-notice {
  background: rgba(199, 168, 108, 0.13);
  border: 1px solid rgba(199, 168, 108, 0.28);
  color: #5c4a29;
  padding: 1rem;
}

.legal-updated {
  color: var(--champagne-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

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

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

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

@media (min-width: 620px) {
  .hero {
    min-height: 760px;
  }

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

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

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

  .form-row.full,
  .contact-form .button,
  .contact-form .location-map,
  .form-success {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1040px) {
  .location-map-mobile {
    display: none;
  }

  .contact-form .location-map-desktop {
    display: block;
  }

  .contact-form .location-map-frame {
    aspect-ratio: 16 / 8.5;
    min-height: 230px;
  }
}

@media (max-width: 619px) {
}

@media (max-width: 1039px) {
  body.menu-open::before {
    background: rgba(251, 247, 239, 0.34);
    content: "";
    inset: 0;
    pointer-events: none;
    position: fixed;
    z-index: 55;
    -webkit-backdrop-filter: blur(14px) saturate(145%);
    backdrop-filter: blur(14px) saturate(145%);
  }

  body.menu-open .site-header {
    background: rgba(255, 253, 248, 0.995);
    border-bottom: 1px solid rgba(159, 126, 63, 0.24);
    box-shadow: 0 18px 54px rgba(37, 35, 33, 0.14);
    z-index: 70;
    -webkit-backdrop-filter: blur(45px) saturate(285%);
    backdrop-filter: blur(45px) saturate(285%);
  }

  .nav-panel {
    background:
      linear-gradient(145deg, rgba(255, 253, 248, 0.998), rgba(248, 241, 229, 0.996)),
      radial-gradient(circle at 82% 10%, rgba(199, 168, 108, 0.5), transparent 40%);
    border-left: 0;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.96),
      -24px 0 96px rgba(37, 35, 33, 0.2);
    left: 0;
    max-width: none;
    padding: 6.6rem clamp(1.25rem, 5vw, 2rem) 2.5rem;
    width: 100vw;
    -webkit-backdrop-filter: blur(57px) saturate(315%);
    backdrop-filter: blur(57px) saturate(315%);
  }

  .nav-panel a:not(.nav-cta) {
    background: rgba(255, 253, 248, 0.94);
    border: 1px solid rgba(159, 126, 63, 0.28);
    border-radius: 14px;
    color: var(--charcoal);
    font-weight: 800;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
    padding: 0.78rem 1rem;
  }

  .nav-panel .nav-cta {
    margin-top: 0.65rem;
  }
}

@media (min-width: 1040px) {
  .menu-toggle {
    display: none;
  }

  body.menu-open {
    overflow: auto;
  }

  .nav-panel {
    align-items: center;
    background: transparent;
    border-left: 0;
    box-shadow: none;
    flex-direction: row;
    gap: clamp(0.8rem, 1.4vw, 1.15rem);
    max-width: none;
    opacity: 1;
    padding: 0;
    pointer-events: auto;
    position: static;
    transform: none;
    transition: none;
    width: auto;
  }

  .nav-panel a {
    border: 0;
    color: rgba(37, 35, 33, 0.76);
    font-size: 0.76rem;
    letter-spacing: 0.03em;
    padding: 0;
  }

  .nav-cta {
    border-radius: 14px;
    margin: 0 0 0 0.2rem;
    min-height: 42px;
    padding: 0.68rem 1rem !important;
  }
}

@media (min-width: 840px) {
  .treatment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .feature-block {
    border: 1px solid rgba(37, 35, 33, 0.08);
    padding: 1.35rem;
  }

  .feature-block:first-child {
    border-left: 1px solid rgba(37, 35, 33, 0.08);
    padding-left: 1.35rem;
  }

  .about {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
    margin: 0 auto;
    max-width: var(--max-width);
  }

  .about-visual,
  .about-copy {
    max-width: none;
  }

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

  .treatment-category,
  .compare-panel {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  }

  .gallery-showcase {
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  }

  .comparison-arrow {
    display: flex;
  }

  .comparison-dots {
    display: none;
  }

  .before-after,
  .before-after-stage {
    height: 100%;
    min-height: 100%;
  }

  .before-after-stage {
    aspect-ratio: auto;
  }

  .gallery-image {
    aspect-ratio: auto;
    min-height: 480px;
  }

  .contact {
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr);
  }

  .footer {
    grid-template-columns: 250px minmax(0, 1fr) 230px;
  }
}

@media (min-width: 1120px) {
  .treatment-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 720px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(251, 247, 239, 0.95) 0%, rgba(251, 247, 239, 0.9) 38%, rgba(251, 247, 239, 0.58) 100%),
      url("assets/elixir-hero.png") 61% center / cover no-repeat;
  }

  h1 {
    font-size: clamp(3.55rem, 18vw, 4.6rem);
  }

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

  .button {
    border-radius: 14px;
    font-size: 0.68rem;
    letter-spacing: 0.075em;
    min-height: 44px;
    padding: 0.74rem 0.95rem;
  }

  .hero-actions .button,
  .consultation-inner .button,
  .contact-form .button {
    width: 100%;
  }

  .treatment-link {
    min-width: 132px;
    width: auto;
  }

  .location-map-frame {
    aspect-ratio: 16 / 10;
    min-height: 220px;
  }

  .brand-logo {
    width: 52px;
  }

  .brand strong {
    font-size: 1.16rem;
  }

  .brand small {
    font-size: 0.52rem;
    letter-spacing: 0.12em;
  }

  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .service-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.55rem;
  }

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

  .add-ons-visual,
  .gluta-visual {
    aspect-ratio: 1.52 / 1;
  }

  .add-ons-visual img {
    object-position: 66% center;
  }

  .gluta-visual img {
    object-position: 76% center;
  }

  .before-after-stage {
    aspect-ratio: 1 / 1;
    min-height: 0;
    width: 100%;
  }

  .treatment-card {
    min-height: auto;
  }

  .gallery-placeholder {
    aspect-ratio: 1.18 / 1;
  }
}
