/* ============ The Zen Den — moody luxe ============ */
:root {
  --ink: #07090a;
  --ink-2: #0c110e;
  --forest: #142019;
  --forest-2: #1b2a22;
  --moss: #2b4234;
  --gold: #c9a96e;
  --gold-soft: #a88e58;
  --gold-bright: #e6c98d;
  --bone: #f5e9d4;
  --bone-dim: rgba(245, 233, 212, 0.72);
  --bone-faint: rgba(245, 233, 212, 0.42);
  --line: rgba(201, 169, 110, 0.22);
  --line-strong: rgba(201, 169, 110, 0.55);
  --line-soft: rgba(201, 169, 110, 0.08);
  --shadow-deep: 0 40px 80px -20px rgba(0,0,0,0.7);
  --shadow-gold: 0 10px 40px -10px rgba(201, 169, 110, 0.35);
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Outfit", "Helvetica Neue", Arial, sans-serif;
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

html, body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.65;
}

body {
  background:
    radial-gradient(120% 80% at 20% 0%, rgba(43, 66, 52, 0.55), transparent 60%),
    radial-gradient(80% 60% at 100% 30%, rgba(201, 169, 110, 0.08), transparent 70%),
    radial-gradient(120% 100% at 50% 110%, rgba(20, 32, 25, 0.9), transparent 70%),
    var(--ink);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--moss); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-soft); }
::selection { background: var(--gold); color: var(--ink); }

#petals { position: fixed; inset: 0; pointer-events: none; z-index: 1; }

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 2;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

#app { position: relative; z-index: 3; }

/* ============ Type ============ */
h1, h2, h3, h4, .display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.012em;
  color: var(--bone);
  line-height: 1.05;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 36px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: ""; width: 36px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
em, .italic {
  font-style: italic;
  color: var(--gold);
  font-family: var(--serif);
}

/* ============ Buttons ============ */
.btn {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 17px 34px;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.4s var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 30px -10px rgba(201, 169, 110, 0.5);
}
.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px -10px rgba(201, 169, 110, 0.65);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-ghost:hover {
  background: rgba(201, 169, 110, 0.1);
  transform: translateY(-2px);
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease-out);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ============ Nav ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 22px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s var(--ease-out);
}
.nav.scrolled {
  padding: 14px 48px;
  background: rgba(7, 9, 10, 0.78);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  cursor: pointer; text-decoration: none;
}
.nav-logo svg { width: 38px; height: 38px; transition: transform 0.6s var(--ease-out); }
.nav-logo:hover svg { transform: rotate(180deg); }
.nav-logo-text {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.22em;
  color: var(--bone);
  text-transform: uppercase;
  font-weight: 400;
}
.nav-logo-text span { color: var(--gold); }
.nav-links {
  display: flex; gap: 38px;
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 400;
}
.nav-links a {
  color: var(--bone-dim);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
  padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute;
  left: 0; bottom: -2px;
  height: 1px; width: 0;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 11px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  border-radius: 999px;
  text-decoration: none;
}
.nav-cta:hover { background: var(--gold); color: var(--ink); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }
.nav-links-cta { display: none; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  width: 44px; height: 44px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 60;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav { padding: 16px 22px; }
  .nav.scrolled { padding: 12px 22px; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    /* Belt + braces: solid color base, then a subtle gradient image on top.
       background-color is the absolute floor — even if the gradient fails to
       render on a browser, the page never bleeds through. */
    background-color: #07090a;
    background-image:
      radial-gradient(120% 80% at 20% 0%, rgba(43, 66, 52, 0.55), transparent 60%),
      radial-gradient(80% 60% at 100% 100%, rgba(201, 169, 110, 0.08), transparent 70%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0s linear 0.3s;
    z-index: 100;
    padding: max(env(safe-area-inset-top, 0px), 80px) 24px max(env(safe-area-inset-bottom, 0px), 40px);
    display: flex;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open { box-shadow: 0 0 40px rgba(0,0,0,0.6); }
  .nav-toggle { z-index: 110; }

  /* When the menu is open we add this class to <html> so we can fully
     lock the page underneath — iOS-safe approach. */
  html.menu-locked, html.menu-locked body {
    overflow: hidden !important;
    height: 100% !important;
    position: relative;
    touch-action: none;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  }
  .nav-links a {
    font-family: var(--serif);
    font-style: italic;
    font-size: 26px;
    letter-spacing: 0.01em;
    text-transform: none;
    padding: 6px 0;
    color: var(--bone);
    text-decoration: none;
    line-height: 1.2;
  }
  .nav-links a:hover, .nav-links a:active { color: var(--gold); }
  .nav-links a::after { display: none; }
  .nav-links-cta {
    display: inline-flex;
    margin-top: 22px;
    border: 1px solid var(--gold);
    color: var(--ink) !important;
    background: var(--gold);
    padding: 14px 32px !important;
    border-radius: 999px;
    font-family: var(--sans);
    font-style: normal;
    font-size: 11px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
  }
  .nav-links-cta:hover, .nav-links-cta:active { color: var(--ink) !important; background: var(--gold-bright); }

  /* Tiny "swipe up to close" hint at the bottom of the menu */
  .nav-links::after {
    content: "Swipe up or tap × to close";
    position: absolute;
    bottom: max(env(safe-area-inset-bottom, 0px), 24px);
    left: 0; right: 0;
    text-align: center;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--bone-faint);
    pointer-events: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============ Sections ============ */
section { position: relative; padding: 140px 48px; }
.wrap { max-width: 1280px; margin: 0 auto; position: relative; }
@media (max-width: 900px) { section { padding: 90px 22px; } }

.section-head { text-align: center; margin-bottom: 80px; }
.section-head h2 {
  font-size: clamp(40px, 5.5vw, 78px);
  margin-top: 22px;
  font-weight: 400;
}
.section-head p {
  color: var(--bone-dim);
  max-width: 600px;
  margin: 22px auto 0;
  font-size: 17px;
  font-weight: 300;
  text-wrap: pretty;
}

/* ============ Hero ============ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 140px 48px 100px;
  text-align: center;
  position: relative;
}

.hero-mandala {
  position: absolute;
  top: 50%; left: 50%;
  width: 760px; height: 760px;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.55;
  pointer-events: none;
  will-change: transform;
}
.hero-mandala svg { width: 100%; height: 100%; }
.mandala-ring-1 { animation: spin 60s linear infinite; transform-origin: center; }
.mandala-ring-2 { animation: spin 90s linear infinite reverse; transform-origin: center; }
.mandala-ring-3 { animation: spin 120s linear infinite; transform-origin: center; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-welcome {
  font-size: 12px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  display: inline-flex; align-items: center; gap: 18px;
}
.hero-welcome::before,
.hero-welcome::after {
  content: ""; width: 54px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-welcome::after { background: linear-gradient(90deg, var(--gold), transparent); }

.hero h1 {
  font-size: clamp(60px, 11vw, 168px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.hero h1 .line { display: block; }
.hero h1 .gold { color: var(--gold); font-style: italic; }
.hero h1 .small { font-size: 0.55em; letter-spacing: 0.08em; }

.hero-sub {
  font-size: 19px;
  color: var(--bone-dim);
  max-width: 540px;
  font-weight: 300;
  margin: 12px auto 48px;
  text-wrap: pretty;
}
.hero-sub em { font-style: italic; color: var(--gold); }

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.hero-scroll {
  position: absolute;
  bottom: 38px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--bone-faint);
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
}
.hero-scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: ""; position: absolute;
  top: -20px; left: 0; width: 100%; height: 20px;
  background: var(--gold);
  animation: scroll-dot 2.2s ease-in-out infinite;
}
@keyframes scroll-dot {
  0% { top: -20px; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.hero-marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  background: rgba(7, 9, 10, 0.4);
  backdrop-filter: blur(8px);
}
.hero-marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.hero-marquee-item {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--bone-dim);
  display: inline-flex; align-items: center; gap: 60px;
}
.hero-marquee-item::after {
  content: "✦"; color: var(--gold); font-size: 12px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ About ============ */
.about { background: linear-gradient(180deg, transparent, rgba(20, 32, 25, 0.35), transparent); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
}
.about-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  perspective: 1200px;
}
.about-img {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #1f3025, #2b4234);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease-out);
}
.about-img::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 30% 30%, rgba(201, 169, 110, 0.18), transparent 60%),
    radial-gradient(50% 70% at 70% 70%, rgba(245, 233, 212, 0.08), transparent 60%);
}
.about-img-label {
  position: absolute;
  inset: auto 24px 24px 24px;
  display: flex; justify-content: space-between; align-items: flex-end;
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--bone);
  z-index: 2;
}
.about-img-label small {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--gold);
}
.about-img-frame {
  position: absolute;
  inset: 18px;
  border: 1px solid var(--line);
  pointer-events: none;
  z-index: 2;
}
.about-img-portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  z-index: 1;
  transition: transform 1.2s var(--ease-out), filter 0.6s;
}
.about-img:hover .about-img-portrait { transform: scale(1.04); filter: brightness(1.05); }
.about-img::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(7,9,10,0.65) 100%),
    radial-gradient(60% 80% at 30% 30%, rgba(201, 169, 110, 0.15), transparent 65%);
  z-index: 1;
  pointer-events: none;
}
.about-img-label, .about-img-frame { z-index: 2; }
.about-badge {
  position: absolute;
  top: -28px; right: -28px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  text-align: center;
  line-height: 1.1;
  box-shadow: var(--shadow-gold);
  animation: float-badge 6s ease-in-out infinite;
}
.about-badge svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 20s linear infinite; }
@keyframes float-badge {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-12px) rotate(-3deg); }
}

.about-text .eyebrow { margin-bottom: 24px; }
.about-text h2 {
  font-size: clamp(40px, 5vw, 68px);
  margin-bottom: 32px;
}
.about-text h2 em { font-style: italic; color: var(--gold); }
.about-text p {
  color: var(--bone-dim);
  font-size: 17px;
  margin-bottom: 20px;
  text-wrap: pretty;
}
.about-sig {
  margin-top: 36px;
  display: flex; align-items: center; gap: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--gold);
}
.about-sig small {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--bone-faint);
  display: block;
}

/* ============ Services ============ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-card {
  position: relative;
  padding: 56px 48px;
  border-radius: 6px;
  background: linear-gradient(160deg, rgba(27, 42, 34, 0.6), rgba(12, 17, 14, 0.8));
  border: 1px solid var(--line);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out), border-color 0.6s;
  cursor: default;
  min-height: 520px;
  display: flex; flex-direction: column;
}
.service-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-deep), var(--shadow-gold);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(201, 169, 110, 0.12), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:hover::before,
.service-card:active::before { opacity: 1; }
[data-tilt] { will-change: transform; }
.hero-mandala { will-change: transform, opacity; }
.service-icon {
  width: 60px; height: 60px;
  margin-bottom: 32px;
  color: var(--gold);
}
.service-card h3 {
  font-size: clamp(34px, 3.5vw, 48px);
  margin-bottom: 14px;
}
.service-card h3 em { font-style: italic; color: var(--gold); }
.service-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--gold);
  margin-bottom: 28px;
}
.service-desc {
  color: var(--bone-dim);
  font-size: 16px;
  margin-bottom: 36px;
  text-wrap: pretty;
}
.service-list {
  list-style: none;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.service-list li {
  padding: 11px 0;
  font-size: 15px;
  color: var(--bone-dim);
  display: flex; align-items: center; gap: 14px;
  border-bottom: 1px solid var(--line-soft, rgba(201, 169, 110, 0.08));
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: "❋";
  color: var(--gold);
  font-size: 11px;
}

/* ============ Experience ============ */
.experience { background: linear-gradient(180deg, transparent, rgba(20, 32, 25, 0.5), transparent); position: relative; }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
@media (max-width: 900px) { .exp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .exp-grid { grid-template-columns: 1fr; } }
.exp-card {
  padding: 40px 28px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(12, 17, 14, 0.4);
  backdrop-filter: blur(8px);
  transition: transform 0.5s var(--ease-out), border-color 0.5s, background 0.5s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.exp-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  background: rgba(43, 66, 52, 0.4);
}
.exp-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  color: var(--gold);
  transition: transform 0.6s var(--ease-out);
}
.exp-card:hover .exp-icon { transform: scale(1.1) rotate(-8deg); }
.exp-card h4 {
  font-size: 22px;
  margin-bottom: 10px;
}
.exp-card p {
  font-size: 14px;
  color: var(--bone-dim);
  line-height: 1.5;
}

.exp-quote {
  margin-top: 100px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--bone);
  line-height: 1.3;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.exp-quote::before {
  content: "“";
  display: block;
  font-size: 120px;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 30px;
  opacity: 0.55;
}
.exp-quote em { color: var(--gold); }

/* ============ Pricing ============ */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 60px;
  padding: 6px;
  background: rgba(12, 17, 14, 0.6);
  border: 1px solid var(--line);
  border-radius: 999px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.pricing-tab {
  padding: 12px 28px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: transparent;
  border: none;
  color: var(--bone-dim);
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.4s var(--ease-out);
}
.pricing-tab.active {
  background: var(--gold);
  color: var(--ink);
}
.pricing-tab:not(.active):hover { color: var(--gold); }

.price-section { display: none; animation: fadeUp 0.6s var(--ease-out); }
.price-section.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.price-group {
  margin-bottom: 60px;
}
.price-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.price-group-head h3 {
  font-size: clamp(28px, 3vw, 40px);
  font-style: italic;
}
.price-group-head .eyebrow::before { display: none; }

.price-list { list-style: none; }
.price-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px dashed var(--line);
  transition: padding 0.3s var(--ease-out);
}
.price-item:last-child { border-bottom: none; }
.price-item:hover { padding-left: 12px; }
.price-name {
  display: flex; flex-direction: column; gap: 4px;
}
.price-name strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--bone);
}
.price-name span {
  font-size: 13px;
  color: var(--bone-faint);
  font-style: italic;
}
.price-cost {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--gold);
  font-style: italic;
  white-space: nowrap;
}
.price-cost small {
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  color: var(--bone-faint);
  letter-spacing: 0.16em;
  display: block;
  text-align: right;
  margin-top: 2px;
}

.price-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
@media (max-width: 900px) {
  .price-grid-2 { grid-template-columns: 1fr; gap: 40px; }
}

.price-note {
  margin-top: 40px;
  padding: 24px 28px;
  background: rgba(43, 66, 52, 0.3);
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--bone-dim);
}

/* ============ Testimonials ============ */
.testimonials-track-wrap {
  overflow: hidden;
  margin: 0 -48px;
  padding: 40px 0;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.testimonials-track {
  display: flex;
  gap: 32px;
  animation: marquee-slow 80s linear infinite;
  width: max-content;
}
.testimonials-track:hover { animation-play-state: paused; }
@keyframes marquee-slow {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.testimonial {
  width: 420px;
  padding: 40px 36px;
  background: linear-gradient(180deg, rgba(27, 42, 34, 0.5), rgba(12, 17, 14, 0.7));
  border: 1px solid var(--line);
  border-radius: 6px;
  flex-shrink: 0;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 22px;
}
.testimonial-body {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--bone);
  line-height: 1.45;
  margin-bottom: 28px;
  text-wrap: pretty;
}
.testimonial-name {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial-meta {
  font-size: 12px;
  color: var(--bone-faint);
  margin-top: 4px;
  font-style: italic;
  font-family: var(--serif);
}

/* ============ Gallery ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 160px;
  gap: 14px;
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}
.gallery-cell {
  background: linear-gradient(160deg, var(--forest-2), var(--moss));
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease-out), border-color 0.5s;
  cursor: pointer;
}
.gallery-cell:hover {
  transform: scale(1.02);
  border-color: var(--gold);
  z-index: 2;
}
.gallery-cell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(201, 169, 110, 0.25), transparent 60%);
}
.gallery-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5));
}
.gallery-cell-label {
  position: absolute;
  inset: auto 16px 14px 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--bone);
  z-index: 2;
}
.gallery-cell-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(245, 233, 212, 0.2);
  width: 38px; height: 38px;
}

.g-1 { grid-column: span 2; grid-row: span 2; }
.g-2 { grid-column: span 2; grid-row: span 1; }
.g-3 { grid-column: span 2; grid-row: span 2; }
.g-4 { grid-column: span 2; grid-row: span 1; }
.g-5 { grid-column: span 2; grid-row: span 1; }
.g-6 { grid-column: span 2; grid-row: span 1; }
.g-7 { grid-column: span 2; grid-row: span 1; }
.g-8 { grid-column: span 2; grid-row: span 2; }
.g-9 { grid-column: span 2; grid-row: span 1; }
@media (max-width: 900px) {
  .g-1, .g-2, .g-3, .g-4, .g-5, .g-6, .g-7, .g-8, .g-9 { grid-column: span 1; grid-row: span 1; }
  .g-1, .g-3, .g-8 { grid-row: span 2; }
}

/* ============ Booking ============ */
.booking { background: linear-gradient(180deg, transparent, rgba(20, 32, 25, 0.5)); }
.booking-card {
  background: linear-gradient(180deg, rgba(27, 42, 34, 0.7), rgba(12, 17, 14, 0.85));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 60px;
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(20px);
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 900px) { .booking-card { padding: 36px 24px; } }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media (max-width: 900px) { .booking-grid { grid-template-columns: 1fr; gap: 30px; } }

.booking-step {
  margin-bottom: 28px;
}
.booking-step-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.booking-step-label .num {
  width: 22px; height: 22px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-family: var(--serif);
  font-style: italic;
}

.service-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.service-chip {
  padding: 12px 20px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--bone-dim);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  transition: all 0.3s var(--ease-out);
  display: inline-flex; align-items: center; gap: 10px;
}
.chip-ico {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out);
}
.service-chip:hover .chip-ico { transform: rotate(-8deg) scale(1.1); }
.service-chip.active .chip-ico { color: var(--ink); }
.service-chip:hover { border-color: var(--gold); color: var(--bone); }
.service-chip.active {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.calendar {
  background: rgba(7, 9, 10, 0.4);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
}
.cal-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.cal-head h4 {
  font-size: 22px;
  font-style: italic;
}
.cal-nav {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--gold);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.cal-nav:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-day-name {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-faint);
  padding: 8px 0;
}
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--bone-dim);
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s var(--ease-out);
  position: relative;
  border: 1px solid transparent;
}
.cal-day:hover:not(.disabled):not(.empty) { background: rgba(201, 169, 110, 0.15); color: var(--bone); }
.cal-day.disabled { color: var(--bone-faint); opacity: 0.3; cursor: not-allowed; }
.cal-day.empty { cursor: default; }
.cal-day.available::after {
  content: "";
  position: absolute;
  bottom: 5px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
}
.cal-day.today { border-color: var(--line); }
.cal-day.selected {
  background: var(--gold);
  color: var(--ink);
}
.cal-day.selected::after { background: var(--ink); }
.cal-day.full {
  color: var(--bone-faint);
  text-decoration: line-through;
  cursor: not-allowed;
  opacity: 0.5;
}
.cal-day.full::after { display: none; }
.cal-day.has-bookings:not(.selected):not(.full)::after {
  background: var(--gold);
  width: 4px; height: 4px;
}

#booking-submit.loading { opacity: 0.6; cursor: progress; }
#booking-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.time-slot {
  padding: 10px;
  background: rgba(7, 9, 10, 0.5);
  border: 1px solid var(--line);
  color: var(--bone-dim);
  font-family: var(--serif);
  font-size: 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.time-slot:hover:not(.taken) { border-color: var(--gold); color: var(--bone); }
.time-slot.taken { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }
.time-slot.active { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.booking-summary {
  margin-top: 32px;
  padding: 24px;
  background: rgba(7, 9, 10, 0.5);
  border: 1px solid var(--gold);
  border-radius: 6px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.booking-summary-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--bone);
  flex: 1 1 280px;
}
.booking-summary-text span { color: var(--gold); }
#booking-submit { border: none; }

.booking-details { margin-top: 30px; }
.booking-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field-wide { grid-column: 1 / -1; }
.field span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.field span em {
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  color: var(--bone-faint);
  text-transform: none;
  letter-spacing: 0.05em;
  margin-left: 6px;
}
.field input, .field textarea {
  background: rgba(7, 9, 10, 0.55);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 16px;
  color: var(--bone);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(245, 233, 212, 0.3); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(7, 9, 10, 0.75);
}
.field textarea { resize: vertical; min-height: 60px; line-height: 1.5; }
.field.invalid input, .field.invalid textarea { border-color: #c46a55; background: rgba(196, 106, 85, 0.06); }

@media (max-width: 600px) {
  .booking-fields { grid-template-columns: 1fr; }
}

.booking-success {
  margin-top: 24px;
  padding: 26px 28px;
  background: linear-gradient(160deg, rgba(43, 66, 52, 0.5), rgba(12, 17, 14, 0.7));
  border: 1px solid var(--gold);
  border-radius: 8px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  animation: fadeUp 0.6s var(--ease-out);
  color: var(--gold);
}
.booking-success svg { width: 44px; height: 44px; flex-shrink: 0; margin-top: 2px; }
.booking-success h4 {
  font-size: 22px;
  font-style: italic;
  color: var(--bone);
  margin-bottom: 8px;
}
.booking-success p {
  font-size: 14px;
  color: var(--bone-dim);
  line-height: 1.55;
  margin-bottom: 6px;
}
.booking-success p strong { color: var(--gold); font-weight: 400; }
.booking-success-fallback { font-size: 13px; color: var(--bone-faint); margin-top: 8px; }
.booking-success-fallback a, .link-btn { color: var(--gold); }
.link-btn {
  background: transparent;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(201,169,110,0.4);
  text-underline-offset: 3px;
}
.link-btn:hover { text-decoration-color: var(--gold); }

.booking-foot {
  margin-top: 18px;
  font-size: 12px;
  color: var(--bone-faint);
  text-align: center;
  font-style: italic;
  font-family: var(--serif);
}

/* ============ Location ============ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .location-grid { grid-template-columns: 1fr; } }
.location-info-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
}
.location-info-item:last-child { border-bottom: none; }
.location-info-item .icon {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.location-info-item h4 {
  font-size: 22px;
  font-style: italic;
  margin-bottom: 6px;
}
.location-info-item p {
  font-size: 15px;
  color: var(--bone-dim);
  line-height: 1.55;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px 32px;
}
.hours-grid dt {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--bone);
}
.hours-grid dd {
  font-size: 14px;
  color: var(--bone-dim);
  letter-spacing: 0.04em;
}
.hours-grid dd.closed { color: var(--bone-faint); font-style: italic; }

.map {
  aspect-ratio: 1;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, var(--moss), var(--forest), var(--ink));
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.6);
  animation: pulse 2s ease-out infinite;
  z-index: 2;
}
.map-pin::after {
  content: "";
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--gold);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.6); }
  100% { box-shadow: 0 0 0 30px rgba(201, 169, 110, 0); }
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 110, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 110, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-paths {
  position: absolute; inset: 0;
  opacity: 0.5;
}
.map-label {
  position: absolute;
  bottom: 22px; left: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--bone);
}
.map-label small {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: block;
  color: var(--gold);
  font-style: normal;
  margin-bottom: 2px;
}

/* ============ Footer ============ */
.footer {
  padding: 100px 48px 40px;
  border-top: 1px solid var(--line);
  background: rgba(7, 9, 10, 0.6);
  position: relative;
}
.footer-top {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand h3 {
  font-size: 32px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 18px 0 18px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--bone-dim);
  text-wrap: pretty;
  max-width: 320px;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col li { font-size: 14px; color: var(--bone-dim); }
.footer-col a {
  color: var(--bone-dim);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: var(--bone-faint);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom em { color: var(--gold); font-style: italic; }
.footer-admin-link {
  color: var(--bone-faint);
  text-decoration: none;
  border-bottom: 1px dotted rgba(245, 233, 212, 0.3);
  padding-bottom: 1px;
  transition: color 0.3s, border-color 0.3s;
}
.footer-admin-link:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ============ Reveal ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

/* ============ Cursor ============ */
.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 26px; height: 26px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
  mix-blend-mode: difference;
}
.custom-cursor.hover {
  width: 60px; height: 60px;
  background: rgba(201, 169, 110, 0.15);
}
.custom-cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
@media (hover: none) { .custom-cursor, .custom-cursor-dot { display: none; } }

/* ============ Transformations gallery ============ */
.transformations-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 18px;
}
.tx-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--forest);
  cursor: pointer;
  transform-style: preserve-3d;
  transition: border-color 0.5s, box-shadow 0.5s;
  grid-column: span 4;
  grid-row: span 2;
  isolation: isolate;
}
.tx-card.tx-tall { grid-row: span 3; }
.tx-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out), filter 0.6s;
  transform: scale(1.02);
}
.tx-card:hover { border-color: var(--gold); box-shadow: var(--shadow-deep), 0 0 0 1px rgba(201,169,110,0.3); }
.tx-card:hover img { transform: scale(1.07); filter: brightness(1.05) saturate(1.05); }
.tx-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,9,10,0.05) 55%, rgba(7,9,10,0.85) 100%);
  z-index: 1;
  pointer-events: none;
}
.tx-card::after {
  content: "Before • After";
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 6px 12px;
  border-radius: 999px;
  opacity: 0.95;
  transition: transform 0.5s var(--ease-out);
}
.tx-card:hover::after { transform: translateY(-2px); }
.tx-card figcaption {
  position: absolute;
  inset: auto 20px 20px 20px;
  z-index: 2;
  color: var(--bone);
  transform: translateY(8px);
  transition: transform 0.5s var(--ease-out);
}
.tx-card:hover figcaption { transform: translateY(0); }
.tx-card .tx-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.tx-card h4 {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 4px;
  color: var(--bone);
}
.tx-card p {
  font-size: 13px;
  color: var(--bone-dim);
  line-height: 1.4;
  max-width: 90%;
}

/* Divider line between before/after halves (the photos are already diptychs) */
.tx-card::before {
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(201,169,110,0.35) 49.85%, rgba(245,233,212,0.55) 50%, rgba(201,169,110,0.35) 50.15%, transparent 50.5%),
    linear-gradient(180deg, transparent 40%, rgba(7,9,10,0.1) 60%, rgba(7,9,10,0.92) 100%);
}

@media (max-width: 900px) {
  .transformations-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 180px; }
  .tx-card { grid-column: span 3; grid-row: span 2; }
  .tx-card.tx-tall { grid-row: span 2; }
}
@media (max-width: 600px) {
  .transformations-grid { grid-template-columns: 1fr; }
  .tx-card, .tx-card.tx-tall { grid-column: span 1; grid-row: auto; height: 380px; }
}

.tx-foot {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 28px 36px;
  background: rgba(43, 66, 52, 0.25);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.tx-foot p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--bone);
  margin: 0;
  max-width: 600px;
}
.pricing-original {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 80px;
  padding: 40px;
  background: rgba(12, 17, 14, 0.5);
  border: 1px solid var(--line);
  border-radius: 8px;
  flex-wrap: wrap;
}
.pricing-original img {
  max-width: 280px;
  border-radius: 4px;
  box-shadow: var(--shadow-deep);
  transform: rotate(-2deg);
  transition: transform 0.6s var(--ease-out);
}
.pricing-original img:hover { transform: rotate(0deg) scale(1.04); }
.pricing-original-text {
  max-width: 400px;
}
.pricing-original-text h4 {
  font-size: 28px;
  font-style: italic;
  margin-bottom: 12px;
}
.pricing-original-text p {
  font-size: 14px;
  color: var(--bone-dim);
}

/* ============ Gift Vouchers ============ */
.gifts {
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(201, 169, 110, 0.07), transparent 60%),
    linear-gradient(180deg, transparent, rgba(20, 32, 25, 0.5), transparent);
}
.gift-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 100px;
  align-items: center;
}
@media (max-width: 1000px) {
  .gift-grid { grid-template-columns: 1fr; gap: 60px; }
}

.gift-card-wrap {
  position: relative;
  perspective: 1400px;
  display: flex;
  justify-content: center;
}
.gift-card-stage {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1.45 / 1;
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease-out);
  transform: rotateX(8deg) rotateY(-14deg) rotateZ(-1.5deg);
  animation: gift-float 7s ease-in-out infinite;
}
@keyframes gift-float {
  0%, 100% { transform: rotateX(8deg) rotateY(-14deg) rotateZ(-1.5deg) translateY(0); }
  50% { transform: rotateX(6deg) rotateY(-12deg) rotateZ(-1deg) translateY(-12px); }
}

.gift-card {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.7),
    0 60px 100px -30px rgba(0,0,0,0.5),
    inset 0 0 0 1px rgba(201,169,110,0.25);
  transform-style: preserve-3d;
}
.gift-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.gift-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 240, 200, 0.18) 45%,
    rgba(255, 240, 200, 0.05) 55%,
    transparent 70%
  );
  pointer-events: none;
  mix-blend-mode: screen;
  transform: translateX(-100%);
  animation: gift-shine 6s ease-in-out infinite;
  animation-delay: 1s;
}
@keyframes gift-shine {
  0% { transform: translateX(-100%); }
  40% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}
.gift-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 50% 50%, rgba(201, 169, 110, 0.28), transparent 65%);
  filter: blur(40px);
  z-index: -1;
  animation: gift-pulse 5s ease-in-out infinite;
}
@keyframes gift-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.gift-shadow {
  position: absolute;
  bottom: -40px; left: 10%; right: 10%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.6), transparent 65%);
  filter: blur(12px);
  z-index: -2;
}

.gift-ribbon {
  position: absolute;
  top: 22px; left: -10px;
  background: var(--gold);
  color: var(--ink);
  padding: 8px 18px 8px 14px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  z-index: 3;
}
.gift-ribbon::before {
  content: "";
  position: absolute;
  top: 100%; left: 0;
  border-top: 6px solid #6b5530;
  border-left: 10px solid transparent;
}

.gift-content .eyebrow { margin-bottom: 22px; }
.gift-content h2 {
  font-size: clamp(38px, 4.6vw, 64px);
  margin-bottom: 24px;
}
.gift-content h2 em { font-style: italic; color: var(--gold); }
.gift-lede {
  color: var(--bone-dim);
  font-size: 17px;
  margin-bottom: 32px;
  text-wrap: pretty;
  max-width: 540px;
}

.gift-options {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}
.gift-option {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  text-align: left;
  gap: 16px;
  padding: 16px 22px;
  background: rgba(7, 9, 10, 0.5);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--bone);
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 300;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.gift-option::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease-out);
}
.gift-option:hover {
  border-color: var(--line-strong);
  background: rgba(43, 66, 52, 0.4);
  transform: translateX(4px);
}
.gift-option.active {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}
.gift-option.active::before { transform: scaleY(1); }
.gift-option-name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.005em;
  display: block;
  margin-bottom: 2px;
}
.gift-option.active .gift-option-name { color: var(--bone); }
.gift-option-meta {
  font-size: 12px;
  color: var(--bone-faint);
  letter-spacing: 0.04em;
  font-style: italic;
  font-family: var(--serif);
}
.gift-option-price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  white-space: nowrap;
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.gift-features {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 28px;
  margin-bottom: 32px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gift-feature {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--bone-dim);
  letter-spacing: 0.02em;
}
.gift-feature svg {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.gift-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .gift-options { gap: 8px; }
  .gift-option { padding: 14px 18px; }
  .gift-option-name { font-size: 18px; }
  .gift-option-price { font-size: 19px; }
}

/* Service card feature image (Hair card) */
.service-card-hair { position: relative; }
.service-feature-img {
  position: absolute;
  top: -40px; right: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
  z-index: 1;
  opacity: 0.45;
  transition: opacity 0.6s var(--ease-out), transform 0.8s var(--ease-out);
  pointer-events: none;
}
.service-feature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.service-feature-img::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 35%, rgba(7,9,10,0.55) 100%);
}
.service-card-hair:hover .service-feature-img {
  opacity: 0.85;
  transform: rotate(4deg) scale(1.05);
}
.service-card-hair > *:not(.service-feature-img) { position: relative; z-index: 2; }
@media (max-width: 600px) {
  .service-feature-img { width: 140px; height: 140px; top: -20px; right: -20px; opacity: 0.5; }
}

/* =========================================================================
   MOBILE REFINEMENT LAYER — desktop above 760px is UNCHANGED.
   Goal: tighter, calmer, magazine-like density on phones.
   ========================================================================= */
@media (max-width: 760px) {

  /* Sections — calmer rhythm, less scroll */
  section { padding: 64px 20px; }
  .wrap { max-width: 100%; }
  .section-head { margin-bottom: 44px; }
  .section-head h2 { font-size: clamp(32px, 8vw, 46px); margin-top: 14px; line-height: 1.08; }
  .section-head p { font-size: 15px; margin-top: 18px; line-height: 1.6; }
  .eyebrow { font-size: 10px; letter-spacing: 0.3em; gap: 10px; }
  .eyebrow::before, .eyebrow.center::after { width: 26px; }

  /* Buttons — refined tap targets without bulk */
  .btn { padding: 14px 26px; font-size: 11px; letter-spacing: 0.22em; gap: 10px; }

  /* Nav — tighter */
  .nav { padding: 14px 18px; }
  .nav.scrolled { padding: 10px 18px; }
  .nav-logo svg { width: 32px; height: 32px; }
  .nav-logo-text { font-size: 18px; letter-spacing: 0.18em; }
  .nav-toggle { width: 40px; height: 40px; }

  /* Hero — keep the impact, drop the bloat */
  .hero { padding: 110px 20px 90px; min-height: 88vh; }
  .hero-welcome {
    font-size: 10px; letter-spacing: 0.42em;
    margin-bottom: 24px; gap: 12px;
  }
  .hero-welcome::before, .hero-welcome::after { width: 36px; }
  .hero h1 {
    font-size: clamp(48px, 13.5vw, 78px);
    letter-spacing: -0.022em;
    line-height: 0.95;
    margin-bottom: 22px;
  }
  .hero h1 .small { font-size: 0.58em; }
  .hero-sub {
    font-size: 15.5px;
    line-height: 1.55;
    max-width: 460px;
    margin: 6px auto 30px;
  }
  .hero-ctas { gap: 12px; }
  .hero-ctas .btn { padding: 13px 22px; font-size: 10.5px; }
  .hero-mandala { width: 440px; height: 440px; opacity: 0.4; }
  .hero-scroll { display: none; }
  .hero-marquee { padding: 12px 0; }
  .hero-marquee-item { font-size: 16px; gap: 36px; }
  .hero-marquee-track { gap: 36px; }
  .hero-marquee-item::after { font-size: 10px; }

  /* About — photo above, text below, tight gap */
  .about-grid { gap: 40px; }
  .about-img-wrap { max-width: 320px; margin: 0 auto; }
  .about-badge {
    width: 96px; height: 96px;
    top: -14px; right: -10px;
    font-size: 14px;
  }
  .about-badge svg { animation-duration: 30s; }
  .about-img-label { font-size: 22px; inset: auto 18px 18px 18px; }
  .about-img-label small { font-size: 9px; letter-spacing: 0.26em; }
  .about-img-frame { inset: 14px; }
  .about-text .eyebrow { margin-bottom: 18px; }
  .about-text h2 {
    font-size: clamp(28px, 7vw, 42px);
    margin-bottom: 22px;
    line-height: 1.1;
  }
  .about-text p { font-size: 15px; margin-bottom: 14px; line-height: 1.6; }
  .about-sig { font-size: 26px; margin-top: 26px; gap: 14px; }
  .about-sig small { font-size: 9px; }

  /* Services */
  .services-grid { gap: 16px; }
  .service-card {
    padding: 34px 26px;
    min-height: auto;
    border-radius: 8px;
  }
  .service-icon { width: 46px; height: 46px; margin-bottom: 22px; }
  .service-card h3 {
    font-size: clamp(26px, 7vw, 36px);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .service-tagline { font-size: 15.5px; margin-bottom: 18px; }
  .service-desc { font-size: 14.5px; margin-bottom: 26px; line-height: 1.6; }
  .service-list li { font-size: 13.5px; padding: 9px 0; gap: 12px; }
  .service-list { padding-top: 18px; }

  /* Experience — tighter cards */
  .exp-grid { gap: 12px; margin-top: 36px; }
  .exp-card { padding: 26px 18px; border-radius: 8px; }
  .exp-icon { width: 42px; height: 42px; margin-bottom: 14px; }
  .exp-card h4 { font-size: 18px; margin-bottom: 8px; }
  .exp-card p { font-size: 13px; line-height: 1.5; }
  .exp-quote {
    margin-top: 56px;
    font-size: clamp(22px, 5.4vw, 32px);
    line-height: 1.35;
  }
  .exp-quote::before { font-size: 70px; margin-bottom: 14px; }

  /* Pricing */
  .pricing-tabs {
    margin-bottom: 36px;
    padding: 5px;
    width: 100%;
    justify-content: space-between;
  }
  .pricing-tab {
    padding: 10px 18px;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    flex: 1;
  }
  .price-group { margin-bottom: 36px; }
  .price-group-head {
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 18px;
    padding-bottom: 14px;
    gap: 8px;
  }
  .price-group-head h3 { font-size: clamp(22px, 6vw, 30px) !important; }
  .price-item { padding: 14px 0; gap: 14px; }
  .price-item:hover { padding-left: 0; }
  .price-name strong { font-size: 18px; }
  .price-name span { font-size: 12px; }
  .price-cost { font-size: 21px; }
  .price-cost small { font-size: 10px; }
  .price-note { padding: 18px 20px; font-size: 15px; margin-top: 28px; }
  .pricing-original {
    flex-direction: column;
    text-align: center;
    padding: 28px 22px;
    margin-top: 48px;
    gap: 22px;
  }
  .pricing-original img { max-width: 200px; transform: rotate(-1.5deg); }
  .pricing-original-text h4 { font-size: 22px; }
  .pricing-original-text p { font-size: 13px; }

  /* Testimonials */
  .testimonial { width: 300px; padding: 28px 24px; }
  .testimonial-body {
    font-size: 16px;
    line-height: 1.48;
    margin-bottom: 20px;
  }
  .testimonial-name { font-size: 12px; letter-spacing: 0.18em; }
  .testimonial-meta { font-size: 11px; }
  .testimonials-track-wrap { margin: 0 -20px; padding: 24px 0; }
  .testimonials-track { gap: 18px; }

  /* Gallery / transformations */
  .transformations-grid {
    grid-template-columns: 1fr !important;
    grid-auto-rows: auto;
    gap: 14px;
  }
  .tx-card, .tx-card.tx-tall {
    grid-column: span 1 !important;
    grid-row: auto !important;
    height: 280px;
  }
  .tx-card h4 { font-size: 19px; }
  .tx-card .tx-tag { font-size: 9px; letter-spacing: 0.24em; }
  .tx-card::after { font-size: 9px; padding: 5px 10px; }
  .tx-card figcaption { inset: auto 16px 16px 16px; }
  .tx-foot {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 22px;
    margin-top: 36px;
    gap: 16px;
  }
  .tx-foot p { font-size: 17px; line-height: 1.4; }

  /* Gift vouchers */
  .gift-grid { gap: 36px; }
  .gift-card-stage { max-width: 360px; }
  .gift-content .eyebrow { margin-bottom: 18px; }
  .gift-content h2 {
    font-size: clamp(28px, 7vw, 42px);
    margin-bottom: 18px;
    line-height: 1.1;
  }
  .gift-lede { font-size: 15px; margin-bottom: 22px; line-height: 1.55; }
  .gift-options { gap: 7px; margin-bottom: 22px; }
  .gift-option { padding: 13px 16px; }
  .gift-option-name { font-size: 17px; }
  .gift-option-meta { font-size: 11.5px; }
  .gift-option-price { font-size: 18px; padding-left: 10px; }
  .gift-features {
    gap: 12px 22px;
    margin-bottom: 24px;
    padding: 14px 0;
  }
  .gift-feature { font-size: 12px; }
  .gift-ctas { gap: 10px; flex-direction: column; align-items: stretch; }
  .gift-ctas .btn { justify-content: center; }
  .gift-ribbon { font-size: 9px; padding: 7px 14px 7px 12px; }

  /* Booking form */
  .booking-card {
    padding: 28px 20px;
    border-radius: 8px;
  }
  .booking-grid { gap: 24px; }
  .booking-step { margin-bottom: 22px; }
  .booking-step-label {
    font-size: 10px;
    letter-spacing: 0.26em;
    margin-bottom: 12px;
    gap: 8px;
  }
  .booking-step-label .num { width: 20px; height: 20px; font-size: 9px; }
  .service-chips { gap: 8px; }
  .service-chip {
    padding: 10px 14px;
    font-size: 12.5px;
    gap: 8px;
  }
  .chip-ico { width: 14px; height: 14px; }
  .time-slots { gap: 6px; }
  .time-slot {
    padding: 9px 4px;
    font-size: 14px;
    border-radius: 6px;
  }
  .calendar { padding: 18px 14px; }
  .cal-head { margin-bottom: 14px; }
  .cal-head h4 { font-size: 18px; }
  .cal-nav { width: 28px; height: 28px; }
  .cal-grid { gap: 4px; }
  .cal-day-name { font-size: 9px; padding: 6px 0; letter-spacing: 0.16em; }
  .cal-day { font-size: 14px; }
  .booking-details { margin-top: 24px; }
  .booking-fields { gap: 12px; }
  .field span { font-size: 10px; letter-spacing: 0.2em; }
  .field input, .field textarea {
    padding: 12px 14px;
    font-size: 15px;
    border-radius: 6px;
  }
  .booking-summary {
    padding: 18px 18px;
    margin-top: 24px;
    gap: 14px;
    flex-direction: column;
    align-items: stretch;
  }
  .booking-summary-text { font-size: 15.5px; text-align: center; }
  #booking-submit { width: 100%; justify-content: center; }
  .booking-success {
    padding: 22px 20px;
    gap: 14px;
    border-radius: 8px;
  }
  .booking-success svg { width: 36px; height: 36px; margin-top: 0; }
  .booking-success h4 { font-size: 19px; margin-bottom: 6px; }
  .booking-success p { font-size: 13.5px; line-height: 1.5; }
  .booking-foot { font-size: 11.5px; margin-top: 14px; }

  /* Location */
  .location-grid { gap: 36px; }
  .location-info-item {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 18px 0;
  }
  .location-info-item .icon { width: 38px; height: 38px; }
  .location-info-item h4 { font-size: 19px; margin-bottom: 4px; }
  .location-info-item p { font-size: 14px; line-height: 1.5; }
  .hours-grid { gap: 9px 24px; }
  .hours-grid dt { font-size: 16px; }
  .hours-grid dd { font-size: 13px; }
  .map { aspect-ratio: 4 / 3; }
  .map-label { font-size: 18px; bottom: 18px; left: 18px; }
  .map-label small { font-size: 9px; letter-spacing: 0.22em; }

  /* Footer */
  .footer { padding: 56px 20px 28px; }
  .footer-top { gap: 36px; padding-bottom: 36px; }
  .footer-brand h3 {
    font-size: 24px;
    letter-spacing: 0.16em;
    margin: 12px 0 12px;
  }
  .footer-brand p { font-size: 13px; max-width: 100%; }
  .footer-col h5 { font-size: 10px; letter-spacing: 0.26em; margin-bottom: 14px; }
  .footer-col li, .footer-col a { font-size: 13px; }
  .footer-col ul { gap: 10px; }
  .footer-bottom {
    font-size: 11px;
    padding-top: 22px;
    text-align: center;
    flex-direction: column;
    gap: 10px;
  }
}

/* Very small phones — one more pass for tighter density */
@media (max-width: 420px) {
  section { padding: 56px 18px; }
  .hero { padding: 100px 18px 80px; }
  .hero h1 { font-size: clamp(42px, 13vw, 64px); }
  .hero-sub { font-size: 15px; }
  .hero-marquee-item { font-size: 15px; gap: 30px; }
  .hero-marquee-track { gap: 30px; }
  .section-head h2 { font-size: clamp(28px, 8vw, 40px); }
  .service-card { padding: 30px 22px; }
  .service-card h3 { font-size: clamp(24px, 7vw, 32px); }
  .testimonial { width: 270px; padding: 26px 22px; }
  .booking-card { padding: 24px 18px; }
  .gift-content h2 { font-size: clamp(26px, 7vw, 38px); }
  .tx-card, .tx-card.tx-tall { height: 240px; }
  .footer { padding: 48px 18px 24px; }
}

/* Reduce vertical stack jankiness on iPhone — anchor scrolling clearance */
@media (max-width: 760px) {
  html { scroll-padding-top: 70px; }
}
