:root {
  --bg: #ffffff;
  --paper: #ffffff;
  --paper-strong: rgba(255,255,255,.92);
  --text: #111111;
  --muted: #6a6a67;
  --line: rgba(17, 17, 17, 0.08);
  --dark: #111111;
  --accent: #e8dfd1;
  --section-dark-bg: #111111;
  --section-dark-text: #ffffff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
[data-theme="dark"] {
  --bg: #000000;
  --paper: #000000;
  --paper-strong: rgba(8, 8, 8, 0.92);
  --text: #f5f2ea;
  --muted: #9a9489;
  --line: rgba(245, 242, 234, 0.12);
  --dark: #f5f2ea;
  --accent: #111111;
  --section-dark-bg: #000000;
  --section-dark-text: #f5f2ea;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: clip; }
html { scrollbar-width: none; }
body { scrollbar-width: none; -ms-overflow-style: none; }
body::-webkit-scrollbar { width: 0; height: 0; display: none; }
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: var(--text);
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--text) 5%, transparent), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  transition: background-color .35s ease, color .35s ease;
  position: relative;
}
[data-theme="dark"] body {
  background: #000000;
}
.scroll-navigator {
  position: fixed;
  top: 50%;
  right: 16px;
  z-index: 110;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 96px;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translateY(-50%);
  opacity: 0.72;
  transition: opacity .25s ease, transform .25s ease;
}
.scroll-navigator:hover {
  opacity: 1;
}
.scroll-navigator-track {
  position: relative;
  display: block;
  width: 4px;
  height: 76px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text) 14%, transparent);
  overflow: hidden;
}
.scroll-navigator-thumb {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 18px;
  border-radius: 999px;
  background: rgba(17,17,17,0.96);
  transform: translateX(-50%);
  transition: top .18s ease-out, background-color .35s ease;
}
[data-theme="dark"] .scroll-navigator-track {
  background: rgba(255,255,255,0.12);
}
[data-theme="dark"] .scroll-navigator-thumb {
  background: rgba(255,255,255,0.96);
}
@media (pointer: fine) {
  body,
  a,
  button,
  input,
  textarea,
  select,
  summary,
  label {
    cursor: none !important;
  }
}
.dot-grid-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.34;
}
.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  background: var(--bg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .75s cubic-bezier(.22, 1, .36, 1), visibility .75s cubic-bezier(.22, 1, .36, 1);
}
html.nav-preloading .site-preloader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.site-preloader-inner {
  display: grid;
  justify-items: center;
  gap: 18px;
}
.site-preloader-logo {
  width: clamp(56px, 8vw, 86px);
  height: auto;
  filter: brightness(0) saturate(100%) invert(6%) sepia(8%) saturate(14%) hue-rotate(6deg) brightness(99%) contrast(92%);
  animation: preloaderFloat 1.65s ease-in-out infinite;
}
[data-theme="dark"] .site-preloader-logo {
  filter: brightness(0) saturate(100%) invert(96%) sepia(12%) saturate(287%) hue-rotate(337deg) brightness(98%) contrast(94%);
}
.site-preloader-line {
  width: 88px;
  height: 3px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text) 20%, transparent);
  overflow: hidden;
  position: relative;
}
.site-preloader-line::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--text);
  transform-origin: left center;
  animation: preloaderSweep 1.35s cubic-bezier(.22, 1, .36, 1) infinite;
}
.site-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 75;
  min-width: min(320px, calc(100vw - 28px));
  max-width: min(420px, calc(100vw - 28px));
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 96%, transparent);
  color: var(--text);
  box-shadow: var(--shadow);
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.4;
  transform: translate(-50%, 16px);
  opacity: 0;
  visibility: hidden;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), opacity .45s ease, visibility .45s ease;
  pointer-events: none;
}
.site-toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}
@keyframes preloaderFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes preloaderSweep {
  0% { transform: scaleX(0); transform-origin: left center; }
  55% { transform: scaleX(1); transform-origin: left center; }
  56% { transform: scaleX(1); transform-origin: right center; }
  100% { transform: scaleX(0); transform-origin: right center; }
}
body > * {
  position: relative;
  z-index: 1;
}
.blob-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 120;
  opacity: 0;
  transition: opacity .2s ease;
}
.blob-cursor.is-visible {
  opacity: 1;
}
.blob-cursor-core,
.blob-cursor-trail {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 999px;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform, opacity;
}
.blob-cursor-core {
  width: 14px;
  height: 14px;
  background: rgba(17,17,17,0.95);
  box-shadow: 0 0 0 1px rgba(17,17,17,0.08);
}
.blob-cursor-trail-1 {
  width: 28px;
  height: 28px;
  background: rgba(17,17,17,0.16);
}
.blob-cursor-trail-2 {
  width: 20px;
  height: 20px;
  background: rgba(17,17,17,0.1);
}
[data-theme="dark"] .blob-cursor-core {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}
[data-theme="dark"] .blob-cursor-trail-1 {
  background: rgba(255,255,255,0.16);
}
[data-theme="dark"] .blob-cursor-trail-2 {
  background: rgba(255,255,255,0.1);
}
@media (pointer: coarse), (max-width: 980px) {
  .blob-cursor {
    display: none;
  }
}
@media (max-width: 980px) {
  .scroll-navigator {
    right: 10px;
    width: 16px;
    height: 80px;
  }
  .scroll-navigator-track {
    height: 62px;
  }
  .scroll-navigator-thumb {
    height: 14px;
  }
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { display: block; width: 100%; height: auto; }
h1, h2, h3, h4, h5, h6,
.menu-link,
.button,
.stat-row strong,
.footer-grid h2,
.location-copy h2,
.contact-modal-panel h2,
.contact-modal-panel h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
.hero-subtitle,
.eyebrow,
.menu-overline,
.menu-meta-link,
.stat-row span,
.footer-contact-link,
.footer-links-col a,
.footer-address,
.footer-hours,
.footer-links-col p,
.contact-field span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
p, li, dd, dt, small, label,
.lead,
.menu-overlay-meta p,
.feature-copy p:last-child,
.team-copy p:last-child,
.quote-card p,
.section-copy p,
.prose-grid p,
.legal-prose p,
.footer-intro,
.footer-disclaimer p,
.contact-modal-copy,
.location-copy > p:not(.eyebrow),
.location-meta p {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}
.container {
  width: min(1480px, calc(100% - 28px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 0;
  background: transparent;
  border-bottom: 0;
  transition: transform .28s cubic-bezier(.22, 1, .36, 1);
}
.site-header .container {
  width: min(1480px, calc(100% - 28px));
  margin: 0 auto;
}
.site-header.is-hidden {
  transform: translateY(calc(-100% - 8px));
}
.nav-frame {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
  padding: 0 20px;
  border: 1px solid color-mix(in srgb, var(--text) 8%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  transition: background-color .45s cubic-bezier(.22, 1, .36, 1), border-color .45s cubic-bezier(.22, 1, .36, 1), transform .35s ease, box-shadow .35s ease;
  width: 100%;
  box-sizing: border-box;
}
.site-header.is-scrolled .nav-bar {
  background: color-mix(in srgb, var(--paper) 92%, transparent);
}
[data-theme="dark"] .hero-kicker {
  background: rgba(14, 14, 14, 0.92);
}
[data-theme="dark"] .nav-bar {
  background: rgba(10, 10, 10, 0.78);
  border-color: rgba(255,255,255,.08);
  box-shadow: none;
}
[data-theme="dark"] .site-header.is-scrolled .nav-bar {
  background: rgba(8, 8, 8, 0.9);
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.brand-logo {
  display: block;
  width: 72px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
  transition: filter .35s ease;
}
[data-theme="dark"] .brand-logo {
  filter: none;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-button {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  transition: transform .25s ease, background-color .25s ease, color .25s ease;
}
.cart-button:hover {
  transform: translateY(-2px);
}
.cart-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.cart-button-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  transform: scale(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.cart-button-count.has-items {
  transform: scale(1);
}
[data-theme="dark"] .cart-button {
  background: rgba(8, 8, 8, 0.96);
}
[data-theme="dark"] .cart-button-count {
  color: #0f1114;
}
.nav-actions > *:not(.menu-toggle) {
  transition: opacity .25s ease, transform .25s ease;
}
.menu-open .nav-actions > *:not(.menu-toggle) {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--text);
  transition: transform .25s ease, background-color .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--dark); color: white; }
.button-dark:hover { color: white; }
[data-theme="dark"] .button-dark { color: #0f1114; }
.button-light { background: transparent; color: var(--text); }
.menu-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 95;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  box-shadow: none;
  transition: transform .28s ease, opacity .28s ease;
}
.menu-toggle:hover { transform: translateY(-1px); }
.menu-toggle-lines {
  position: relative;
  width: 28px;
  height: 20px;
}
.menu-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.5px;
  border-radius: 999px;
  background: var(--text);
  transform-origin: center;
  transition: transform .36s cubic-bezier(.22, 1, .36, 1), top .36s cubic-bezier(.22, 1, .36, 1), opacity .28s ease;
}
.menu-line-top { top: 4px; }
.menu-line-bottom { top: 14px; }
.menu-toggle.is-open .menu-line-top {
  top: 9px;
  transform: rotate(45deg);
}
.menu-toggle.is-open .menu-line-bottom {
  top: 9px;
  transform: rotate(-45deg);
}
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  align-items: center;
  padding: 112px 24px 30px;
  overflow-y: auto;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 28%),
    linear-gradient(180deg, rgba(248,247,242,0.97), rgba(230,225,214,0.95));
  opacity: 0;
  pointer-events: none;
  transform: translateY(-2%);
  transition: opacity .35s ease, transform .35s ease;
}
.menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
html.menu-open,
body.menu-open {
  overflow: hidden;
  height: 100%;
}
body.menu-open {
  touch-action: none;
}
.contact-open {
  overflow: hidden;
}
.gallery-open {
  overflow: hidden;
}
[data-theme="dark"] .menu-overlay {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.05), transparent 24%),
    linear-gradient(180deg, rgba(8,8,8,0.98), rgba(0,0,0,0.98));
}
.menu-overlay-inner {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-areas:
    "meta panel"
    "links panel";
  gap: 40px;
  align-items: end;
}
.menu-overlay-meta {
  grid-area: meta;
  align-self: start;
  padding-top: 18px;
  min-height: min(70vh, 680px);
  display: flex;
  flex-direction: column;
}
.menu-overline {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.menu-overlay-meta p {
  max-width: 340px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}
.menu-utility-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.menu-account-button {
  width: auto;
  min-width: 180px;
}
.menu-meta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.menu-meta-links-bottom {
  grid-area: links;
  align-self: start;
  margin-top: -260px;
  max-width: 640px;
}
.menu-meta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1;
  transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
}
.menu-meta-link:hover {
  transform: translateY(-2px);
}
.menu-panel {
  grid-area: panel;
  align-self: start;
}
.menu-meta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}
.menu-meta-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.menu-panel {
  display: grid;
  gap: 10px;
}
.menu-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  padding: 6px 0;
  font-size: clamp(1.85rem, 4.8vw, 4.35rem);
  line-height: 0.92;
  letter-spacing: -0.026em;
  min-height: 1.08em;
  color: var(--text);
}
.menu-link-primary,
.menu-link-secondary {
  display: block;
  transition: transform .42s cubic-bezier(.22, 1, .36, 1), opacity .3s ease;
}
.menu-link-primary {
  position: relative;
  z-index: 1;
}
.menu-link-secondary {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  transform: translateY(105%);
}
.menu-link:hover .menu-link-primary,
.menu-link:focus-visible .menu-link-primary {
  transform: translateY(-105%);
  opacity: 0;
}
.menu-link:hover .menu-link-secondary,
.menu-link:focus-visible .menu-link-secondary {
  transform: translateY(0);
  opacity: 1;
}
.menu-link:hover,
.menu-link:focus-visible {
  color: var(--text);
}
.menu-link.is-active {
  color: var(--text);
}
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.theme-toggle-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-items: center;
  gap: 0;
  width: 74px;
  height: 40px;
  padding: 0 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  box-shadow: var(--shadow);
  transition: background-color .55s cubic-bezier(.22, 1, .36, 1), border-color .55s cubic-bezier(.22, 1, .36, 1), transform .4s cubic-bezier(.22, 1, .36, 1);
}
.theme-toggle:hover .theme-toggle-track { transform: translateY(-1px); }
.theme-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1;
}
.theme-icon-moon {
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14.9 2.2c.3 0 .6.18.74.46.14.29.08.63-.15.86A8.65 8.65 0 1 0 20.46 17.5c.23-.23.57-.29.86-.15.28.14.46.44.46.74A10.7 10.7 0 1 1 14.9 2.2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14.9 2.2c.3 0 .6.18.74.46.14.29.08.63-.15.86A8.65 8.65 0 1 0 20.46 17.5c.23-.23.57-.29.86-.15.28.14.46.44.46.74A10.7 10.7 0 1 1 14.9 2.2Z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.theme-toggle-thumb {
  position: absolute;
  top: 5px;
  left: 6px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  transition: transform 1.35s cubic-bezier(.22, 1, .36, 1), background-color .7s cubic-bezier(.22, 1, .36, 1), box-shadow .7s cubic-bezier(.22, 1, .36, 1);
}
[data-theme="dark"] .theme-toggle-thumb {
  transform: translateX(32px);
}
.hero { padding: 70px 0 40px; }
.hero-home {
  padding-top: 24px;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}
.hero-home-shell {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 32px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}
.hero-home-shell > * {
  position: relative;
  z-index: 2;
}
.hero-grid, .page-hero-grid, .split-grid, .prose-grid, .footer-grid, .contact-grid {
  display: grid;
  gap: 32px;
}
.hero-grid, .page-hero-grid, .split-grid { grid-template-columns: 1.2fr 1fr; align-items: end; }
.hero-page {
  padding: 56px 0 32px;
}
.hero-page .page-hero-copy h1,
.hero-page.compact .section-heading h1,
.hero-page.compact .legal-prose h1 {
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  letter-spacing: -0.028em;
  line-height: 1;
}
.hero-page .lead,
.hero-page.compact .lead {
  font-size: clamp(1rem, 1.65vw, 1.3rem);
  line-height: 1.65;
  max-width: 42rem;
}
.hero-page .eyebrow,
.hero-page.compact .eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}
.hero-grid-home {
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: start;
  min-height: auto;
  gap: 20px;
  margin-top: -22px;
}
.hero-title-top {
  min-height: calc(100vh - 180px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  position: relative;
}
.hero-title h1 {
  margin: 0;
  line-height: 0.8;
  font-size: clamp(5.9rem, 24.8vw, 24rem);
  letter-spacing: -0.045em;
  white-space: nowrap;
}
.hero-title-top h1 {
  width: 100%;
  text-align: center;
}
.hero-subtitle {
  margin: 18px 0 0;
  font-size: clamp(1.2rem, 2.2vw, 2.1rem);
  line-height: 1.05;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}
.hero-kicker {
  margin: 0 0 22px;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  box-shadow: var(--shadow);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-side {
  padding-top: 0;
  padding-bottom: 0;
  max-width: 1180px;
  text-align: center;
}
.hero-stats {
  display: flex;
  align-items: end;
  justify-content: center;
  width: 100%;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.94rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.lead {
  font-size: clamp(1.3rem, 2.65vw, 2.3rem);
  line-height: 1.42;
  color: #4e4e4b;
}
.hero-home .lead {
  max-width: 880px;
  margin-inline: auto;
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  line-height: 1.55;
}
.hero-actions, .cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
  justify-content: center;
}
.stat-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 52px;
  width: min(1260px, 100%);
  border: 0;
  border-radius: 36px;
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.stat-row::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: inherit;
  pointer-events: none;
}
[data-theme="light"] .stat-row {
  box-shadow: none;
}
.stat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  text-align: center;
  padding: 24px;
  transition: color .55s cubic-bezier(.22, 1, .36, 1), background-color .55s cubic-bezier(.22, 1, .36, 1), transform .55s cubic-bezier(.22, 1, .36, 1);
}
.stat-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18%;
  right: 0;
  width: 1px;
  height: 64%;
  background: color-mix(in srgb, var(--text) 12%, transparent);
}
.stat-row strong {
  display: block;
  width: 100%;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  transition: color .55s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1);
}
.stat-row span {
  color: var(--muted);
  font-size: clamp(0.86rem, 1vw, 1rem);
  line-height: 1.4;
  display: block;
  margin-top: 10px;
  transition: color .55s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1);
}
.hero-home .stat-row strong {
  font-size: clamp(2rem, 3.4vw, 3.35rem);
}
.stat-card:hover,
.stat-card:focus-within {
  transform: translateY(-2px);
}
[data-theme="dark"] .stat-card:hover,
[data-theme="dark"] .stat-card:focus-within {
  color: #ffffff;
  background: rgba(255,255,255,.03);
}
[data-theme="light"] .stat-card:hover,
[data-theme="light"] .stat-card:focus-within {
  color: #111111;
  background: rgba(17,17,17,.03);
}
.stat-card:hover strong,
.stat-card:focus-within strong,
.stat-card:hover span,
.stat-card:focus-within span {
  color: currentColor;
}
.stat-card:hover strong,
.stat-card:focus-within strong {
  transform: translateY(-4px);
}
.stat-card:hover span,
.stat-card:focus-within span {
  transform: translateY(4px);
}
.section { padding: 56px 0; }
.section-dark {
  background: var(--section-dark-bg);
  color: var(--section-dark-text);
}
.section-dark .eyebrow,
.section-dark p { color: rgba(255,255,255,.72); }
[data-theme="dark"] .section-dark .eyebrow,
[data-theme="dark"] .section-dark p { color: rgba(243,238,228,.72); }
.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}
.section-heading h1,
.section-heading h2,
.page-hero-copy h1,
.legal-prose h1,
.section-copy h2,
.prose-grid h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.3rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.section-copy p,
.prose-grid p,
.legal-prose p { font-size: 1.02rem; line-height: 1.8; color: color-mix(in srgb, var(--text) 72%, transparent); }
.welcome-copy h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 3.35vw, 3.6rem);
  line-height: 1.02;
  text-wrap: balance;
}
.prose-grid h2,
.legal-prose h1,
.detail-panel h2,
.contact-card h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  letter-spacing: -0.018em;
  line-height: 1.08;
}
.prose-grid p,
.legal-prose p,
.detail-panel p,
.detail-list,
.contact-card p,
.contact-card-details p {
  font-size: 0.97rem;
  line-height: 1.78;
}
.section-dark .feature-card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }
[data-theme="dark"] .section-dark .feature-card {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.08);
}
.section-dark .feature-copy p:last-child,
.section-dark .process-card p,
.section-dark .process-card span,
.section-dark .quote-card span { color: rgba(255,255,255,.72); }
.feature-grid, .quotes-grid, .process-grid, .team-grid {
  display: grid;
  gap: 24px;
}
.feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.list-page-section {
  background: transparent;
}
.list-page-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.treatments-shell {
  width: min(1480px, calc(100% - 28px));
  margin: 0 auto;
}
.treatments-heading {
  width: 100%;
  margin: 0 0 28px;
}
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.feature-card, .quote-card, .process-card, .contact-card, .team-card {
  border: 1px solid var(--line);
  background: var(--paper-strong);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.team-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  transition: background-color .55s cubic-bezier(.22, 1, .36, 1), color .55s cubic-bezier(.22, 1, .36, 1), border-color .55s cubic-bezier(.22, 1, .36, 1), box-shadow .55s cubic-bezier(.22, 1, .36, 1);
}
.team-card .team-copy p,
.team-card .team-copy h3,
.team-card .eyebrow {
  transition: color .45s ease;
}
.team-card:hover,
.team-card:focus-within {
  background: #111111;
  color: #f5f2ea;
  border-color: rgba(245,242,234,.14);
}
[data-theme="dark"] .team-card:hover,
[data-theme="dark"] .team-card:focus-within {
  background: #f5f2ea;
  color: #111111;
  border-color: rgba(17,17,17,.14);
}
.team-card:hover .team-copy p,
.team-card:hover .team-copy h3,
.team-card:hover .eyebrow,
.team-card:focus-within .team-copy p,
.team-card:focus-within .team-copy h3,
.team-card:focus-within .eyebrow {
  color: inherit;
}
.team-card:hover .team-media img,
.team-card:focus-within .team-media img {
  transform: scale(1.03);
}
.feature-card {
  display: grid;
  min-height: 100%;
  transition: transform .3s ease, border-color .3s ease, background-color .3s ease, color .3s ease;
}
.feature-card:hover { transform: translateY(-6px); }
.page-card {
  min-height: 100%;
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  border-color: color-mix(in srgb, var(--text) 10%, transparent);
  color: var(--text);
  box-shadow: none;
}
.page-card h3,
.page-card p,
.page-card .eyebrow {
  color: inherit;
  transition: color .3s ease;
}
[data-theme="dark"] .page-card {
  background: rgba(8, 8, 8, 0.76);
  border-color: rgba(245, 242, 234, 0.12);
  color: #f5f2ea;
}
.page-card:hover,
.page-card:focus-visible {
  background: #ffffff;
  color: #111111;
  border-color: rgba(17,17,17,.14);
  box-shadow: var(--shadow);
}
[data-theme="dark"] .page-card:hover,
[data-theme="dark"] .page-card:focus-visible {
  background: #ffffff;
  color: #111111;
  border-color: rgba(17,17,17,.14);
}
.page-card:hover h3,
.page-card:hover p,
.page-card:hover .eyebrow,
.page-card:focus-visible h3,
.page-card:focus-visible p,
.page-card:focus-visible .eyebrow,
[data-theme="dark"] .page-card:hover h3,
[data-theme="dark"] .page-card:hover p,
[data-theme="dark"] .page-card:hover .eyebrow,
[data-theme="dark"] .page-card:focus-visible h3,
[data-theme="dark"] .page-card:focus-visible p,
[data-theme="dark"] .page-card:focus-visible .eyebrow {
  color: #111111;
}
.treatment-card {
  min-height: 100%;
  background: #101010;
  border-color: rgba(255,255,255,.14);
  color: #f5f2ea;
  transition: transform .3s ease, background-color .3s ease, color .3s ease, border-color .3s ease;
}
.section-dark .treatment-card,
[data-theme="dark"] .section-dark .treatment-card {
  background: #101010;
  border-color: rgba(255,255,255,.14);
  color: #f5f2ea;
}
.treatment-card h3 {
  color: inherit;
  transition: color .3s ease;
}
.treatment-card .eyebrow,
.treatment-card .feature-copy p:last-child {
  color: color-mix(in srgb, currentColor 74%, transparent);
  transition: color .3s ease;
}
.treatment-card:hover,
.treatment-card:focus-visible {
  background: #f5f2ea;
  color: #111111;
  border-color: rgba(17,17,17,.14);
}
.section-dark .treatment-card:hover,
.section-dark .treatment-card:focus-visible,
[data-theme="dark"] .section-dark .treatment-card:hover,
[data-theme="dark"] .section-dark .treatment-card:focus-visible {
  background: #f5f2ea;
  color: #111111;
  border-color: rgba(17,17,17,.14);
}
.treatment-card:hover .eyebrow,
.treatment-card:hover .feature-copy p:last-child,
.treatment-card:focus-visible .eyebrow,
.treatment-card:focus-visible .feature-copy p:last-child {
  color: color-mix(in srgb, currentColor 74%, transparent);
}
.section-dark .treatment-card:hover .eyebrow,
.section-dark .treatment-card:hover .feature-copy p:last-child,
.section-dark .treatment-card:hover h3,
.section-dark .treatment-card:focus-visible .eyebrow,
.section-dark .treatment-card:focus-visible .feature-copy p:last-child,
.section-dark .treatment-card:focus-visible h3,
[data-theme="dark"] .section-dark .treatment-card:hover .eyebrow,
[data-theme="dark"] .section-dark .treatment-card:hover .feature-copy p:last-child,
[data-theme="dark"] .section-dark .treatment-card:hover h3,
[data-theme="dark"] .section-dark .treatment-card:focus-visible .eyebrow,
[data-theme="dark"] .section-dark .treatment-card:focus-visible .feature-copy p:last-child,
[data-theme="dark"] .section-dark .treatment-card:focus-visible h3 {
  color: #111111;
}
.feature-media { aspect-ratio: 16 / 10; overflow: hidden; border-radius: 28px; }
.feature-media-tall { aspect-ratio: 4 / 3; }
.feature-media-contain {
  display: grid;
  place-items: center;
  padding: 18px;
  background: transparent;
}
.page-hero-media,
.media-stack,
.team-media {
  overflow: hidden;
  border-radius: 28px;
}
.feature-media img, .page-hero-media img, .media-stack img, .team-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.feature-media-contain img,
.page-hero-media-contain img {
  object-fit: contain;
}
.page-hero-grid {
  align-items: center;
}
.product-hero {
  padding-top: 44px;
  padding-bottom: 54px;
}
.shop-detail-grid {
  grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
  align-items: start;
  gap: 42px;
}
.shop-detail-grid .page-hero-media {
  width: min(100%, 360px);
  justify-self: start;
  align-self: start;
  background: #ffffff;
  border: 0;
  box-shadow: none;
}
.shop-detail-grid .page-hero-media img {
  min-height: 0;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  max-height: 430px;
  padding: 0;
  border-radius: 28px;
  background: #ffffff;
  transform: scale(1.28);
}
.shop-detail-grid .page-hero-media-contain img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 12px;
  border-radius: 28px;
  background: #ffffff;
  transform: none;
}
.shop-detail-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  max-width: 760px;
  min-width: 0;
}
.product-action-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.product-action-price {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--text) 28%, transparent);
  background: transparent;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text);
  line-height: 1;
}
.product-add-button {
  width: auto;
  min-height: 42px;
  padding: 0 18px;
}
.shop-detail-copy > * {
  min-width: 0;
}
.shop-detail-copy .eyebrow,
.shop-detail-copy h1,
.shop-detail-copy .lead {
  margin: 0;
}
.product-description {
  display: grid;
  gap: 14px;
  margin: 0;
}
.product-description p {
  margin: 0;
  color: color-mix(in srgb, var(--text) 78%, transparent);
  line-height: 1.72;
}
.product-highlights-panel {
  margin: 0;
  min-height: 0;
  height: auto;
  align-self: start;
}
.product-highlights-panel h2 {
  margin-bottom: 14px;
}
.auth-grid,
.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.auth-grid + .container {
  margin-top: 28px;
}
.auth-panel h2,
.account-status-panel h2 {
  margin-bottom: 12px;
}
.account-form {
  display: grid;
  gap: 14px;
  align-content: start;
}
.auth-panel {
  display: grid;
  align-content: start;
  gap: 14px;
}
.auth-panel .contact-field {
  margin: 0;
}
.account-status-panel .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.account-status-panel .button-row .button {
  width: auto;
}
.cart-items {
  display: grid;
  gap: 16px;
}
.cart-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
}
.cart-item-thumb {
  width: 92px;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
  display: grid;
  place-items: center;
}
.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cart-item-copy {
  display: grid;
  gap: 10px;
  align-content: start;
}
.cart-item-copy h3,
.cart-item-copy p {
  margin: 0;
}
.cart-item-meta {
  color: var(--muted);
  font-size: 0.96rem;
}
.cart-item-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
}
.qty-control button,
.cart-remove {
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font: inherit;
}
.qty-control button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}
.cart-remove {
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.cart-empty {
  display: grid;
  gap: 16px;
}
.cart-empty[hidden] {
  display: none !important;
}
.cart-summary-panel {
  align-content: start;
  gap: 16px;
}
.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.cart-summary-note {
  margin: 6px 0 0;
  color: var(--muted);
}
.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}
.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.checkout-form {
  display: grid;
  gap: 18px;
}
.checkout-payment {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.checkout-success {
  display: grid;
  gap: 12px;
}
.checkout-success[hidden] {
  display: none !important;
}
.checkout-items .cart-item {
  grid-template-columns: 72px minmax(0, 1fr);
}
.checkout-items .cart-item-thumb {
  width: 72px;
}
.about-clean-hero {
  padding-bottom: 6px;
}
.about-clean-hero-grid,
.about-clean-intro-grid,
.about-clean-story-grid,
.about-clean-experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 44px;
  align-items: center;
  width: 100%;
}
.about-clean-hero-copy {
  max-width: 48rem;
}
.about-clean-disclosure-section {
  padding-top: 10px;
}
.about-clean-disclosure-grid {
  display: grid;
  gap: 22px;
}
.about-clean-disclosure {
  border: 1px solid var(--line);
  border-radius: 32px;
  background: color-mix(in srgb, var(--paper) 95%, transparent);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.about-clean-disclosure summary {
  list-style: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px 32px;
  cursor: pointer;
}
.about-clean-disclosure summary::-webkit-details-marker {
  display: none;
}
.about-clean-disclosure-summary h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  letter-spacing: -0.034em;
  line-height: 0.98;
  text-wrap: balance;
}
.about-clean-disclosure-summary p:last-child {
  margin: 0;
  max-width: 56rem;
  color: color-mix(in srgb, var(--text) 74%, transparent);
  line-height: 1.75;
}
.about-clean-disclosure-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.about-clean-disclosure-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 1rem;
  line-height: 1;
  transition: transform .28s ease;
}
.about-clean-disclosure[open] .about-clean-disclosure-toggle-icon {
  transform: rotate(45deg);
}
.about-clean-disclosure-body {
  display: grid;
  gap: 18px;
  padding: 0 32px 30px;
}
.about-clean-disclosure-body .button {
  width: auto;
  min-height: 42px;
  padding: 0 18px;
  justify-self: center;
}
.about-clean-disclosure-body p {
  margin: 0;
  color: color-mix(in srgb, var(--text) 78%, transparent);
  line-height: 1.8;
}
.about-clean-disclosure-note {
  display: grid;
  gap: 12px;
  margin-top: 4px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
}
.about-clean-disclosure-note .eyebrow {
  margin: 0;
}
.about-clean-disclosure-note p:last-child,
.about-clean-disclosure-note .detail-list {
  margin: 0;
}
.about-clean-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.about-clean-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  font-size: 0.94rem;
  color: var(--text);
}
.about-clean-note,
.about-clean-sidebar,
.about-clean-cta {
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 28px;
  background: color-mix(in srgb, var(--paper) 95%, transparent);
  box-shadow: var(--shadow);
}
.about-clean-note {
  align-self: end;
}
.about-clean-note p:last-child,
.about-clean-story p,
.about-clean-editorial p,
.about-clean-copy p {
  margin-top: 0;
  color: color-mix(in srgb, var(--text) 76%, transparent);
}
.about-clean-intro-section {
  padding-top: 20px;
}
.about-clean-image {
  width: 100%;
  max-width: none;
  justify-self: stretch;
  align-self: stretch;
}
.about-clean-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  max-height: 760px;
  object-fit: cover;
  object-position: center top;
  border-radius: inherit;
}
.about-clean-copy {
  display: grid;
  gap: 18px;
  max-width: none;
  align-self: center;
  width: 100%;
  justify-self: stretch;
}
.about-clean-copy-block {
  display: grid;
  gap: 12px;
}
.about-clean-copy-accent {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.about-clean-copy h2,
.about-clean-story h2,
.about-clean-editorial h2,
.about-clean-cta h2 {
  margin: 0 0 16px;
  font-size: clamp(1.7rem, 3vw, 3rem);
  letter-spacing: -0.024em;
  line-height: 1.02;
}
.about-clean-story-section,
.about-clean-experience-section {
  padding-top: 16px;
}
.about-clean-story,
.about-clean-editorial {
  display: grid;
  gap: 12px;
  align-content: start;
  max-width: none;
  justify-self: start;
  align-self: center;
  width: 100%;
}
.about-clean-intro-section .container,
.about-clean-experience-section .container {
  width: min(1480px, calc(100% - 28px));
}
.about-clean-intro-grid .page-hero-media,
.about-clean-experience-grid .page-hero-media,
.about-clean-intro-grid .about-clean-image,
.about-clean-experience-grid .about-clean-image {
  width: 100%;
  max-width: none;
  justify-self: stretch;
  align-self: stretch;
}
.about-clean-sidebar .detail-list,
.about-clean-cta .detail-list {
  margin: 6px 0 0;
}
.about-clean-cta {
  background: #101010;
  border-color: rgba(255,255,255,.14);
  color: #f5f2ea;
  display: grid;
  gap: 12px;
  align-content: start;
}
.about-clean-cta .eyebrow,
.about-clean-cta p,
.about-clean-cta .detail-list,
.about-clean-cta .detail-list li {
  color: inherit;
}
.about-clean-cta .eyebrow {
  color: rgba(245,242,234,.72);
}
[data-theme="dark"] .about-clean-note,
[data-theme="dark"] .about-clean-sidebar,
[data-theme="dark"] .about-clean-disclosure,
[data-theme="dark"] .about-clean-disclosure-note {
  background: rgba(8, 8, 8, 0.96);
}
.faq-section {
  padding-top: 20px;
}
.faq-page-section {
  min-height: calc(100vh - 180px);
}
.faq-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: start;
}
.faq-intro {
  display: grid;
  gap: 16px;
  align-content: start;
  max-width: 30rem;
  position: sticky;
  top: 112px;
}
.faq-intro h1,
.faq-intro h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.4vw, 4.9rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-wrap: balance;
}
.faq-intro p:not(.eyebrow) {
  margin: 0;
  max-width: 24rem;
  color: color-mix(in srgb, var(--text) 72%, transparent);
  line-height: 1.75;
}
.faq-contact-button {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}
[data-theme="dark"] .faq-contact-button {
  background: #ffffff;
  border-color: #ffffff;
  color: #111111;
}
.faq-mobile-cta {
  display: none;
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: color-mix(in srgb, var(--paper) 95%, transparent);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 24px 26px;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-question-index {
  font-size: 1rem;
  font-weight: 300;
  color: color-mix(in srgb, var(--text) 72%, transparent);
}
.faq-question-text {
  font-size: clamp(1.02rem, 1.45vw, 1.42rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.22;
}
.faq-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid color-mix(in srgb, var(--text) 16%, transparent);
  border-radius: 999px;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1;
  transition: transform .28s ease, background-color .28s ease, border-color .28s ease;
}
.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
  background: color-mix(in srgb, var(--text) 8%, transparent);
}
.faq-answer {
  padding: 0 26px 24px 58px;
}
.faq-answer p {
  margin: 0;
  color: color-mix(in srgb, var(--text) 76%, transparent);
  line-height: 1.8;
}
.faq-answer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
[data-theme="dark"] .faq-item {
  background: rgba(8, 8, 8, 0.96);
}
.page-hero-media {
  width: min(100%, 520px);
  justify-self: center;
  align-self: center;
  border-radius: 28px;
}
.page-hero-media-contain {
  display: grid;
  place-items: center;
  background: transparent;
}
.page-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
}
.page-hero-media-contain img {
  aspect-ratio: 4 / 3;
}
.feature-copy { padding: 22px; }
.feature-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
}
.feature-copy .eyebrow {
  margin-bottom: 12px;
}
.page-card .feature-media {
  aspect-ratio: 4 / 3;
}
.page-card .feature-media img {
  transition: transform .45s ease;
}
.page-card:hover .feature-media img,
.page-card:focus-visible .feature-media img {
  transform: scale(1.03);
}
.page-card .feature-copy {
  min-height: 154px;
  padding: 16px 16px 18px;
}
.shop-product-card {
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
  box-shadow: none;
}
.shop-product-card .feature-media {
  aspect-ratio: 4 / 3.25;
  padding: 0;
  background: #ffffff;
}
.shop-product-card .feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #ffffff;
  border-radius: 28px;
  transform: scale(1.14);
  transition: transform .45s ease;
}
.shop-product-card:hover .feature-media img,
.shop-product-card:focus-visible .feature-media img {
  transform: scale(1.18);
}
.shop-product-card .feature-media-contain {
  padding: 16px;
}
.shop-product-card .feature-media-contain img {
  object-fit: contain;
  transform: scale(1);
}
.shop-product-card:hover .feature-media-contain img,
.shop-product-card:focus-visible .feature-media-contain img {
  transform: scale(1.03);
}
.shop-product-card .feature-copy {
  min-height: 0;
  padding: 14px 14px 18px;
}
.shop-product-card .feature-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 1.8vw, 1.9rem);
}
.shop-product-card .feature-copy p:last-child {
  margin: 0;
  line-height: 1.65;
}
.treatment-card .feature-media {
  aspect-ratio: 16 / 10;
}
.treatment-card .feature-media img {
  transition: transform .45s ease;
}
.treatment-card:hover .feature-media img,
.treatment-card:focus-visible .feature-media img {
  transform: scale(1.03);
}
.treatment-card .feature-copy {
  padding: 18px 18px 20px;
  min-height: 194px;
}
.treatment-card .feature-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(1.9rem, 2.5vw, 2.7rem);
  letter-spacing: -0.018em;
}
.treatment-card .feature-copy p:last-child {
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.7;
}
.split-grid {
  align-items: stretch;
}
.split-section .media-stack {
  width: min(100%, 620px);
  justify-self: center;
  align-self: center;
}
[data-tilt-card] {
  transform-style: preserve-3d;
  transform-origin: center center;
  will-change: transform;
  transition: transform .22s ease-out, box-shadow .22s ease-out;
}
[data-tilt-card] img {
  transform: translateZ(0);
  transform-origin: center center;
  will-change: transform;
  transition: transform .22s ease-out;
}
[data-tilt-card].is-tilting {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}
[data-tilt-card].is-tilting img {
  transform: translate3d(0, 0, 22px) scale(1.02);
}
.face-icons-section {
  padding: 10px 0 20px;
  background: #000000;
  overflow: hidden;
}
.face-icons-container {
  width: 100%;
  overflow: hidden;
}
.face-icons-marquee {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  min-width: 100%;
  animation: faceIconsMarquee 54s linear infinite;
  will-change: transform;
}
.face-icons-track {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 38px);
}
.face-icon-item {
  flex: 0 0 auto;
  width: clamp(54px, 6vw, 88px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  opacity: 0.88;
  transition: transform .38s cubic-bezier(.22, 1, .36, 1), opacity .3s ease;
}
.face-icon-item:hover {
  opacity: 1;
  transform: scale(1.09);
}
.face-icon-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}
.face-icons-marquee:hover {
  animation-play-state: paused;
}
@keyframes faceIconsMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - 16px), 0, 0);
  }
}
.section-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-copy h2 {
  max-width: 12ch;
}
.section-copy p {
  max-width: 64ch;
}
.detail-panel {
  display: grid;
  align-content: start;
  gap: 0;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  box-shadow: var(--shadow);
}
.product-config {
  display: grid;
  gap: 12px;
  width: min(100%, 420px);
  margin: 6px 0 18px;
}
.product-field {
  display: grid;
  gap: 8px;
}
.product-field span {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.product-field select,
.product-field input {
  width: 100%;
  min-height: 52px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  color: var(--text);
  padding: 0 16px;
  font: inherit;
  outline: none;
}
.product-field select:focus,
.product-field input:focus {
  border-color: color-mix(in srgb, var(--text) 28%, transparent);
}
[data-theme="dark"] .product-field select,
[data-theme="dark"] .product-field input {
  background: rgba(255,255,255,.05);
}
[data-theme="dark"] .detail-panel {
  background: rgba(8, 8, 8, 0.96);
}
.detail-panel h1,
.detail-panel h2,
.detail-panel h3 {
  margin-top: 0;
}
.detail-panel p:last-child,
.detail-panel ul:last-child {
  margin-bottom: 0;
}
.team-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.team-media img {
  transition: transform .45s ease;
}
.team-copy {
  display: grid;
  grid-template-rows: minmax(2.6em, auto) minmax(2.4em, auto) 1fr;
  align-content: start;
  gap: 10px;
  padding: 22px;
}
.team-copy .eyebrow {
  margin: 0;
  display: flex;
  align-items: flex-end;
  line-height: 1.35;
}
.team-copy h3 {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: -0.018em;
  line-height: 1.08;
  display: flex;
  align-items: flex-start;
}
.team-copy p:last-child {
  margin: 0;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}
@media (hover: hover) and (min-width: 721px) {
  .team-card {
    align-content: start;
    grid-template-rows: auto 1fr;
  }
  .team-copy {
    align-content: start;
    height: auto;
    min-height: auto;
  }
  .team-copy h3 {
    font-size: 1.6rem;
    text-align: left;
  }
}
.feature-copy h3 { margin: 0 0 10px; font-size: 1.55rem; letter-spacing: -0.018em; }
.page-card .feature-copy h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  letter-spacing: -0.012em;
}
.page-card .feature-copy p:last-child {
  font-size: 0.9rem;
  line-height: 1.62;
}
.feature-copy p:last-child { margin-bottom: 0; color: var(--muted); line-height: 1.7; }
.page-hero-media, .media-stack { box-shadow: var(--shadow); }
.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.process-card { padding: 24px; }
.process-card span { display: block; color: var(--muted); margin-bottom: 16px; }
.process-card h3 { margin: 0 0 10px; font-size: 1.4rem; }
.process-card p { margin: 0; color: var(--muted); line-height: 1.7; }
.quotes-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.testimonial-actions {
  margin: -4px 0 24px;
}
.quote-card { padding: 28px; }
.quote-card p { margin: 0 0 18px; line-height: 1.8; }
.quote-stars {
  margin: 0 0 14px;
  color: #c8a44d;
  letter-spacing: 0.18em;
  font-size: 1rem;
}
.quote-card span { color: var(--muted); font-size: 0.95rem; }
.gallery-section {
  overflow: hidden;
}
.testimonial-actions {
  margin: 24px 0 0;
  display: flex;
  justify-content: center;
}
.gallery-heading {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.gallery-heading .section-heading {
  margin-bottom: 0;
}
.gallery-controls {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.gallery-nav-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  box-shadow: var(--shadow);
}
.gallery-expand-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .25s ease, background-color .25s ease, color .25s ease;
}
.gallery-expand-button:hover {
  transform: translateY(-2px);
}
.gallery-expand-button.is-active {
  background: var(--text);
  color: var(--paper);
  transform: scale(0.96);
}
.gallery-expand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}
.gallery-expand-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  display: block;
}
.gallery-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform .25s ease, background-color .25s ease, color .25s ease;
}
.gallery-arrow:hover {
  transform: translateY(-2px);
}
.gallery-arrow.is-active {
  background: var(--text);
  color: var(--paper);
  transform: scale(0.96);
}
.gallery-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 38vw);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}
.gallery-rail::-webkit-scrollbar {
  display: none;
}
.gallery-card {
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.gallery-card:hover {
  transform: scale(1.02);
}
.gallery-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: transparent;
}
.gallery-media-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.gallery-card:hover .gallery-media-element {
  transform: scale(1.04);
}
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.gallery-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.66);
  backdrop-filter: blur(10px);
}
.gallery-modal-panel {
  position: relative;
  width: min(1180px, calc(100vw - 28px));
  max-height: min(88vh, 980px);
  margin: 6vh auto;
  padding: 24px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  box-shadow: var(--shadow);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery-modal-panel::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
.gallery-modal-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}
.gallery-modal-top h2 {
  margin: 6px 0 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.03em;
}
.gallery-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  color: var(--text);
  font: inherit;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.gallery-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.gallery-modal-card,
.gallery-modal-media {
  border-radius: 24px;
}
.gallery-modal-media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: color-mix(in srgb, var(--text) 6%, transparent);
  border: 1px solid var(--line);
}
.gallery-modal-media-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.location-section {
  overflow: hidden;
}
.location-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}
.location-copy,
.location-map {
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}
.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}
.location-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 0.98;
}
.location-copy > p:not(.eyebrow) {
  margin: 0 0 20px;
  max-width: 34rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--text) 74%, transparent);
}
.location-meta {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}
.location-meta p {
  margin: 0;
  line-height: 1.7;
  color: color-mix(in srgb, var(--text) 78%, transparent);
}
.location-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.location-map {
  min-height: 520px;
}
.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: grayscale(1) contrast(1.02) saturate(0.05);
}
[data-theme="dark"] .location-map iframe {
  filter: grayscale(1) invert(0.92) contrast(1.04) saturate(0.1);
}
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--paper) 96%, transparent), color-mix(in srgb, var(--accent) 74%, transparent));
  box-shadow: var(--shadow);
}
[data-theme="dark"] .cta-panel {
  background: linear-gradient(135deg, rgba(14,14,14,.98), rgba(0,0,0,1));
}
.site-footer {
  margin-top: 28px;
  min-height: 78svh;
  padding: clamp(56px, 8vw, 104px) 0 28px;
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: #111111;
}
[data-theme="dark"] .site-footer {
  background: #000000;
  color: #f5f2ea;
}
.footer-shell {
  min-height: calc(78svh - 28px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 34px;
}
.footer-brand-block {
  display: grid;
  gap: 14px;
  max-width: 44rem;
}
.footer-logo {
  width: min(100%, 760px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
}
[data-theme="dark"] .footer-logo {
  filter: none;
}
.footer-intro {
  max-width: 34rem;
}
.footer-grid {
  grid-template-columns: 1.35fr .8fr .8fr;
  align-items: start;
  gap: 34px;
}
.footer-grid h2 { margin: 0 0 16px; font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -0.03em; }
.footer-contact-col,
.footer-links-col {
  display: grid;
  align-content: start;
  gap: 10px;
}
.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  line-height: 1.5;
  color: inherit;
  transition: opacity .25s ease, transform .25s ease;
}
.footer-contact-link:hover,
.footer-links-col a:hover {
  opacity: .8;
  transform: translateX(4px);
}
.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.footer-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.footer-address,
.footer-hours,
.footer-links-col p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: color-mix(in srgb, currentColor 76%, transparent);
}
.footer-links-col a {
  color: inherit;
  transition: opacity .25s ease, transform .25s ease;
}
.footer-disclaimer {
  position: relative;
  padding-top: 18px;
  padding-right: 74px;
  border-top: 1px solid color-mix(in srgb, currentColor 10%, transparent);
}
.footer-disclaimer p {
  margin: 0;
  max-width: 58rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: color-mix(in srgb, currentColor 68%, transparent);
}
.footer-back-top {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: transform .3s ease, background-color .3s ease, border-color .3s ease;
}
.footer-back-top:hover {
  transform: translateY(-2px);
}
.footer-back-top svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
[data-theme="dark"] .footer-back-top {
  background: rgba(8, 8, 8, 0.96);
}
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.contact-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.contact-modal-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(88svh, 920px);
  overflow: auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: color-mix(in srgb, var(--paper) 96%, transparent);
  box-shadow: var(--shadow);
}
[data-theme="dark"] .contact-modal-panel {
  background: rgba(10, 10, 10, 0.98);
}
.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text) 8%, transparent);
  color: var(--text);
  font: inherit;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.contact-modal-copy {
  margin: 0 0 20px;
  max-width: 36rem;
  line-height: 1.75;
  color: var(--muted);
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact-field {
  display: grid;
  gap: 8px;
}
.contact-field span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--text) 78%, transparent);
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  color: var(--text);
  font: inherit;
  padding: 14px 16px;
  resize: vertical;
}
[data-theme="dark"] .contact-field input,
[data-theme="dark"] .contact-field textarea {
  background: rgba(255,255,255,.04);
}
.contact-field-full {
  grid-column: 1 / -1;
}
.contact-form-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.contact-form-success {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: color-mix(in srgb, #0f8a46 82%, var(--text));
  font-size: 0.95rem;
  line-height: 1.6;
}
[data-theme="dark"] .contact-form-success {
  color: color-mix(in srgb, #7dffb1 76%, #ffffff);
}
.contact-card {
  display: grid;
  gap: 24px;
}
.contact-card-details {
  display: grid;
  gap: 12px;
}
.contact-card-details p {
  margin: 0;
}
.muted { color: var(--muted); line-height: 1.8; }
.detail-list { padding-left: 18px; line-height: 1.9; color: color-mix(in srgb, var(--text) 72%, transparent); }
.contact-card { padding: 28px; }
.contact-card p { line-height: 1.8; }
.legal-prose { max-width: 820px; }
.compact { padding-bottom: 10px; }
.text-link {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-morph {
  opacity: 1;
  scale: 1;
  filter: none;
}
@media (max-width: 980px) {
  .hero-grid, .page-hero-grid, .split-grid, .prose-grid, .footer-grid, .feature-grid, .quotes-grid, .process-grid, .team-grid {
    grid-template-columns: 1fr;
  }
  .about-clean-hero-grid,
  .about-clean-intro-grid,
  .about-clean-story-grid,
  .about-clean-experience-grid {
    grid-template-columns: 1fr;
  }
  .about-clean-hero-copy {
    margin-bottom: 24px;
  }
  .about-clean-disclosure summary {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .about-clean-disclosure-body {
    padding: 0 24px 24px;
  }
  .about-clean-disclosure-toggle {
    justify-self: start;
  }
  .about-clean-note,
  .about-clean-sidebar,
  .about-clean-cta {
    padding: 24px;
  }
  .faq-shell {
    grid-template-columns: 1fr;
  }
  .faq-intro {
    position: static;
    max-width: 40rem;
  }
  .site-footer {
    min-height: auto;
  }
  .footer-shell {
    min-height: auto;
    gap: 28px;
  }
  .footer-logo {
    width: min(100%, 620px);
  }
  .gallery-heading {
    justify-content: flex-start;
  }
  .location-shell {
    grid-template-columns: 1fr;
  }
  .location-map,
  .location-map iframe {
    min-height: 420px;
  }
  .gallery-rail {
    grid-auto-columns: minmax(300px, 70vw);
  }
  .nav-bar {
    min-height: 76px;
    padding: 0 16px;
  }
  .stat-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stat-row::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: 50%;
    height: 1px;
    background: color-mix(in srgb, var(--text) 10%, transparent);
    transform: translateY(-0.5px);
    pointer-events: none;
  }
  .stat-card:nth-child(2)::after {
    display: none;
  }
  .cta-panel { flex-direction: column; align-items: flex-start; }
  .treatments-shell {
    width: min(100% - 24px, 1480px);
  }
  .treatments-grid {
    grid-template-columns: 1fr;
  }
  .hero-home {
    min-height: auto;
    padding-top: 20px;
  }
  .hero-home-shell {
    gap: 18px;
  }
  .hero-grid-home {
    min-height: auto;
    gap: 24px;
    margin-top: -10px;
  }
  .hero-title-top {
    min-height: calc(100vh - 140px);
  }
  .hero-title h1 {
    font-size: clamp(4.9rem, 25vw, 13.5rem);
    letter-spacing: -0.08em;
  }
  .hero-subtitle {
    font-size: clamp(1.05rem, 2.6vw, 1.5rem);
    letter-spacing: 0.16em;
  }
  .hero-kicker {
    font-size: 0.66rem;
    margin-bottom: 20px;
  }
  .menu-overlay {
    padding: 100px 24px 28px;
  }
  .menu-overlay-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "meta"
      "panel"
      "links";
    gap: 26px;
  }
  .menu-utility-actions {
    margin-top: 18px;
  }
  .menu-meta-links-bottom {
    margin-top: 4px;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .menu-link {
    font-size: clamp(2rem, 8vw, 4.1rem);
  }
}
@media (max-width: 720px) {
  .site-header {
    position: sticky;
    top: 0;
    padding-top: 0;
  }
  .scroll-navigator {
    display: none;
  }
  .site-header .container {
    width: min(100% - 16px, 1480px);
  }
  .nav-frame {
    width: 100%;
    margin: 0 auto;
  }
  .brand {
    font-size: 1.25rem;
  }
  .brand-logo {
    width: 42px;
  }
  .container { width: min(100% - 24px, 1480px); }
  .nav-bar {
    min-height: 56px;
    gap: 8px;
    padding: 0 10px;
    border-radius: 999px;
    width: 100%;
    margin: 0 auto;
  }
  .hero {
    padding-top: 28px;
    padding-bottom: 24px;
  }
  .button {
    width: 100%;
  }
  .nav-actions {
    margin-left: auto;
    width: auto;
    gap: 8px;
  }
  .nav-actions .button {
    width: auto;
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.9rem;
    line-height: 1;
  }
  .cart-button {
    width: 38px;
    height: 38px;
  }
  .cart-button svg {
    width: 18px;
    height: 18px;
  }
  .menu-toggle {
    width: 34px;
    height: 34px;
  }
  .menu-toggle-lines {
    width: 18px;
    height: 14px;
  }
  .menu-line-top { top: 2px; }
  .menu-line-bottom { top: 10px; }
  .menu-toggle.is-open .menu-line-top,
  .menu-toggle.is-open .menu-line-bottom {
    top: 6px;
  }
  .menu-overlay {
    padding: 94px 20px 22px;
  }
  .menu-overlay-inner {
    width: min(1320px, 100%);
    grid-template-columns: 1fr;
    grid-template-areas:
      "panel"
      "links"
      "meta";
    gap: 18px;
    align-items: start;
  }
  .menu-overlay-meta {
    padding-top: 0;
    min-height: auto;
    gap: 14px;
  }
  .menu-overlay-meta p {
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.6;
  }
  .menu-utility-actions {
    gap: 10px;
    margin-top: 0;
  }
  .menu-account-button {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
  }
  .menu-meta-links {
    gap: 10px;
  }
  .menu-meta-links-bottom {
    align-self: start;
    margin-top: 2px;
  }
  .menu-meta-link {
    width: 100%;
    justify-content: flex-start;
    padding: 10px 13px;
    font-size: 0.9rem;
  }
  .about-clean-copy-accent {
    padding-top: 0;
    border-top: 0;
  }
  .about-clean-experience-grid {
    display: flex;
    flex-direction: column;
  }
  .about-clean-team-image {
    order: -1;
    margin-bottom: 16px;
  }
  .about-clean-disclosure-summary h2 {
    font-size: clamp(1.8rem, 9vw, 2.7rem);
  }
  .about-clean-disclosure-summary p:last-child,
  .about-clean-disclosure-body p {
    line-height: 1.72;
  }
  .faq-section {
    padding-top: 4px;
  }
  .faq-shell {
    gap: 20px;
  }
  .faq-intro {
    gap: 12px;
  }
  .faq-intro .faq-contact-button {
    display: none;
  }
  .faq-intro h1,
  .faq-intro h2 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
    line-height: 0.98;
  }
  .faq-item {
    border-radius: 22px;
  }
  .faq-item summary {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    padding: 18px 18px;
  }
  .faq-question-index {
    font-size: 0.9rem;
  }
  .faq-question-text {
    font-size: 1rem;
    line-height: 1.28;
  }
  .faq-toggle {
    width: 24px;
    height: 24px;
    font-size: 0.98rem;
  }
  .faq-answer {
    padding: 0 18px 18px 42px;
  }
  .faq-answer p {
    font-size: 0.96rem;
    line-height: 1.72;
  }
  .faq-mobile-cta {
    display: flex;
    justify-content: center;
    margin-top: -2px;
  }
  .faq-mobile-cta .faq-contact-button {
    width: 100%;
    justify-content: center;
  }
  .gallery-expand-button {
    display: inline-flex;
  }
  .theme-toggle-track {
    width: 56px;
    height: 30px;
    padding: 0 4px;
  }
  .theme-toggle-thumb {
    width: 22px;
    height: 22px;
    top: 3px;
    left: 4px;
  }
  [data-theme="dark"] .theme-toggle-thumb {
    transform: translateX(26px);
  }
  .theme-icon {
    width: 18px;
    height: 18px;
    font-size: 0.82rem;
  }
  .menu-link {
    font-size: clamp(1.35rem, 6.4vw, 2.1rem);
    padding: 2px 0;
    min-height: 1em;
  }
  .gallery-controls {
    margin-top: 18px;
  }
  .face-icons-section {
    padding: 4px 0 14px;
  }
  .face-icons-marquee {
    gap: 18px;
    animation-duration: 42s;
  }
  .face-icon-item {
    width: clamp(34px, 10vw, 48px);
  }
  .shop-detail-grid,
  .auth-grid,
  .cart-layout,
  .checkout-layout,
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .account-form {
    gap: 12px;
  }
  .account-status-panel .button-row .button {
    width: 100%;
  }
  .shop-detail-grid {
    gap: 22px;
  }
  .shop-detail-grid .page-hero-media {
    width: min(100%, 300px);
    justify-self: center;
    min-height: 0;
  }
  .shop-detail-grid .page-hero-media img {
    min-height: 0;
    max-height: 320px;
    padding: 0;
    transform: scale(1.22);
  }
  .shop-detail-grid .page-hero-media-contain img {
    padding: 8px;
    transform: none;
  }
  .product-action-row {
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
  .product-action-price {
    font-size: 1.02rem;
    min-height: 40px;
    padding: 0 14px;
    flex: 0 0 auto;
  }
  .product-add-button {
    min-height: 40px;
    padding: 0 18px;
    flex: 0 1 220px;
    max-width: 220px;
  }
  .shop-product-card .feature-media {
    padding: 0;
  }
  .shop-product-card .feature-copy {
    padding: 12px 12px 16px;
  }
  .cart-item {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }
  .cart-item-thumb {
    width: 72px;
  }
  .account-status-panel .button-row {
    flex-direction: column;
  }
  .account-status-panel .button-row .button,
  .cart-summary-panel .button,
  .checkout-form .button {
    width: 100%;
  }
  .gallery-nav-pill {
    gap: 8px;
    padding: 6px;
  }
  .gallery-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .gallery-expand-button {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }
  .gallery-rail {
    grid-auto-columns: 82vw;
    gap: 14px;
  }
  .gallery-modal-panel {
    width: min(100vw - 20px, 100%);
    max-height: calc(100vh - 96px);
    margin: 74px auto 22px;
    padding: 18px 16px 16px;
    border-radius: 26px;
  }
  .gallery-modal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .gallery-modal-card,
  .gallery-modal-media {
    border-radius: 18px;
  }
  .gallery-modal-close {
    width: 40px;
    height: 40px;
  }
  .location-copy,
  .location-map {
    border-radius: 22px;
  }
  .location-copy {
    padding: 22px 18px;
  }
  .location-actions {
    gap: 10px;
  }
  .location-actions .button {
    width: 100%;
  }
  .location-map,
  .location-map iframe {
    min-height: 320px;
  }
  .gallery-card {
    border-radius: 24px;
  }
  .section-heading h2,
  .page-hero-copy h1,
  .hero-page .page-hero-copy h1,
  .about-clean-copy h2,
  .about-clean-story h2,
  .about-clean-editorial h2,
  .about-clean-cta h2,
  .location-copy h2,
  .footer-grid h2 {
    line-height: 1.12;
    letter-spacing: -0.02em;
    text-wrap: balance;
  }
  .feature-copy h3,
  .team-copy h3,
  .process-card h3 {
    line-height: 1.14;
    letter-spacing: -0.014em;
    text-wrap: balance;
  }
  .welcome-copy h2 {
    max-width: none;
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }
  .lead,
  .section-copy p,
  .page-hero-copy p,
  .about-clean-copy p,
  .about-clean-story p,
  .about-clean-editorial p,
  .about-clean-cta p,
  .feature-copy p:last-child,
  .team-copy p:last-child,
  .contact-card p,
  .quote-card p,
  .legal-prose p {
    line-height: 1.72;
  }
  .hero-title h1 {
    font-size: clamp(3rem, 20vw, 5.2rem);
    letter-spacing: -0.04em;
    line-height: 0.88;
  }
  .hero-home {
    min-height: auto;
    padding-top: 18px;
  }
  .hero-title-top {
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 8px;
  }
  .hero-kicker {
    font-size: 0.62rem;
    padding: 7px 12px;
    max-width: calc(100vw - 36px);
    white-space: normal;
    margin-bottom: 14px;
  }
  .hero-subtitle {
    margin-top: 10px;
    font-size: clamp(0.86rem, 3.5vw, 1.02rem);
    letter-spacing: 0.12em;
  }
  .hero-grid-home {
    gap: 14px;
    margin-top: 0;
  }
  .about-clean-image img {
    min-height: 0;
    max-height: none;
  }
  .site-toast {
    min-width: min(100vw - 22px, 100%);
    max-width: min(100vw - 22px, 100%);
    bottom: 18px;
    padding: 13px 16px;
    font-size: 0.9rem;
  }
  .hero-side {
    max-width: none;
  }
  .lead {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  .hero-actions {
    width: 100%;
    margin-top: 24px;
    gap: 10px;
    flex-wrap: nowrap;
  }
  .hero-actions .button {
    width: calc(50% - 5px);
    padding: 12px 14px;
    min-height: 50px;
    font-size: 0.98rem;
  }
  .stat-row {
    width: 100%;
    margin-top: 30px;
    border-radius: 40px;
  }
  .stat-card {
    padding: 24px 16px 22px;
  }
  .stat-card:nth-child(3) {
    border-bottom-left-radius: 40px;
  }
  .stat-card:nth-child(4) {
    border-bottom-right-radius: 40px;
  }
  .stat-card::after {
    top: 16%;
    height: 68%;
  }
  .stat-row strong {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }
  .stat-row span {
    font-size: 0.94rem;
  }
  .feature-card, .quote-card, .process-card, .contact-card, .team-card {
    border-radius: 22px;
  }
  .feature-copy, .process-card, .quote-card, .contact-card, .team-copy {
    padding: 18px;
  }
  .treatments-grid {
    gap: 14px;
  }
  .treatment-card .feature-copy {
    padding: 16px 16px 18px;
    min-height: auto;
  }
  .treatment-card .feature-copy h3 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }
  .page-hero-copy .button,
  .contact-card .button {
    width: 100%;
  }
  .testimonial-actions {
    justify-content: center;
  }
  .testimonial-actions .button {
    width: 100%;
    max-width: 320px;
  }
  .contact-modal {
    padding: 16px;
  }
  .contact-modal-panel {
    padding: 22px 18px 18px;
    border-radius: 24px;
  }
  .contact-form-actions {
    gap: 10px;
  }
  .contact-form-actions .button {
    width: 100%;
  }
  .site-footer {
    padding: 44px 0 24px;
  }
  .footer-shell {
    gap: 24px;
  }
  .footer-logo {
    width: 100%;
  }
  .footer-brand-block {
    gap: 12px;
  }
  .footer-grid {
    gap: 22px;
  }
  .footer-contact-link,
  .footer-address,
  .footer-hours,
  .footer-links-col p {
    font-size: 0.96rem;
  }
  .footer-disclaimer p {
    font-size: 0.86rem;
  }
}

.location-map > img { width:100%; height:100%; min-height:420px; object-fit:cover; display:block; }
.footer-logo { color:var(--text); }

.location-map > img { width:100%; height:100%; min-height:420px; object-fit:cover; display:block; }
.footer-logo { color:var(--text); }

.location-map > img { width:100%; height:100%; min-height:420px; object-fit:cover; display:block; }
[data-theme="dark"] .brand-logo, [data-theme="dark"] .footer-logo { filter: invert(1); }
.hero-title h1 { font-size: clamp(4.5rem, 13vw, 13rem); }
@media (max-width: 980px) { .hero-title h1 { font-size: 14vw; } }
@media (max-width: 600px) { .hero-title h1 { font-size: 13vw; } }

[data-theme="dark"] body .brand-logo,
[data-theme="dark"] body .footer-logo,
[data-theme="dark"] body .site-preloader-logo {
  filter: invert(1) grayscale(1) brightness(1.2);
}

.seo-marketing-section {
  background: var(--section-dark-bg);
  color: var(--section-dark-text);
  padding-block: clamp(72px, 9vw, 132px);
}
.seo-marketing-intro {
  max-width: 980px;
  margin-bottom: 42px;
}
.seo-marketing-intro h2 {
  max-width: 960px;
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 5.4vw, 5.8rem);
  line-height: .98;
  letter-spacing: -.05em;
}
.seo-marketing-intro .lead,
.seo-marketing-section .eyebrow,
.seo-marketing-section p { color: rgba(255,255,255,.72); }
.seo-marketing-intro .lead { max-width: 780px; font-size: clamp(1rem, 1.5vw, 1.3rem); }
.seo-service-pills { display:flex; flex-wrap:wrap; gap:10px; margin-top:28px; }
.seo-service-pills span {
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.seo-pricing-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; }
.seo-price-card {
  display:flex;
  flex-direction:column;
  min-height:100%;
  padding: clamp(24px, 2.4vw, 36px);
  border:1px solid rgba(255,255,255,.14);
  border-radius:28px;
  background:rgba(255,255,255,.035);
  color:#f7f3eb;
}
.seo-price-card h3 { color:#f7f3eb; }
.seo-price-card p,
.seo-price-card .eyebrow,
.seo-price-card .seo-price-period { color:rgba(247,243,235,.76); }
.seo-price-card .detail-list { color:rgba(247,243,235,.82); }
.seo-price-card .button-light {
  border-color:rgba(247,243,235,.9);
  background:transparent;
  color:#f7f3eb;
}
.seo-price-card .button-light:hover {
  background:#f7f3eb;
  color:#111;
}
.seo-price-card-featured { background:#f4efe7; color:#111; }
.seo-price-card-featured h3 { color:#111; }
.seo-price-card-featured p,
.seo-price-card-featured .eyebrow,
.seo-price-card-featured .seo-price-period { color:#5c5953; }
.seo-price-card-featured .detail-list { color:#413e39; }
.seo-price-card-featured .button-dark {
  border-color:#111;
  background:#111;
  color:#fff;
}
.seo-price-card-featured .button-dark:hover {
  background:#2a2927;
  color:#fff;
}
.seo-price-card h3 { margin:8px 0 0; font-size:clamp(2.2rem,3.3vw,4rem); line-height:1; letter-spacing:-.05em; }
.seo-price-period { margin:8px 0 24px; font-size:.8rem; text-transform:uppercase; letter-spacing:.08em; }
.seo-price-card > p:not(.eyebrow):not(.seo-price-period) { min-height:4.8em; font-size:.92rem; line-height:1.6; }
.seo-price-card .detail-list { flex:1; margin:18px 0 28px; font-size:.86rem; }
.seo-price-card .button { width:100%; }
.seo-pricing-note { max-width:850px; margin:24px auto 0; text-align:center; font-size:.86rem; }
@media (max-width:1100px) { .seo-pricing-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width:650px) { .seo-pricing-grid { grid-template-columns:1fr; } .seo-price-card > p:not(.eyebrow):not(.seo-price-period) { min-height:auto; } }

/* Refined editorial hierarchy for smoother long-page browsing. */
.section-heading h1,
.section-heading h2,
.page-hero-copy h1,
.section-copy h2,
.prose-grid h2,
.about-clean-copy h2,
.about-clean-story h2,
.about-clean-editorial h2,
.about-clean-cta h2,
.location-copy h2,
.contact-modal-panel h2 {
  font-weight: 600;
}
.section-heading h1,
.section-heading h2,
.page-hero-copy h1,
.section-copy h2 {
  font-size: clamp(1.85rem, 3.7vw, 3.55rem);
  line-height: 1.06;
  letter-spacing: -0.028em;
}
.hero-page.compact .section-heading h1,
.hero-page .page-hero-copy h1 {
  font-size: clamp(1.75rem, 3.2vw, 3.1rem);
}
.welcome-copy h2 {
  font-size: clamp(1.85rem, 2.8vw, 3rem);
}
.seo-marketing-intro h2 {
  font-size: clamp(2.15rem, 4.4vw, 4.6rem);
  font-weight: 600;
  line-height: 1.03;
}
@media (max-width: 600px) {
  .section-heading h1,
  .section-heading h2,
  .page-hero-copy h1,
  .section-copy h2 { font-size: clamp(1.7rem, 7.5vw, 2.35rem); }
  .seo-marketing-intro h2 { font-size: clamp(2rem, 9vw, 2.8rem); }
}

/* Supplied transparent Wonderlust mark. */
.brand-logo,
.footer-logo,
.site-preloader-logo {
  filter: none;
}
.footer-logo {
  width: clamp(110px, 12vw, 170px);
}
[data-theme="dark"] .brand-logo,
[data-theme="dark"] .footer-logo,
[data-theme="dark"] .site-preloader-logo {
  filter: invert(1) grayscale(1) brightness(1.2);
}

.location-map > img { width:100%; height:100%; min-height:420px; object-fit:cover; display:block; }
[data-theme="dark"] .brand-logo, [data-theme="dark"] .footer-logo { filter: invert(1); }
.hero-title h1 { font-size: clamp(4.5rem, 13vw, 13rem); }
@media (max-width: 980px) { .hero-title h1 { font-size: 14vw; } }
@media (max-width: 600px) { .hero-title h1 { font-size: 13vw; } }

.location-map > img { width:100%; height:100%; min-height:420px; object-fit:cover; display:block; }
[data-theme="dark"] .brand-logo, [data-theme="dark"] .footer-logo { filter: invert(1); }
.hero-title h1 { font-size: clamp(4.5rem, 13vw, 13rem); }
@media (max-width: 980px) { .hero-title h1 { font-size: 14vw; } }
@media (max-width: 600px) { .hero-title h1 { font-size: 13vw; } }

.location-map > img { width:100%; height:100%; min-height:420px; object-fit:cover; display:block; }
[data-theme="dark"] .brand-logo, [data-theme="dark"] .footer-logo { filter: invert(1); }
.hero-title h1 { font-size: clamp(4.5rem, 13vw, 13rem); }
@media (max-width: 980px) { .hero-title h1 { font-size: 14vw; } }
@media (max-width: 600px) { .hero-title h1 { font-size: 13vw; } }

.location-map > img { width:100%; height:100%; min-height:420px; object-fit:cover; display:block; }
[data-theme="dark"] .brand-logo, [data-theme="dark"] .footer-logo { filter: invert(1); }
.hero-title h1 { font-size: clamp(4.5rem, 13vw, 13rem); }
@media (max-width: 980px) { .hero-title h1 { font-size: 14vw; } }
@media (max-width: 600px) { .hero-title h1 { font-size: 13vw; } }

.location-map > img { width:100%; height:100%; min-height:420px; object-fit:cover; display:block; }
[data-theme="dark"] .brand-logo, [data-theme="dark"] .footer-logo, [data-theme="dark"] .site-preloader-logo { filter: invert(1) grayscale(1) brightness(1.2); }
.hero-title h1 { font-size: clamp(4.5rem, 13vw, 13rem); }
@media (max-width: 980px) { .hero-title h1 { font-size: 14vw; } }
@media (max-width: 600px) { .hero-title h1 { font-size: 13vw; } }

.location-map > img { width:100%; height:100%; min-height:420px; object-fit:cover; display:block; }
.hero-showcase { width: min(100%, 1120px); margin: clamp(1.6rem, 3vw, 3.2rem) auto clamp(2rem, 4vw, 4.5rem); border-radius: clamp(1.5rem, 3vw, 3rem); overflow: hidden; border: 1px solid var(--border); background: #050505; box-shadow: 0 28px 80px rgba(0,0,0,.18); }
.hero-showcase img { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; }
.feature-media img, .gallery-media-element, .page-hero-media img, .media-stack img { object-fit: cover; }
[data-theme="dark"] .brand-logo, [data-theme="dark"] .footer-logo, [data-theme="dark"] .site-preloader-logo { filter: invert(1) grayscale(1) brightness(1.2); }
.hero-title h1 { font-size: clamp(4.5rem, 13vw, 13rem); }
@media (max-width: 980px) { .hero-title h1 { font-size: 14vw; } }
@media (max-width: 600px) { .hero-title h1 { font-size: 13vw; } .hero-showcase { border-radius: 1.4rem; } }

.location-map > img { width:100%; height:100%; min-height:420px; object-fit:cover; display:block; }
.hero-showcase { width: min(100%, 1120px); margin: clamp(1.6rem, 3vw, 3.2rem) auto clamp(2rem, 4vw, 4.5rem); border-radius: clamp(1.5rem, 3vw, 3rem); overflow: hidden; border: 1px solid var(--border); background: #050505; box-shadow: 0 28px 80px rgba(0,0,0,.18); }
.hero-showcase img { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; }
.feature-media img, .gallery-media-element, .page-hero-media img, .media-stack img { object-fit: cover; }
[data-theme="dark"] .brand-logo, [data-theme="dark"] .footer-logo, [data-theme="dark"] .site-preloader-logo { filter: invert(1) grayscale(1) brightness(1.2); }
.hero-title h1 { font-size: clamp(4.5rem, 13vw, 13rem); }
@media (max-width: 980px) { .hero-title h1 { font-size: 14vw; } }
@media (max-width: 600px) { .hero-title h1 { font-size: 13vw; } .hero-showcase { border-radius: 1.4rem; } }

.location-map > img { width:100%; height:100%; min-height:420px; object-fit:cover; display:block; }
.hero-showcase { width: min(100%, 1120px); margin: clamp(1.6rem, 3vw, 3.2rem) auto clamp(2rem, 4vw, 4.5rem); border-radius: clamp(1.5rem, 3vw, 3rem); overflow: hidden; border: 1px solid var(--border); background: #050505; box-shadow: 0 28px 80px rgba(0,0,0,.18); }
.hero-showcase img { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; }
.feature-media img, .gallery-media-element, .page-hero-media img, .media-stack img { object-fit: cover; }
[data-theme="dark"] .brand-logo, [data-theme="dark"] .footer-logo, [data-theme="dark"] .site-preloader-logo { filter: invert(1) grayscale(1) brightness(1.2); }
.hero-title h1 { font-size: clamp(4.5rem, 13vw, 13rem); }
@media (max-width: 980px) { .hero-title h1 { font-size: 14vw; } }
@media (max-width: 600px) { .hero-title h1 { font-size: 13vw; } .hero-showcase { border-radius: 1.4rem; } }

.location-map > img { width:100%; height:100%; min-height:420px; object-fit:cover; display:block; }
.hero-showcase { width: min(100%, 1120px); margin: clamp(1.6rem, 3vw, 3.2rem) auto clamp(2rem, 4vw, 4.5rem); border-radius: clamp(1.5rem, 3vw, 3rem); overflow: hidden; border: 1px solid var(--border); background: #050505; box-shadow: 0 28px 80px rgba(0,0,0,.18); }
.hero-showcase img { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; }
.feature-media img, .gallery-media-element, .page-hero-media img, .media-stack img { object-fit: cover; }
.gallery-card[data-gallery-open] { padding: 0; text-align: left; color: inherit; font: inherit; cursor: pointer; -webkit-appearance: none; appearance: none; }
[data-theme="dark"] .brand-logo, [data-theme="dark"] .footer-logo, [data-theme="dark"] .site-preloader-logo { filter: invert(1) grayscale(1) brightness(1.2); }
.hero-title h1 { font-size: clamp(4.5rem, 13vw, 13rem); }
@media (max-width: 980px) { .hero-title h1 { font-size: 14vw; } }
@media (max-width: 600px) { .hero-title h1 { font-size: 13vw; } .hero-showcase { border-radius: 1.4rem; } }

.location-map > img { width:100%; height:100%; min-height:420px; object-fit:cover; display:block; }
.hero-showcase { width: min(100%, 1120px); margin: clamp(1.6rem, 3vw, 3.2rem) auto clamp(2rem, 4vw, 4.5rem); border-radius: clamp(1.5rem, 3vw, 3rem); overflow: hidden; border: 1px solid var(--border); background: #050505; box-shadow: 0 28px 80px rgba(0,0,0,.18); }
.hero-showcase img { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; }
.feature-media img, .gallery-media-element, .page-hero-media img, .media-stack img { object-fit: cover; }
.gallery-card[data-gallery-open] { padding: 0; text-align: left; color: inherit; font: inherit; cursor: pointer; -webkit-appearance: none; appearance: none; }
.gallery-modal-panel-single { width: min(1120px, calc(100vw - 28px)); }
.gallery-single-view { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #050505; }
.gallery-single-image { width: 100%; max-height: 72vh; object-fit: contain; display: block; background: #050505; }
[data-theme="dark"] .brand-logo, [data-theme="dark"] .footer-logo, [data-theme="dark"] .site-preloader-logo { filter: invert(1) grayscale(1) brightness(1.2); }
.hero-title h1 { font-size: clamp(4.5rem, 13vw, 13rem); }
@media (max-width: 980px) { .hero-title h1 { font-size: 14vw; } }
@media (max-width: 600px) { .hero-title h1 { font-size: 13vw; } .hero-showcase { border-radius: 1.4rem; } .gallery-single-view { border-radius: 18px; } }
