@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500&display=swap');

/* ═══════════════════════════════════════════════
   TOKENS — set on :root, can be overridden by Tweaks
═══════════════════════════════════════════════ */

:root {
  --bg:            #141210;
  --bg-deep:       #0d0b09;
  --bg-glass:      rgba(20, 18, 16, 0.88);
  --bg-elevated:   #1a1714;
  --text:          #E8DCC8;
  --text-soft:     rgba(244, 232, 211, 0.86);
  --text-muted:    rgba(244, 232, 211, 0.68);
  --text-faint:    rgba(244, 232, 211, 0.46);
  --accent:        #B8976A;
  --accent-warm:   #D4AF7B;
  --accent-subtle: rgba(184, 151, 106, 0.18);
  --accent-glow:   rgba(184, 151, 106, 0.35);
  --border:        rgba(232, 220, 200, 0.11);
  --border-mid:    rgba(232, 220, 200, 0.22);
  --border-accent: rgba(232, 220, 200, 0.34);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0.05, 0.36, 1);
}

/* ═══════════════════════════════════════════════
   RESET + BASE
═══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Bump root size so all rem-based type scales up for readability.
   Default 16px → 18px ≈ +12.5%. Scaled down on narrow screens. */
html { scroll-behavior: smooth; font-size: 18px; }
@media (max-width: 920px) { html { font-size: 17px; } }
@media (max-width: 680px) { html { font-size: 16px; } }

html, body {
  width: 100%;
  max-width: 100%;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  transition: background 0.6s var(--ease-out), color 0.6s var(--ease-out);
}

/* Safety net: no element should ever push the layout wider than the viewport */
img, video, iframe, svg { max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { display: block; max-width: 100%; }

::selection { background: var(--accent-subtle); color: var(--text); }

/* ═══════════════════════════════════════════════
   SHARED — eyebrows, dividers, buttons
═══════════════════════════════════════════════ */

.eyebrow {
  font-family: var(--serif);
  font-size: 0.7rem;
  font-style: italic;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
}


.rule-ornament {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 240px;
}
.rule-ornament::before,
.rule-ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-mid);
}
.rule-diamond {
  width: 5px;
  height: 5px;
  border: 1px solid var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 2.4rem;
  border: 1px solid var(--border-accent);
  background: transparent;
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background 0.25s, letter-spacing 0.35s;
  white-space: nowrap;
}
.btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-subtle);
  letter-spacing: 0.22em;
}
.btn-solid {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-deep);
}
.btn-solid:hover {
  background: var(--accent-warm);
  border-color: var(--accent-warm);
  color: var(--bg-deep);
}
.btn-arrow {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.btn-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ═══════════════════════════════════════════════
   SITE HEADER
═══════════════════════════════════════════════ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 2.5rem;
  transition: padding 0.4s var(--ease-out), background 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  padding: 0.9rem 2.5rem;
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}
.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
}
.header-logo-mark {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 0.75rem;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--accent);
  transition: border-color 0.2s, color 0.2s;
}
.header-logo:hover .header-logo-mark { border-color: var(--accent); color: var(--accent-warm); }
.header-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.header-logo-text .name {
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--text);
}
.header-logo-text .tag {
  font-family: var(--serif);
  font-size: 0.5rem;
  font-style: italic;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 3px;
}
.primary-nav {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
}
.primary-nav a {
  font-family: var(--serif);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.25s;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s var(--ease-out);
}
.primary-nav a:hover { color: var(--text); }
.primary-nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}
.header-cta {
  font-family: var(--serif);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--border-accent);
  color: var(--text);
  cursor: pointer;
  background: transparent;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.header-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-subtle);
}

@media (max-width: 920px) {
  .primary-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .header-actions { gap: 0.5rem; }
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 7rem 2.5rem 4rem;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(184, 151, 106, 0.14), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(184, 151, 106, 0.08), transparent 60%),
    linear-gradient(140deg, var(--bg-deep) 0%, var(--bg) 50%, var(--bg-deep) 100%);
  z-index: -2;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 80px,
      var(--border) 80px,
      var(--border) 81px
    );
  opacity: 0.22;
  z-index: -1;
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}

.hero-content {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) 0.3s forwards;
}
.hero-eyebrow .dot {
  width: 4px; height: 4px; background: var(--accent); border-radius: 50%;
}
.hero-eyebrow span {
  font-family: var(--serif);
  font-size: 0.7rem;
  font-style: italic;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-warm);
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  line-height: 0.9;
}
.hero-title .row1 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-soft);
  opacity: 0;
  animation: fade-up 0.9s var(--ease-out) 0.5s forwards;
}
.hero-title .row2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(4.5rem, 11vw, 11rem);
  letter-spacing: 0;
  line-height: 0.88;
  color: var(--text);
  opacity: 0;
  animation: fade-up 1s var(--ease-out) 0.7s forwards;
}
.hero-title .row3 {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  margin-top: 0.4rem;
  opacity: 0;
  animation: fade-up 1s var(--ease-out) 0.85s forwards;
}
.hero-title .row3 .ampersand {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1;
  color: var(--accent);
}
.hero-title .row3 .word {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text);
}

.hero-rule {
  height: 1px;
  width: 80px;
  background: var(--accent);
  opacity: 0;
  animation: grow 0.8s var(--ease-out) 1s forwards;
}
@keyframes grow { from { width: 0; opacity: 0; } to { width: 80px; opacity: 1; } }

.hero-desc {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-soft);
  max-width: 38ch;
  font-weight: 300;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) 1.05s forwards;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) 1.2s forwards;
  margin-top: 0.5rem;
}

.hero-meta {
  display: flex;
  gap: 2.2rem;
  margin-top: 1rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) 1.35s forwards;
}
.hero-meta-item .label {
  font-family: var(--serif);
  font-size: 0.55rem;
  font-style: italic;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: block;
  margin-bottom: 0.35rem;
}
.hero-meta-item .value {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.25;
}

.hero-visual {
  position: relative;
  aspect-ratio: 3/4;
  width: 100%;
  max-height: 70vh;
  opacity: 0;
  animation: fade-up 1.2s var(--ease-out) 0.4s forwards;
}
.hero-visual-frame {
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-mid);
  overflow: hidden;
}
.hero-visual-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,18,16,0) 50%, rgba(20,18,16,0.6) 100%),
    radial-gradient(circle at 30% 30%, rgba(184, 151, 106, 0.25), transparent 60%);
  z-index: 1;
}
.hero-visual-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url('assets/fusion-impact.png') center 30%/cover;
  filter: saturate(0.85) contrast(1.08) brightness(0.92);
}
.hero-visual-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: var(--text);
}
.hero-visual-label .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
}
.hero-visual-label .name {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--text);
}
.hero-visual-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid var(--accent);
  z-index: 2;
}
.hero-visual-corner.tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.hero-visual-corner.tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.hero-visual-corner.bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.hero-visual-corner.br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fade-in 0.8s var(--ease-out) 1.6s forwards;
  z-index: 3;
}
.hero-scroll span {
  font-family: var(--serif);
  font-size: 0.55rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--text-faint), transparent);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}

@media (max-width: 920px) {
  .hero { padding: 7rem 1.5rem 3rem; }
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  /* Stretch text content to viewport, center visual */
  .hero-text { width: 100%; }
  .hero-desc { max-width: none; }
  .hero-visual {
    max-height: 55vh;
    max-width: 420px;
    width: 100%;
    justify-self: center;
  }
  /* Full-width stacked buttons so they fill the screen */
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  /* Meta tiles stack with label/value on opposite ends */
  .hero-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
  .hero-meta-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.55rem;
  }
  .hero-meta-item .label {
    margin-bottom: 0;
  }
  .hero-meta-item .value {
    text-align: right;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: auto;
    justify-content: flex-start;
    padding: 5.35rem 1.25rem 2.5rem;
  }
  .hero-grain { display: none; }
  .hero-content { gap: 1.75rem; }
  .hero-text { gap: 1rem; }
  .hero-eyebrow { gap: 0.5rem; }
  .hero-eyebrow span {
    font-family: var(--sans);
    font-style: normal;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }
  .hero-title { gap: 0.08rem; line-height: 0.98; }
  .hero-title .row1 {
    font-size: 1rem;
    letter-spacing: 0.14em;
  }
  .hero-title .row2 {
    font-size: clamp(4rem, 18vw, 5.2rem);
    line-height: 0.85;
  }
  .hero-title .row3 {
    gap: 0.65rem;
    margin-top: 0.15rem;
  }
  .hero-title .row3 .ampersand { font-size: 2.35rem; }
  .hero-title .row3 .word {
    font-size: 1.9rem;
    letter-spacing: 0.02em;
  }
  .hero-rule { display: none; }
  .hero-desc {
    font-size: 1rem;
    line-height: 1.55;
    max-width: 32rem;
    color: var(--text-soft);
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1rem;
    font-family: var(--sans);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    font-weight: 600;
  }
  .hero-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    margin-top: 0.15rem;
    padding-top: 1rem;
  }
  .hero-meta-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.45rem;
  }
  .hero-meta-item .label {
    font-family: var(--sans);
    font-style: normal;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    color: var(--text-muted);
  }
  .hero-meta-item .value {
    font-family: var(--sans);
    font-size: 0.82rem;
    text-align: right;
    color: var(--text);
  }
  .hero-visual {
    max-height: none;
    max-width: none;
    width: min(100%, 320px);
    aspect-ratio: 4/3;
  }
  .hero-scroll { display: none; }
}

/* ═══════════════════════════════════════════════
   SECTIONS — generic container
═══════════════════════════════════════════════ */

.section {
  padding: 7rem 2.5rem;
  position: relative;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-bottom: 4rem;
}
.section-head.left {
  align-items: flex-start;
  text-align: left;
}
.section-title {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 0.95;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.01em;
  color: var(--text);
}
.section-title .italic { font-style: italic; color: var(--accent); }
.section-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 56ch;
  line-height: 1.6;
}

@media (max-width: 920px) {
  .section { padding: 5rem 1.5rem; }
  .section-head { margin-bottom: 3rem; }
}
@media (max-width: 680px) {
  .section { padding: 4.5rem 1.25rem; }
  .section-head { margin-bottom: 2.5rem; }
}

/* ═══════════════════════════════════════════════
   ABOUT / PHILOSOPHY
═══════════════════════════════════════════════ */

.about {
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border: 1px solid var(--border-mid);
  overflow: hidden;
}
.about-visual-img {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(20,18,16,0.45), rgba(20,18,16,0.15)),
    url('assets/plasma-portrait.png') center 30%/cover;
  filter: saturate(0.7) brightness(0.95) contrast(1.05);
}
.about-visual-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.4rem 0.85rem;
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-mid);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
}
.about-visual-quote {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--text);
  text-shadow: 0 2px 18px rgba(0,0,0,0.5);
}
.about-text { display: flex; flex-direction: column; gap: 1.5rem; }
.about-heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text);
}
.about-heading .italic { font-style: italic; color: var(--accent); }
.about-body {
  font-size: 0.92rem;
  line-height: 1.95;
  color: var(--text-soft);
  max-width: 56ch;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.about-stat .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.about-stat .label {
  font-family: var(--serif);
  font-size: 0.62rem;
  font-style: italic;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .about-stat .num { font-size: 2rem; }
}

/* ═══════════════════════════════════════════════
   SIGNATURE TREATMENTS
═══════════════════════════════════════════════ */

.treatments {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.treatment-card {
  background: var(--bg);
  padding: 3rem 2.5rem 2.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.35s var(--ease-out);
  min-height: 340px;
}
.treatment-card:hover { background: var(--bg-elevated); }
.treatment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}
.treatment-card:hover::before { transform: scaleX(1); }

.treatment-card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--accent);
  opacity: 0.7;
}
.treatment-card .ico {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: border-color 0.25s, color 0.25s;
}
.treatment-card:hover .ico { border-color: var(--accent); color: var(--accent-warm); }
.treatment-card .name {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: 0.01em;
}
.treatment-card .name em {
  font-style: italic;
  color: var(--accent);
}
.treatment-card .desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-soft);
  font-weight: 400;
  flex: 1;
  max-width: 38ch;
}
.treatment-card .price-from {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--text-faint);
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.treatment-card .price-from strong {
  color: var(--text-soft);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
}

@media (max-width: 1100px) { .treatment-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .treatment-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .treatment-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════
   FUSION 8 EDITORIAL FEATURE
═══════════════════════════════════════════════ */

.fusion-feature {
  background: var(--bg-deep);
  padding: 8rem 2.5rem 8rem;
  position: relative;
  overflow: hidden;
}
.fusion-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, var(--accent-glow), transparent 50%),
    radial-gradient(circle at 80% 70%, var(--accent-glow), transparent 60%),
    url('assets/plasma-texture.png') center/cover;
  opacity: 0.35;
  mix-blend-mode: screen;
  z-index: 0;
}
.fusion-feature-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fusion-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}
.fusion-logo {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.fusion-logo .eight {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(7rem, 14vw, 12rem);
  line-height: 0.85;
  color: var(--text);
  letter-spacing: -0.04em;
}
.fusion-logo .stack {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.fusion-logo .stack .word {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--accent);
}
.fusion-logo .stack .tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--text-muted);
}
.fusion-head-text { display: flex; flex-direction: column; gap: 1.2rem; }
.fusion-head-text h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  color: var(--text);
}
.fusion-head-text h2 em { font-style: italic; color: var(--accent); }
.fusion-head-text p {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.9;
  max-width: 60ch;
}
.fusion-head-text p strong {
  color: var(--text);
  font-weight: 500;
}

.fusion-spread {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 4rem;
}
.fusion-card {
  position: relative;
  border: 1px solid var(--border-mid);
  overflow: hidden;
  background: var(--bg);
}
.fusion-card.tall { grid-row: span 2; aspect-ratio: 3/8; }
.fusion-card .img-fill {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.fusion-card .img-impact {
  background:
    linear-gradient(180deg, rgba(20,18,16,0) 30%, rgba(20,18,16,0.85) 100%),
    url('assets/fusion-impact.png') center 30%/cover;
}
.fusion-card .img-device {
  background:
    radial-gradient(circle at 50% 60%, rgba(184, 151, 106, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(20,18,16,0.3) 0%, rgba(20,18,16,0.1) 40%, rgba(20,18,16,0.92) 100%),
    url('assets/fusion-device.png') center 65%/cover;
}
.fusion-card .img-mods {
  background:
    linear-gradient(180deg, rgba(20,18,16,0.2) 0%, rgba(20,18,16,0.1) 40%, rgba(20,18,16,0.92) 100%),
    url('assets/plasma-portrait.png') center 25%/cover;
}
.fusion-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  gap: 0.5rem;
  z-index: 2;
}
.fusion-card-content.top { justify-content: space-between; }
.fusion-card-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
}
.fusion-card-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}
.fusion-card-title em { font-style: italic; }
.fusion-card-desc {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 32ch;
}
.fusion-card.aspect-portrait { aspect-ratio: 3/4; }
.fusion-card.aspect-square { aspect-ratio: 1/1; }

.fusion-modalities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 4rem;
}
.modality {
  background: var(--bg);
  padding: 1.8rem 1rem;
  text-align: center;
  cursor: default;
  transition: background 0.25s;
}
.modality:hover { background: var(--bg-elevated); }
.modality .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--accent);
  opacity: 0.7;
}
.modality .name {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
}
@media (max-width: 860px) {
  .fusion-head { grid-template-columns: 1fr; gap: 2rem; }
  .fusion-spread { grid-template-columns: 1fr 1fr; }
  .fusion-modalities { grid-template-columns: repeat(2, 1fr); }
}

.fusion-conditions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-bottom: 3rem;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}
.condition-tag {
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  border: 1px solid var(--border-mid);
  padding: 0.7rem 1.4rem;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
  cursor: default;
}
.condition-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-subtle);
}

.fusion-quote-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-mid);
}
.fusion-quote {
  text-align: center;
}
.fusion-quote .text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 0.85rem;
}
.fusion-quote .text::before { content: '\201C'; color: var(--accent); margin-right: 2px; }
.fusion-quote .text::after { content: '\201D'; color: var(--accent); margin-left: 2px; }
.fusion-quote .by {
  font-family: var(--serif);
  font-size: 0.6rem;
  font-style: italic;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-faint);
}
@media (max-width: 860px) {
  .fusion-quote-row { grid-template-columns: 1fr; gap: 2.5rem; }
}

.fusion-callout {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.fusion-callout .rule { flex: 1; height: 1px; background: var(--border-mid); }
.fusion-callout .text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════
   RESULTS GALLERY
═══════════════════════════════════════════════ */

.results {
  background: var(--bg);
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.result-card {
  position: relative;
  aspect-ratio: 1/1;
  border: 1px solid var(--border-mid);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--bg-elevated);
}
.result-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.04);
  transition: transform 0.6s var(--ease-out), filter 0.4s;
  image-rendering: -webkit-optimize-contrast;
}
.result-card:hover img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.05);
}
.result-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,11,9,0.78) 100%);
  pointer-events: none;
}
.result-meta {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: var(--text);
  pointer-events: none;
}
.result-meta .name {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.result-meta .tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}
.results-foot {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.results-foot .note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}
@media (max-width: 860px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}
@media (max-width: 480px) {
  .results-grid { grid-template-columns: 1fr; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 7, 6, 0.96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-inner {
  position: relative;
  max-width: 720px;
  width: 100%;
  text-align: center;
}
.lightbox-img-wrap {
  border: 1px solid var(--border-mid);
  background: var(--bg-elevated);
  padding: 1.25rem;
}
.lightbox img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
}
.lightbox-meta {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
}
.lightbox-meta .name {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--text);
}
.lightbox-meta .tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-mid);
  background: var(--bg-glass);
  color: var(--text);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.4rem;
  transition: border-color 0.2s, color 0.2s;
}
.lightbox-close:hover { border-color: var(--accent); color: var(--accent); }

/* ═══════════════════════════════════════════════
   PRICE LIST SECTION
═══════════════════════════════════════════════ */

.price-list-section {
  position: relative;
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  padding-top: 6rem;
  padding-bottom: 7rem;
}
.price-list-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section-nav-wrapper {
  position: sticky;
  top: 72px;
  z-index: 50;
  background: var(--bg-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  margin: 0 -2.5rem 4rem;
  padding: 0 2.5rem;
}
.section-nav {
  list-style: none;
  display: flex;
  gap: 0 1.8rem;
  overflow-x: auto;
  white-space: nowrap;
  padding: 1rem 0;
  scrollbar-width: none;
}
.section-nav::-webkit-scrollbar { display: none; }
.section-nav a {
  font-family: var(--serif);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-faint);
  transition: color 0.25s;
  padding: 0.3rem 0;
  position: relative;
}
.section-nav a:hover, .section-nav a.active { color: var(--accent); }
.section-nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.5rem;
  height: 1px;
  background: var(--accent);
}

.outer-frame {
  border: 1px solid var(--border-mid);
  padding: 4.5rem 4.5rem;
  position: relative;
  background: var(--bg);
}
.outer-frame::before, .outer-frame::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid var(--accent);
}
.outer-frame::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.outer-frame::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.frame-header {
  text-align: center;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3.5rem;
}
.frame-monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border: 1px solid var(--border-accent);
  margin: 0 auto 1.75rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--accent);
  position: relative;
}
.frame-monogram::before, .frame-monogram::after {
  content: '';
  position: absolute;
  width: 7px; height: 7px;
  border: 1px solid var(--accent);
}
.frame-monogram::before { top: -4px; left: -4px; transform: rotate(45deg); background: var(--bg); }
.frame-monogram::after { bottom: -4px; right: -4px; transform: rotate(45deg); background: var(--bg); }
.frame-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.frame-subtitle {
  font-family: var(--serif);
  font-size: 0.7rem;
  font-style: italic;
  letter-spacing: 0.38em;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.ornament { display: flex; align-items: center; gap: 1rem; max-width: 220px; margin: 0 auto; }
.ornament::before, .ornament::after { content: ''; flex: 1; height: 1px; background: var(--border-mid); }
.ornament-diamond { width: 5px; height: 5px; border: 1px solid var(--accent); transform: rotate(45deg); flex-shrink: 0; }

.price-section {
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
}
.price-section:last-of-type { border: none; margin-bottom: 0; padding-bottom: 0; }

.price-section-header {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.price-section-header .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  opacity: 0.7;
}
.price-section-header .title {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--text);
  flex: 1;
}
.price-section-header .meta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.7rem;
  color: var(--text-faint);
}

.sub-group-title {
  font-family: var(--serif);
  font-size: 0.7rem;
  font-style: italic;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin: 1.75rem 0 0.65rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.sub-group-title:first-child { margin-top: 0; }

.service-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.4rem 0.6rem;
  margin: 0 -0.6rem;
  border-left: 2px solid transparent;
  transition: border-left-color 0.22s, background 0.22s;
}
.service-row:hover {
  border-left-color: var(--accent);
  background: var(--accent-subtle);
}
.service-name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text);
  flex-shrink: 0;
}
.service-leader {
  flex: 1;
  border-bottom: 1px dotted var(--border-mid);
  height: 0;
  margin-bottom: 4px;
  min-width: 1rem;
}
.service-price {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  text-align: right;
  letter-spacing: 0.04em;
}

@media (max-width: 920px) {
  .outer-frame { padding: 2.5rem 1.5rem; overflow: hidden; }
  .price-list-content { padding: 0 1.25rem; }
  .section-nav-wrapper { margin: 0 -1.25rem 2.5rem; padding: 0 1.25rem; top: 60px; }

  /* Section header: let the title break onto its own line if needed */
  .price-section-header {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
  .price-section-header .title {
    flex: 1 1 100%;
    min-width: 0;
    letter-spacing: 0.28em;
    font-size: 0.9rem;
  }

  /* Service rows: hide dotted leader, let names wrap, keep price pinned right */
  .service-leader { display: none; }
  .service-row {
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
  }
  .service-name {
    flex: 1 1 0;
    min-width: 0;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    font-size: 0.92rem;
    line-height: 1.35;
  }
  .service-price {
    flex-shrink: 0;
    font-size: 0.95rem;
    white-space: nowrap;
  }
}
@media (max-width: 680px) {
  .outer-frame { padding: 2rem 1rem; }
  .frame-header { padding-bottom: 2rem; margin-bottom: 2rem; }
}


/* ═══════════════════════════════════════════════
   TEAM
═══════════════════════════════════════════════ */

.team { background: var(--bg); }
.team-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  gap: 2rem;
}
.team-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border: 1px solid var(--border-mid);
  background: var(--bg-elevated);
  overflow: hidden;
  min-height: 380px;
}
.team-portrait {
  position: relative;
  background: var(--bg-deep);
  overflow: hidden;
}
.team-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, var(--accent-glow), transparent 65%),
    linear-gradient(180deg, var(--bg-elevated), var(--bg-deep));
}
.team-portrait .mono {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(5rem, 12vw, 9rem);
  color: var(--accent);
  opacity: 0.78;
  line-height: 1;
  letter-spacing: -0.04em;
}
.team-portrait .badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--border-mid);
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.team-info {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.team-info .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--accent);
}
.team-info .name {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--text);
}
.team-info .name em { font-style: italic; }
.team-info .role {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: -0.4rem;
}
.team-info .bio {
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--text-soft);
  font-weight: 300;
  flex: 1;
}
.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}
.team-skill {
  font-family: var(--serif);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--border);
}
.team-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  cursor: pointer;
  transition: gap 0.3s var(--ease-out);
}
.team-cta:hover { gap: 1.2rem; }
.team-cta::after {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
}
@media (max-width: 860px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 1fr; min-height: auto; }
  .team-portrait { aspect-ratio: 5/3; }
}



/* ═══════════════════════════════════════════════
   CONTACT / VISIT
═══════════════════════════════════════════════ */

.visit {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 7rem 2.5rem 5rem;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
}
.visit-block { display: flex; flex-direction: column; gap: 1rem; }
.visit-block h3 {
  font-family: var(--serif);
  font-size: 0.7rem;
  font-style: italic;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: 0.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.visit-block p, .visit-block a {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
}
.visit-block .small {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  font-weight: 300;
}
.visit-contacts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.visit-contact {
  border: 1px solid var(--border-mid);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: border-color 0.2s, background 0.2s;
}
.visit-contact:hover { border-color: var(--accent); background: var(--accent-subtle); }
.visit-contact .label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.visit-contact .num {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: 0.08em;
}
@media (max-width: 860px) {
  .visit-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */

.site-footer {
  padding: 4rem 2.5rem 2rem;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.footer-mono {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 0.62rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.footer-rule {
  width: 80px;
  height: 1px;
  background: var(--border-mid);
}
.footer-copy {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--text-faint);
  text-align: center;
}

/* ═══════════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════════ */

.back-to-top {
  position: fixed;
  bottom: 5.25rem;
  right: 2rem;
  z-index: 80;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border-mid);
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, border-color 0.2s, color 0.2s;
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { border-color: var(--accent); color: var(--accent); }

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(232, 220, 200, 0.28);
  border-radius: 50%;
  background: #1f8f56;
  color: #fff;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), background 0.2s var(--ease-out);
}
.whatsapp-float:hover {
  background: #23a664;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   REVEAL
═══════════════════════════════════════════════ */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }

/* ═══════════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════════ */

@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50%      { opacity: 1; transform: translateY(8px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — small screens
═══════════════════════════════════════════════ */

/* Tablet & intermediate widths — reduce big horizontal gutters */
@media (max-width: 920px) {
  .site-header { padding: 1.1rem 1.5rem; }
  .site-header.scrolled { padding: 0.8rem 1.5rem; }
  .fusion-feature { padding: 6rem 1.5rem; }
  .visit { padding: 6rem 1.5rem 4rem; }
  .site-footer { padding: 3.5rem 1.5rem 2rem; }
}

/* Small phones — tighter still */
@media (max-width: 480px) {
  .site-header { padding: 1rem 1.25rem; }
  .site-header.scrolled { padding: 0.8rem 1.25rem; }
  .hero { padding: 5.35rem 1.25rem 2.5rem; }
  .section { padding: 4rem 1.25rem; }
  .fusion-feature { padding: 5rem 1.25rem; }
  .visit { padding: 5rem 1.25rem 4rem; }
  .back-to-top { bottom: 5.25rem; right: 1.25rem; }
  .whatsapp-float { right: 1rem; bottom: 1rem; }
}

/* ═══════════════════════════════════════════════
   LOCATION BADGE — "Kuruman Only"
═══════════════════════════════════════════════ */
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.75rem;
  padding: 0.22rem 0.65rem;
  border: 1px solid var(--accent);
  background: var(--accent-subtle);
  color: var(--accent);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  vertical-align: middle;
  border-radius: 1px;
}
.location-badge::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--accent);
  transform: rotate(45deg);
}
@media (max-width: 680px) {
  .location-badge {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    padding: 0.18rem 0.5rem;
    margin-left: 0.5rem;
  }
}

/* Kuruman-only section gets a subtle left rail */
.price-section.kuruman-only {
  position: relative;
}
.price-section.kuruman-only .price-section-header .title {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}

/* Locations split heading inside the price list */
.locations-divider {
  margin: 4.5rem 0 2.5rem;
  text-align: center;
}
.locations-divider .eyebrow-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  max-width: 520px;
  margin: 0 auto 0.85rem;
}
.locations-divider .eyebrow-line::before,
.locations-divider .eyebrow-line::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-mid);
}
.locations-divider .label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.locations-divider .sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════
   DOWNLOAD PRICE LIST BUTTON
═══════════════════════════════════════════════ */
.price-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.75rem auto 0;
  padding: 0.85rem 1.85rem;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s var(--ease-out),
              color 0.25s var(--ease-out),
              letter-spacing 0.35s var(--ease-out),
              border-color 0.25s;
  white-space: nowrap;
}
.price-download-btn:hover {
  background: var(--accent);
  color: var(--bg-deep);
  letter-spacing: 0.4em;
}
.price-download-btn svg {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}
.price-download-btn:hover svg {
  transform: translateY(2px);
}

/* ═══════════════════════════════════════════════
   UTILITIES & ONE-OFFS — extracted from inline styles
═══════════════════════════════════════════════ */

/* Header monogram slash separator (B/G) */
.header-logo-mark .slash {
  font-size: 0.65em;
  color: var(--text-faint);
  margin: 0 1px;
}

/* Generic accent italic for emphasised words */
.text-accent {
  color: var(--accent);
}
.text-accent-italic {
  font-style: italic;
  color: var(--accent);
}

/* Find Us — studio name labels */
.find-us-label {
  color: var(--accent);
  font-weight: 500;
}
.find-us-p--spaced {
  margin-top: 0.85rem;
}

/* Fusion section centered eyebrow heading (used twice in Fusion 8 feature) */
.fusion-section-eyebrow {
  font-family: var(--serif);
  text-align: center;
  font-style: italic;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  color: var(--text-faint);
  margin-bottom: 1.5rem;
}
.fusion-section-eyebrow--lg {
  font-size: 1rem;
  letter-spacing: 0.32em;
  color: var(--text-soft);
  margin-bottom: 2rem;
}

/* Results section — slightly larger sub-heading */
.section-sub--lg {
  font-size: 20px;
}

/* Laser & IPL callout paragraph (consultation note) */
.laser-callout {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 60ch;
  margin: 1.5rem 0 0.5rem;
  padding: 1rem 1.25rem;
  border-left: 2px solid var(--accent);
  background: var(--accent-subtle);
}

/* Visit section head — wider than default section-head */
.section-head--wide {
  max-width: 1280px;
  margin: 0 auto 4rem;
}

/* Book sheet (WhatsApp choice modal) */
.book-sheet { max-width: 480px; }
.book-sheet-card {
  border: 1px solid var(--border-mid);
  background: var(--bg-elevated);
  padding: 2.5rem 2rem;
  text-align: center;
}
.book-sheet-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
.book-sheet-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.book-sheet-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--text-faint);
  margin-bottom: 2rem;
}
.book-sheet-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.book-sheet-actions .btn { justify-content: center; }
.book-sheet-footnote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.7rem;
  color: var(--text-faint);
  margin-top: 1.5rem;
}

/* ═══════════════════════════════════════════════
   PRINT — clean, paper-friendly price list
═══════════════════════════════════════════════ */
@media print {
  @page { margin: 14mm 12mm; size: A4; }

  /* Hide everything except the price list */
  body > *:not(.price-list-section) { display: none !important; }
  .site-header,
  .back-to-top,
  .lightbox,
  .whatsapp-float,
  .section-nav-wrapper,
  .price-download-btn { display: none !important; }

  /* Force light theme on paper */
  html, body, .price-list-section {
    background: #fff !important;
    color: #1a1612 !important;
  }

  .price-list-section { padding: 0 !important; margin: 0 !important; }
  .price-list-content { padding: 0 !important; max-width: 100% !important; }

  .outer-frame {
    padding: 0 !important;
    border: none !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .frame-header {
    margin-bottom: 1.25rem !important;
    padding-bottom: 0.85rem !important;
    border-bottom: 1px solid #b8976a !important;
    text-align: center;
  }
  .frame-monogram {
    color: #b8976a !important;
    border-color: #b8976a !important;
  }
  .frame-title {
    color: #1a1612 !important;
    font-size: 26pt !important;
  }
  .frame-subtitle {
    color: #6b5a44 !important;
    font-size: 9pt !important;
  }
  .ornament-diamond { border-color: #b8976a !important; }

  .price-section {
    page-break-inside: avoid;
    break-inside: avoid;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    margin-bottom: 1.25rem !important;
    padding-bottom: 1rem !important;
  }
  .price-section-header {
    border-bottom: 1px solid rgba(0,0,0,0.18) !important;
    padding-bottom: 0.4rem !important;
    margin-bottom: 0.6rem !important;
  }
  .price-section-header .num,
  .price-section-header .meta { color: #8a6a3f !important; }
  .price-section-header .title {
    color: #1a1612 !important;
    font-size: 13pt !important;
  }

  .sub-group-title {
    color: #8a6a3f !important;
    font-size: 9pt !important;
    margin-top: 0.6rem !important;
    page-break-after: avoid;
  }

  .service-row {
    padding: 0.18rem 0 !important;
    border-left: none !important;
    page-break-inside: avoid;
  }
  .service-row:hover { background: transparent !important; }
  .service-name {
    color: #1a1612 !important;
    font-size: 10.5pt !important;
    font-weight: 600 !important;
  }
  .service-price {
    color: #1a1612 !important;
    font-size: 10.5pt !important;
    font-weight: 500 !important;
  }
  .service-leader { border-bottom-color: rgba(0,0,0,0.22) !important; }

  .location-badge {
    color: #8a6a3f !important;
    border-color: #8a6a3f !important;
    background: rgba(184,151,106,0.08) !important;
    font-size: 7.5pt !important;
  }
  .location-badge::before { background: #8a6a3f !important; }

  .locations-divider {
    page-break-before: auto;
    margin: 1.5rem 0 1rem !important;
    border-top: 1px solid rgba(0,0,0,0.15);
    padding-top: 0.85rem;
  }
  .locations-divider .label { color: #8a6a3f !important; }
  .locations-divider .sub { color: #6b5a44 !important; }
  .locations-divider .eyebrow-line::before,
  .locations-divider .eyebrow-line::after { background: rgba(0,0,0,0.18) !important; }

  /* Reveal anims off in print */
  .reveal { opacity: 1 !important; transform: none !important; }
}
