/* ============================================================
   GARAGE HAIR CLUB - Awwwards-Level Editorial Experience
   Art Direction: Magazine meets Gallery meets Celine
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700&family=DM+Sans:wght@300;400;500;700&family=Permanent+Marker&display=swap');

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --bg-cream: #f7f3ee;
  --bg-dark: #1a1614;
  --bg-warm: #f0ebe3;
  --text-dark: #1a1614;
  --text-warm: #8b7355;
  --text-muted: #a39685;
  --accent-gold: #c4a265;
  --accent-rose: #b8877a;
  --white: #faf8f5;
  --border-light: rgba(196, 162, 101, 0.2);

  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-graffiti: 'Permanent Marker', cursive;

  --gutter: 5vw;
  --max-width: 1400px;
  --header-height: 80px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) var(--bg-cream);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Homepage: hero-marbella as fixed full-page background */
body.home-bg {
  background-color: #2a2a2e;
  background-image:
    linear-gradient(rgba(18, 18, 22, 0.6), rgba(18, 18, 22, 0.6)),
    image-set(
      url('../images/bg-salon-opt.webp') type('image/webp'),
      url('../images/bg-salon-opt.jpg') type('image/jpeg')
    );
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Subtle breathing light on the metal */
body.home-bg::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 35%, rgba(200, 200, 210, 0.04) 0%, transparent 70%);
  animation: metalBreathe 6s ease-in-out infinite alternate;
}

@keyframes metalBreathe {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}

/* iOS: scroll instead of fixed */
@supports (-webkit-touch-callout: none) {
  body.home-bg {
    background-attachment: scroll !important;
  }
}

/* Mobile: hide body background, use .bg-fixed element instead */
@media (max-width: 768px) {
  body.home-bg {
    background-image: none;
  }
}

/* Fixed background element - reliable on all mobile browsers */
.bg-fixed {
  display: none;
}

@media (max-width: 768px) {
  .bg-fixed {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image:
      linear-gradient(rgba(18, 18, 22, 0.6), rgba(18, 18, 22, 0.6)),
      image-set(
        url('../images/bg-salon-mobile.webp') type('image/webp'),
        url('../images/bg-salon-mobile.jpg') type('image/jpeg')
      );
    background-size: cover;
    background-position: center;
    pointer-events: none;
  }
}

body.home-bg::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: transparent;
}

/* Grain overlay */
body:not(.home-bg)::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10000;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
}

.home-bg :focus-visible {
  outline-color: rgba(212, 212, 220, 0.7);
}

::selection {
  background-color: var(--accent-gold);
  color: var(--bg-cream);
}

/* ============================================================
   Shared Typography
   ============================================================ */
.label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-warm);
  display: inline-block;
}

.section-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 18vw, 20rem);
  font-weight: 300;
  color: rgba(196, 162, 101, 0.04);
  line-height: 0.75;
  user-select: none;
  pointer-events: none;
}

.drop-cap::first-letter {
  font-family: var(--font-display);
  font-size: 4.5em;
  float: left;
  line-height: 0.72;
  margin-right: 0.08em;
  margin-top: 0.05em;
  color: var(--text-dark);
}

/* Gold accent line - grows from center */
.gold-line-h {
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  margin: 2rem auto;
  transition: width 1.4s var(--ease-out-expo);
}

.gold-line-h.visible {
  width: 80px;
}

/* ============================================================
   Reveal System
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

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

/* Staggered children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.6s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.7s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Line reveal - text clips in */
.line-reveal {
  overflow: hidden;
}

.line-reveal > span {
  display: block;
  transform: translateY(105%);
  transition: transform 0.8s var(--ease-out-expo);
}

.line-reveal.visible > span {
  transform: translateY(0);
}

.line-reveal.visible > span:nth-child(2) { transition-delay: 0.08s; }
.line-reveal.visible > span:nth-child(3) { transition-delay: 0.16s; }

/* Image reveal */
.img-reveal {
  overflow: hidden;
}

.img-reveal > * {
  transform: scale(1.15);
  opacity: 0;
  transition: transform 1.4s var(--ease-out-expo), opacity 0.8s ease;
}

.img-reveal.visible > * {
  transform: scale(1);
  opacity: 1;
}

/* ============================================================
   Cursor Follower
   ============================================================ */
.cursor-follower {
  position: fixed;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-gold);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  transition: transform 0.25s var(--ease-out-quart), opacity 0.3s ease,
              width 0.3s var(--ease-out-quart), height 0.3s var(--ease-out-quart);
  mix-blend-mode: difference;
}

.cursor-follower--visible {
  opacity: 0.7;
}

.cursor-follower--hover {
  width: 40px;
  height: 40px;
  opacity: 0.3;
}

/* ============================================================
   Header
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  padding-top: env(safe-area-inset-top, 0);
  height: calc(var(--header-height) + env(safe-area-inset-top, 0));
  background-color: transparent;
  transition: background-color 0.5s ease, backdrop-filter 0.5s ease;
}

.header--scrolled {
  background-color: rgba(247, 243, 238, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.home-bg .header--scrolled {
  background-color: rgba(40, 40, 45, 0.94);
}

.home-bg .header--scrolled .header__logo,
.home-bg .header--scrolled .header__nav a {
  color: #fff;
}

.home-bg .header--scrolled .hamburger span {
  background-color: #fff;
}

.header__logo {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: color 0.3s ease;
  position: relative;
  z-index: 1010;
}

.header--on-dark .header__logo,
.header--on-dark .header__nav a,
.header--on-dark .header__lang {
  color: var(--white);
}

.header--on-dark .hamburger span {
  background-color: var(--white);
}

.header--scrolled.header--on-dark .header__logo,
.header--scrolled.header--on-dark .header__nav a,
.header--scrolled.header--on-dark .header__lang {
  color: var(--text-dark);
}

.header--scrolled.header--on-dark .hamburger span {
  background-color: var(--text-dark);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.header__nav a,
.header__nav span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-dark);
  transition: color 0.3s ease, text-shadow 0.3s ease;
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.4s var(--ease-out-expo);
}

.header__nav a:hover::after {
  width: 100%;
}

.header__nav-cta {
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--accent-gold) !important;
  color: var(--accent-gold) !important;
  transition: background-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease !important;
  box-shadow:
    0 0 8px rgba(183, 152, 105, 0.4),
    0 0 20px rgba(183, 152, 105, 0.25),
    0 0 40px rgba(183, 152, 105, 0.15);
}

.header__nav-cta::after { display: none !important; }

.header__nav-cta:hover {
  background-color: var(--accent-gold) !important;
  color: var(--bg-cream) !important;
  box-shadow:
    0 0 12px rgba(183, 152, 105, 0.6),
    0 0 30px rgba(183, 152, 105, 0.4),
    0 0 60px rgba(183, 152, 105, 0.2);
}

.header__lang {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-warm);
  cursor: pointer;
}

/* ============================================================
   Hamburger
   ============================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  z-index: 1010;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  width: 24px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--text-dark);
  transition: transform 0.5s var(--ease-out-expo), opacity 0.3s ease;
  transform-origin: center;
}

.hamburger--open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger--open span:nth-child(2) { opacity: 0; transform: scale(0); }
.hamburger--open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

.hamburger--open {
  animation: hamburgerRotateIn 0.5s var(--ease-out-expo);
}

@keyframes hamburgerRotateIn {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(90deg); }
  100% { transform: rotate(0deg); }
}

/* ============================================================
   Mobile Nav
   ============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(30, 30, 34, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  padding: env(safe-area-inset-top, 0) 10vw env(safe-area-inset-bottom, 0) 10vw;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
}

/* Watermark behind menu */
.mobile-nav::before {
  content: 'GARAGE';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-body);
  font-size: clamp(5rem, 22vw, 12rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  max-width: 100vw;
  overflow: hidden;
}

.mobile-nav--open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 6vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding: 1.2rem 0;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  position: relative;
  display: block;
  width: auto;
  text-align: center;
  border-bottom: none;
  opacity: 0;
  transform: translateY(15px);
  z-index: 1;
}

/* Animated glow underline on each link */
.mobile-nav a::after {
  content: '';
  position: absolute;
  bottom: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: rgba(212, 212, 220, 0.5);
  box-shadow: 0 0 6px rgba(212, 212, 220, 0.3), 0 0 12px rgba(212, 212, 220, 0.15);
  transition: width 0.4s var(--ease-out-expo);
  animation: mobileNavGlowPulse 2.5s ease-in-out infinite;
}

.mobile-nav--open a::after {
  width: 60%;
}

@keyframes mobileNavGlowPulse {
  0%, 100% {
    box-shadow: 0 0 4px rgba(212, 212, 220, 0.2), 0 0 8px rgba(212, 212, 220, 0.1);
    opacity: 0.5;
  }
  50% {
    box-shadow: 0 0 8px rgba(212, 212, 220, 0.5), 0 0 16px rgba(212, 212, 220, 0.3);
    opacity: 1;
  }
}

/* Book link styled like nav-cta with gold border */
.mobile-nav a[href="#"] {
  border: 1px solid var(--accent-gold);
  padding: 0.8rem 2.5rem;
  margin: 0.8rem 0;
  color: var(--accent-gold);
  font-weight: 500;
  font-size: clamp(0.8rem, 3vw, 1rem);
  box-shadow:
    0 0 8px rgba(183, 152, 105, 0.3),
    0 0 20px rgba(183, 152, 105, 0.15);
  transition: background-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease,
              opacity 0.5s ease, transform 0.5s var(--ease-out-expo);
}

.mobile-nav a[href="#"]::after {
  display: none;
}

.mobile-nav a[href="#"]:hover,
.mobile-nav a[href="#"]:active {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  box-shadow:
    0 0 12px rgba(183, 152, 105, 0.5),
    0 0 30px rgba(183, 152, 105, 0.3);
  text-shadow: none;
}

.mobile-nav--open a {
  opacity: 1;
  transform: translateY(0);
  transition: color 0.3s ease, text-shadow 0.3s ease, opacity 0.5s ease, transform 0.5s var(--ease-out-expo);
}

.mobile-nav--open a:nth-child(2) { transition-delay: 0.05s; }
.mobile-nav--open a:nth-child(3) { transition-delay: 0.1s; }
.mobile-nav--open a:nth-child(4) { transition-delay: 0.15s; }
.mobile-nav--open a:nth-child(5) { transition-delay: 0.2s; }
.mobile-nav--open a:nth-child(6) { transition-delay: 0.25s; }

.mobile-nav a:hover,
.mobile-nav a:active {
  color: #fff;
  text-shadow:
    0 0 8px rgba(212, 212, 220, 0.5),
    0 0 20px rgba(212, 212, 220, 0.3);
}

.mobile-nav__label {
  font-family: var(--font-body);
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: rgba(212, 212, 220, 0.4);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 1;
}

.mobile-nav--open .mobile-nav__label {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HERO - Homepage
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter);
  width: 100%;
  text-align: center;
}

@keyframes neonPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

/* SVG stroke-draw animation */
.hero__svg-wrap {
  margin-bottom: 2rem;
}

.hero__svg {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow: visible;
}

.hero__svg--sub {
  max-width: 400px;
  margin-top: 0.5rem;
}

.hero__svg-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 90px;
  font-weight: 200;
  letter-spacing: 0.3em;
}

.hero__svg-text--stroke {
  fill: none;
  stroke: #fff;
  stroke-width: 0.8;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawStroke 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
  filter: drop-shadow(0 0 6px rgba(212, 212, 220, 0.4));
}

.hero__svg-text--fill {
  fill: #fff;
  opacity: 0;
  animation: fillReveal 0.5s ease 1.7s forwards;
  filter: drop-shadow(0 0 8px rgba(212, 212, 220, 0.3));
}

.hero__svg-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.55em;
}

.hero__svg-sub--stroke {
  fill: none;
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 0.5;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawStrokeSub 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1.5s forwards;
}

.hero__svg-sub--fill {
  fill: rgba(255, 255, 255, 0.6);
  opacity: 0;
  animation: fillReveal 0.4s ease 2.4s forwards;
}

@keyframes drawStroke {
  to { stroke-dashoffset: 0; }
}

@keyframes drawStrokeSub {
  to { stroke-dashoffset: 0; }
}

@keyframes fillReveal {
  to { opacity: 1; }
}

.hero__location {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: var(--accent-gold);
  position: absolute;
  right: var(--gutter);
  bottom: 30vh;
  writing-mode: vertical-rl;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 2.3s forwards;
}

.hero__gold-line {
  display: block;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 auto 2rem;
  animation: lineExpand 0.6s cubic-bezier(0.16, 1, 0.3, 1) 2.6s forwards;
}

@keyframes lineExpand {
  to { width: 80px; }
}

.hero__scroll {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(250, 248, 245, 0.5);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 2.6s forwards;
}

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

@keyframes lineGrow {
  to { width: min(120px, 20vw); }
}

/* ============================================================
   Philosophy
   ============================================================ */
.philosophy {
  position: relative;
  padding: clamp(3rem, 6vw, 6rem) var(--gutter);
  overflow: hidden;
  background: none;
}

/* Nav items bright on dark bg */
.home-bg .header__nav a {
  color: #fff;
}

.home-bg .header__nav a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.home-bg .header__lang {
  color: rgba(255, 255, 255, 0.7);
}

.home-bg .header__logo {
  color: #fff;
}

.home-bg .hamburger span {
  background-color: #fff;
}

/* All content above the fixed grain overlay (z-index: 0).
   header and mobile-nav are already position:fixed with z-index 1000/999,
   so they don't need this override — it would break their fixed positioning. */
.home-bg .hero,
.home-bg .philosophy,
.home-bg .about-story,
.home-bg .about-gallery,
.home-bg .cta,
.home-bg .footer {
  position: relative;
  z-index: 1;
}

/* All text: same neon cyan glow as GARAGE title */
.home-bg .philosophy__title,
.home-bg .about-story__title,
.home-bg .cta__title {
  color: #fff;
  text-shadow:
    0 0 7px #d4d4dc,
    0 0 20px #d4d4dc,
    0 0 42px #d4d4dc,
    0 0 82px #9a9aa2;
}

.home-bg .drop-cap::first-letter {
  color: #fff;
  text-shadow:
    0 0 7px #d4d4dc,
    0 0 20px #d4d4dc,
    0 0 42px #d4d4dc;
}

.home-bg .philosophy__pullquote,
.home-bg .about-story__pullquote {
  color: #fff;
  text-shadow:
    0 0 5px #d4d4dc,
    0 0 15px #d4d4dc,
    0 0 30px #9a9aa2;
  border-color: rgba(212, 212, 220, 0.2);
}

.home-bg .philosophy__body p,
.home-bg .philosophy__spread-text p,
.home-bg .phil-row__text p,
.home-bg .origins-row__right p,
.home-bg .origins-row__text-col p,
.home-bg .cta__subtitle {
  color: #fff;
  text-shadow:
    0 0 4px #d4d4dc,
    0 0 12px rgba(212, 212, 220, 0.5);
}

.home-bg .philosophy__label,
.home-bg .label,
.home-bg .cta__label {
  color: #fff;
  text-shadow:
    0 0 5px #d4d4dc,
    0 0 15px #d4d4dc;
}

.home-bg .section-number {
  color: rgba(212, 212, 220, 0.1);
  text-shadow: none;
}

.home-bg .origins-art__name {
  color: rgba(255,255,255,0.75);
  text-shadow: 0 0 6px rgba(212, 212, 220, 0.3);
  opacity: 1;
}

.home-bg .about-gallery__line {
  background: rgba(212, 212, 220, 0.2);
}

.home-bg .about-story__pullquote {
  border-color: rgba(212, 212, 220, 0.2);
}

/* Services page on dark bg */
.home-bg .services-intro,
.home-bg .services-list,
.home-bg .service-category {
  position: relative;
  z-index: 1;
}

.home-bg .services-intro__text {
  color: #fff;
  text-shadow:
    0 0 7px #d4d4dc,
    0 0 20px #d4d4dc,
    0 0 42px #d4d4dc;
}

.home-bg .service-category__title {
  color: #fff;
  text-shadow:
    0 0 7px #d4d4dc,
    0 0 20px #d4d4dc,
    0 0 42px #d4d4dc,
    0 0 82px #9a9aa2;
}

.home-bg .service-category__number {
  color: rgba(212, 212, 220, 0.2);
  text-shadow: 0 0 20px rgba(212, 212, 220, 0.3);
}

.home-bg .service-category__header {
  border-bottom-color: rgba(212, 212, 220, 0.3);
}

.home-bg .service-item__name {
  color: #fff;
  text-shadow:
    0 0 5px #d4d4dc,
    0 0 15px #d4d4dc,
    0 0 30px rgba(212, 212, 220, 0.5);
}

.home-bg .service-item__price {
  color: #dbb86a;
  font-weight: 600;
  text-shadow:
    0 0 8px rgba(219, 184, 106, 0.6),
    0 0 20px rgba(219, 184, 106, 0.4),
    0 0 40px rgba(219, 184, 106, 0.2);
}

.home-bg .service-item__detail p {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 0 4px rgba(212, 212, 220, 0.3);
}

.home-bg .service-item:hover {
  background: rgba(212, 212, 220, 0.05);
  border-left-color: #d4d4dc;
}

.home-bg .services-list__note {
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 0 4px rgba(212, 212, 220, 0.3);
}

.home-bg .hero__scroll,
.home-bg .hero__location {
  text-shadow: 0 0 10px #d4d4dc, 0 0 25px rgba(212, 212, 220, 0.4);
}

.home-bg .cta__btn {
  border-color: rgba(212, 212, 220, 0.5);
  color: #fff;
  text-shadow: 0 0 5px #d4d4dc;
}

.home-bg .cta__btn:hover {
  background: rgba(212, 212, 220, 0.15);
  border-color: #d4d4dc;
  color: #fff;
  box-shadow: 0 0 20px rgba(212, 212, 220, 0.3);
}

/* CTA on homepage - transparent, text already white */
.home-bg .cta {
  background: none;
}

@media (max-width: 768px) {
  .home-bg .cta {
    background: rgba(35, 35, 40, 0.92) !important;
    padding: clamp(3rem, 8vw, 5rem) var(--gutter) !important;
  }
}

.home-bg .cta__bg {
  display: none;
}

/* Second spread with CTA - all items same vertical level */
.philosophy__spread--second {
  align-items: center;
}

.philosophy__spread--second .philosophy__spread-art--left {
  align-self: center;
}

.philosophy__spread--second .philosophy__spread-art--right {
  align-self: center;
  margin-top: 0;
}

/* CTA in spread middle column */
.philosophy__spread-cta {
  text-align: center;
  align-self: center;
}

.philosophy__spread-cta .cta__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.philosophy__spread-cta .cta__subtitle {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.philosophy__spread-cta .cta__label {
  display: block;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .philosophy__spread-cta {
    padding: 1rem 0 2rem;
  }
}

/* Gold line on homepage */
.home-bg .gold-line-h {
  background: rgba(255,255,255,0.15);
}

.philosophy__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.philosophy__left {
  position: relative;
}

.philosophy__number {
  position: absolute;
  top: -4rem;
  left: -2rem;
}

.philosophy__label {
  margin-bottom: 1.5rem;
}

.philosophy__title {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.philosophy__body {
  padding-top: 2rem;
  font-size: 0.95rem;
  line-height: 1.85;
}

.philosophy__body p {
  margin-bottom: 1.5rem;
}

.philosophy__pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--text-warm);
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin: 2rem 0;
}

/* Philosophy spread - art + text woven together */
.philosophy__spread {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.6fr 1fr 0.6fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  max-width: var(--max-width);
  margin: clamp(4rem, 8vw, 6rem) auto 0;
  padding: 0 var(--gutter);
}

.philosophy__spread-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.philosophy__spread-art {
  position: relative;
  padding: 16px;
}

/* Neon line frame around art — thick, alive */
.home-bg .philosophy__spread-art::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border: 2px solid rgba(200, 200, 210, 0.6);
  box-shadow:
    0 0 10px rgba(200, 200, 210, 0.35),
    0 0 25px rgba(200, 200, 210, 0.15),
    0 0 50px rgba(200, 200, 210, 0.06),
    inset 0 0 10px rgba(200, 200, 210, 0.1);
  animation: neonFrame 4s ease-in-out infinite;
}

@keyframes neonFrame {
  0%, 100% {
    border-color: rgba(200, 200, 210, 0.35);
    box-shadow:
      0 0 6px rgba(200, 200, 210, 0.2),
      0 0 15px rgba(200, 200, 210, 0.08),
      0 0 35px rgba(200, 200, 210, 0.03),
      inset 0 0 6px rgba(200, 200, 210, 0.06);
  }
  50% {
    border-color: rgba(200, 200, 210, 0.8);
    box-shadow:
      0 0 14px rgba(200, 200, 210, 0.5),
      0 0 35px rgba(200, 200, 210, 0.2),
      0 0 60px rgba(200, 200, 210, 0.08),
      inset 0 0 14px rgba(200, 200, 210, 0.15);
  }
}

.philosophy__spread-art__frame {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* Inner glow border on art images */
.home-bg .philosophy__spread-art__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border: 1.5px solid rgba(212, 212, 220, 0.4);
  box-shadow:
    inset 0 0 12px rgba(212, 212, 220, 0.2),
    0 0 10px rgba(212, 212, 220, 0.2);
  animation: glowPulse 4s ease-in-out infinite 2s;
}

@keyframes glowPulse {
  0%, 100% {
    border-color: rgba(212, 212, 220, 0.25);
    box-shadow:
      inset 0 0 8px rgba(212, 212, 220, 0.12),
      0 0 8px rgba(212, 212, 220, 0.12);
  }
  50% {
    border-color: rgba(212, 212, 220, 0.65);
    box-shadow:
      inset 0 0 16px rgba(212, 212, 220, 0.3),
      0 0 16px rgba(212, 212, 220, 0.3);
  }
}

.art-label {
  display: block;
  margin-top: 0.6rem;
  text-align: right;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-style: italic;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75);
  text-shadow: 0 0 6px rgba(212, 212, 220, 0.3);
}

.art-signature {
  display: block;
  text-align: right;
  font-family: 'Permanent Marker', cursive;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
  text-shadow: 0 0 6px rgba(212, 212, 220, 0.25);
}

.philosophy__spread-art img,
.philosophy__spread-art video {
  display: block;
  width: 100%;
  object-fit: cover;
  transform: scale(1.25);
  filter: contrast(1.08) saturate(0.92) sepia(0.06) brightness(1.02);
  transition: transform 1.4s var(--ease-out-expo);
}

.philosophy__spread-art:hover img,
.philosophy__spread-art:hover video {
  transform: scale(1.28);
}

.philosophy__spread-art--left {
  margin-left: calc(var(--gutter) * -1);
  align-self: start;
}

.philosophy__spread-art--left img,
.philosophy__spread-art--left video {
  aspect-ratio: 3/4;
  object-position: center 30%;
}

.philosophy__spread-art--right {
  margin-right: calc(var(--gutter) * -1);
  align-self: end;
  margin-top: 4rem;
}

.philosophy__spread-art--right img,
.philosophy__spread-art--right video {
  aspect-ratio: 2/3;
  object-position: center 65%;
}

/* Mobile spread rules moved to main responsive block below */

/* ============================================================
   Origins Editorial Layout
   ============================================================ */

/* Shared art frame - crops away physical frames via scale + film grain */
/* About page art - zigzag neon outer frame */
.origins-art {
  position: relative;
  padding: 16px;
}

.home-bg .origins-art::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(200, 200, 210, 0.5);
  box-shadow:
    0 0 8px rgba(200, 200, 210, 0.25),
    0 0 20px rgba(200, 200, 210, 0.1),
    inset 0 0 8px rgba(200, 200, 210, 0.08);
  animation: neonFrame 3s ease-in-out infinite;
}

.origins-art__frame {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* Animated blue glow border on about page art */
.home-bg .origins-art__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(212, 212, 220, 0.3);
  box-shadow:
    inset 0 0 8px rgba(212, 212, 220, 0.15),
    0 0 8px rgba(212, 212, 220, 0.15);
  animation: glowPulse 3s ease-in-out infinite;
}

.origins-art__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  background-size: 150px;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
  opacity: 0.5;
}

.origins-art__frame img,
.origins-art__frame video {
  display: block;
  width: 100%;
  object-fit: cover;
  transform: scale(1.15);
  filter: contrast(1.08) saturate(0.9) sepia(0.08) brightness(1.02);
  transition: transform 1.4s var(--ease-out-expo);
}

.origins-art__frame:hover img,
.origins-art__frame:hover video {
  transform: scale(1.2);
}

.origins-art__name {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-style: italic;
  letter-spacing: 0.15em;
  color: var(--text-warm);
  opacity: 0.5;
  margin-top: 0.8rem;
  text-align: right;
}

/* Row: Intro (title + first paragraph) */
.origins-row--intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Row: Monaco - contained cinematic */
.origins-art--bleed {
  margin: clamp(3rem, 6vw, 5rem) auto;
  max-width: 720px;
  padding: 0 var(--gutter);
}

.origins-art--bleed .origins-art__frame {
  aspect-ratio: 16/10;
}

.origins-art--bleed .origins-art__frame img,
.origins-art--bleed .origins-art__frame video {
  height: 100%;
  object-position: center 55%;
}

/* Row: Split - text left, Olivia right */
.origins-row--split {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 5rem) var(--gutter);
}

.origins-art--portrait {
  max-width: 380px;
  transform: translateY(-3rem);
  margin-right: -4%;
  margin-left: auto;
}

.origins-art--portrait .origins-art__frame img {
  aspect-ratio: 2/3;
  object-position: center 25%;
}

/* Row: Reverse - Simple Melody left, text right */
.origins-row--reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 3rem) var(--gutter);
}

.origins-art--offset {
  max-width: 380px;
  margin-left: -6%;
  transform: translateY(2rem);
}

.origins-art--offset .origins-art__frame img {
  aspect-ratio: 3/4;
  object-position: center 40%;
}

/* Text column styling */
.origins-row__text-col p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark);
  max-width: 520px;
}

.origins-row__right p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark);
  max-width: 520px;
}

@media (max-width: 768px) {
  .origins-row--intro,
  .origins-row--split,
  .origins-row--reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .origins-art--portrait,
  .origins-art--offset {
    transform: none;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }

  .origins-art--bleed {
    padding: 0 var(--gutter);
  }
}

/* ============================================================
   CTA Section
   ============================================================ */
.cta {
  position: relative;
  padding: clamp(8rem, 15vw, 16rem) var(--gutter);
  text-align: center;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}

.cta__inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta__label {
  color: var(--accent-gold);
  display: block;
  margin-bottom: 1.5rem;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.cta__subtitle {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(250, 248, 245, 0.7);
  margin-bottom: 2.5rem;
}

.cta__btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--bg-cream);
  padding: 1rem 2.5rem;
  border: 1px solid var(--accent-gold);
  background: transparent;
  transition: background-color 0.4s ease, color 0.4s ease, transform 0.3s ease;
}

.cta__btn:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background-color: #222226;
  background-image: none;
  background-size: cover;
  background-position: center;
  padding: clamp(1.5rem, 3vw, 2rem) var(--gutter) 1rem;
  position: relative;
  overflow: hidden;
}

/* GARAGE wordmark in footer */
.footer__wordmark {
  text-align: center;
  margin-bottom: 1rem;
}

.footer__wordmark-text {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.06);
  display: inline-block;
}

/* Cyan glow top border */
.footer__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 212, 220, 0.4), transparent);
  box-shadow: 0 0 8px rgba(212, 212, 220, 0.2), 0 -2px 15px rgba(212, 212, 220, 0.1);
  margin-bottom: 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto 1.5rem;
}

@media (min-width: 1025px) {
  .footer__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer__col p,
.footer__col a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  display: block;
  transition: color 0.3s ease;
}

.footer__col a:hover {
  color: #fff;
}

.footer__social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.3rem;
}

.footer__social-icon {
  position: relative;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  display: inline-block;
  color: rgba(255, 255, 255, 0.85) !important;
  transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.footer__social-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.85);
}

.footer__social-icon:hover {
  border-color: rgba(212, 212, 220, 0.6);
  color: #fff !important;
  background: rgba(212, 212, 220, 0.1);
  box-shadow: 0 0 8px rgba(212, 212, 220, 0.3), 0 0 16px rgba(212, 212, 220, 0.15);
}

.footer__back-top {
  text-align: center;
  margin-bottom: 1rem;
}

.footer__back-top a {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer__back-top a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer__bottom-logo {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.footer__copy {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-intro {
  padding: calc(var(--header-height) + clamp(2rem, 4vw, 4rem)) var(--gutter) clamp(2rem, 4vw, 4rem);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.services-intro__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-warm);
}

.services-list {
  padding: 0 var(--gutter) clamp(4rem, 8vw, 7rem);
  max-width: 900px;
  margin: 0 auto;
}

.service-category {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
}

.service-category__header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  z-index: 1;
}

.service-category__number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: rgba(196, 162, 101, 0.15);
  line-height: 1;
}

.service-category__title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--text-dark);
}

.service-item {
  padding: 1rem 0 1rem 1.5rem;
  border-left: 2px solid transparent;
  transition: border-color 0.3s ease, background-color 0.3s ease, padding-left 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-item:hover {
  border-left-color: var(--accent-gold);
  background: rgba(196, 162, 101, 0.03);
  padding-left: 2rem;
}

.service-item__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.3rem;
}

.service-item__name {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dark);
}

.service-item__price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--accent-gold);
  white-space: nowrap;
  margin-left: 1rem;
}

.service-item__detail p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-warm);
}

.services-list__note {
  font-size: 0.8rem;
  color: var(--text-warm);
  text-align: center;
  margin-top: 3rem;
  font-style: italic;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
/* About Story - Magazine Column Layout */
.about-story {
  padding: calc(var(--header-height) + clamp(3rem, 6vw, 6rem)) 0 clamp(3rem, 6vw, 6rem);
}

.about-story__number {
  position: absolute;
  top: -3rem;
  left: -2rem;
}

.about-story__label {
  margin-bottom: 1.5rem;
}

.about-story__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
}

.about-story__pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--text-warm);
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin: 2rem 0;
  column-span: all;
}

/* About Gallery - Varied overlapping layout */
.about-gallery {
  padding: calc(var(--header-height) + clamp(2rem, 4vw, 4rem)) var(--gutter) clamp(4rem, 8vw, 8rem);
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-gallery__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.about-gallery__line {
  flex: 1;
  height: 1px;
  background: var(--border-light);
}

.about-gallery__intro {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-warm);
  max-width: 600px;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.home-bg .about-gallery__intro {
  color: rgba(255, 255, 255, 0.75);
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/* Space page mosaic - 1 video + 2 images per row */
.space-mosaic {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.space-mosaic__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 45vw;
  max-height: 570px;
}

/* Video takes full left column height */
.space-mosaic__row .space-mosaic__video {
  grid-row: 1 / 3;
}

/* Flipped: video on the right */
.space-mosaic__row--flip {
  grid-template-columns: 1fr 1.2fr;
}

.space-mosaic__row--flip .space-mosaic__video {
  grid-column: 2;
  grid-row: 1 / 3;
}

.space-mosaic__row--flip .space-mosaic__item:not(.space-mosaic__video):first-child {
  grid-column: 1;
  grid-row: 1;
}

.space-mosaic__row--flip .space-mosaic__item:not(.space-mosaic__video):nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.space-mosaic__item {
  overflow: hidden;
  position: relative;
}

.home-bg .space-mosaic__item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(212, 212, 220, 0.3);
  box-shadow:
    inset 0 0 8px rgba(212, 212, 220, 0.15),
    0 0 8px rgba(212, 212, 220, 0.15);
  animation: glowPulse 3s ease-in-out infinite;
}

.space-mosaic__item img,
.space-mosaic__item video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo);
}

.space-mosaic__item:hover img,
.space-mosaic__item:hover video {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .space-mosaic__row {
    height: 60vw;
  }
}

@media (max-width: 480px) {
  .space-mosaic__row,
  .space-mosaic__row--flip {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.4fr 1fr;
    height: auto;
  }

  .space-mosaic__row .space-mosaic__video,
  .space-mosaic__row--flip .space-mosaic__video {
    grid-column: 1 / -1;
    grid-row: 1;
    height: 55vw;
  }

  .space-mosaic__row--flip .space-mosaic__item:not(.space-mosaic__video):first-child {
    grid-column: 1;
    grid-row: 2;
  }

  .space-mosaic__row--flip .space-mosaic__item:not(.space-mosaic__video):nth-child(2) {
    grid-column: 2;
    grid-row: 2;
  }

  .space-mosaic__row .space-mosaic__item:not(.space-mosaic__video) {
    height: 35vw;
  }
}

/* ============================================================
   PARALLAX UTILITY
   ============================================================ */
.parallax-img {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .philosophy__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

}

@media (max-width: 768px) {
  :root {
    --gutter: 5vw;
    --header-height: 50px;
  }

  .header__nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  /* Mobile: scroll instead of fixed for performance */
  body.home-bg {
    background-attachment: scroll !important;
  }

  /* Hero: no image, just title on background */
  .hero {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: calc(var(--header-height) + 0.5rem) var(--gutter) 1.5rem !important;
    display: block !important;
    overflow: visible !important;
  }

  .hero__location,
  .hero__scroll,
  .hero__gold-line {
    display: none !important;
  }

  .hero__content {
    padding: 0 !important;
    position: static !important;
  }


  /* Disable grain overlay on mobile for performance */
  body::after {
    display: none !important;
  }

  /* Slim header on mobile */
  .header {
    padding: 0 4vw;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .header__logo {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
  }

  /* Stacked layout for philosophy spread on mobile */
  .philosophy__spread {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: clamp(2.5rem, 6vw, 4rem);
    padding: 0;
  }

  /* Hide right-side videos on mobile — keep only video 1 + video 3 */
  .philosophy__spread-art--right {
    display: none;
  }

  /* Remaining videos: full-width with frame */
  .philosophy__spread-art--left {
    max-width: 100%;
    margin: 0;
    padding: 10px;
  }

  /* Text keeps side padding */
  .philosophy__spread-text,
  .philosophy__spread-cta {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  .philosophy__spread--second {
    align-items: stretch;
    margin-top: clamp(2.5rem, 6vw, 4rem);
  }

  /* Proper touch targets for service items */
  .service-item {
    padding: 1rem 0 1rem 1.2rem;
    min-height: 44px;
  }

  .philosophy__spread-cta {
    text-align: center;
    padding: 1.5rem 0;
  }

  .philosophy__spread-cta .cta__title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  /* Space page on mobile */
  .about-gallery {
    padding: calc(var(--header-height) + 2rem) 0 0;
    max-width: none;
  }

  .about-gallery__header {
    padding: 0 var(--gutter);
    margin-bottom: 1rem;
  }

  .about-gallery__intro {
    padding: 0 var(--gutter);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
  }

  .space-mosaic {
    gap: 2px;
  }

  /* Space page rows: video on top, 2 images side by side below */
  .space-mosaic__row,
  .space-mosaic__row--flip {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    height: auto;
    max-height: none;
  }

  .space-mosaic__row .space-mosaic__video,
  .space-mosaic__row--flip .space-mosaic__video {
    grid-column: 1 / -1;
    grid-row: 1;
    height: 60vw;
  }

  .space-mosaic__row--flip .space-mosaic__video {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .space-mosaic__row .space-mosaic__item:not(.space-mosaic__video),
  .space-mosaic__row--flip .space-mosaic__item:not(.space-mosaic__video) {
    height: 40vw;
  }

  .space-mosaic__row--flip .space-mosaic__item:not(.space-mosaic__video):first-child {
    grid-column: 1;
    grid-row: 2;
  }

  .space-mosaic__row--flip .space-mosaic__item:not(.space-mosaic__video):nth-child(2) {
    grid-column: 2;
    grid-row: 2;
  }

  /* Remove glow borders on mobile - too heavy */
  .home-bg .space-mosaic__item::before {
    border-width: 0.5px;
    box-shadow: none;
  }

  /* Remove frame padding on homepage spread videos, keep for origins art */
  .philosophy__spread-art {
    padding: 0;
  }

  /* Cinematic letterbox — dark bars top/bottom of videos */
  .philosophy__spread-art__frame {
    box-shadow:
      inset 0 28px 18px -6px rgba(0, 0, 0, 0.6),
      inset 0 -28px 18px -6px rgba(0, 0, 0, 0.6);
  }
  .origins-art {
    padding: 10px;
  }

  /* Subtle neon frame on mobile — keep glow but no filter */
  .home-bg .philosophy__spread-art::after,
  .home-bg .origins-art::after {
    filter: none;
  }

  /* CTA compact on mobile */
  .cta {
    padding: clamp(3rem, 8vw, 5rem) var(--gutter);
  }

  /* Origins rows on about page */
  .origins-row--split,
  .origins-row--reverse {
    gap: 2rem;
  }

  .philosophy__number {
    position: relative;
    top: auto;
    left: auto;
    font-size: clamp(5rem, 15vw, 8rem);
  }

  /* Compact footer on mobile */
  .footer {
    padding: 1rem 4vw 0.5rem;
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0));
  }

  .footer__wordmark {
    display: none;
  }

  .footer__divider {
    display: none;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 1rem;
    margin-bottom: 0.6rem;
  }

  .footer__col h4 {
    font-size: 0.55rem;
    margin-bottom: 0.1rem;
  }

  .footer__col p,
  .footer__col a {
    font-size: 0.7rem;
    line-height: 1.4;
  }

  .footer__social {
    gap: 0.4rem;
    margin-top: 0.1rem;
  }

  .footer__social-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-color: rgba(255, 255, 255, 0.5);
  }

  .footer__social-icon svg {
    width: 14px;
    height: 14px;
    fill: #fff;
  }

  .footer__back-top {
    margin-bottom: 0.2rem;
  }

  .footer__back-top a {
    font-size: 0.6rem;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    text-align: left;
    padding-top: 0.3rem;
  }

  .footer__bottom-logo,
  .footer__copy {
    font-size: 0.6rem;
  }

  /* Mobile content spacing */
  .philosophy {
    padding: clamp(3rem, 8vw, 6rem) var(--gutter);
  }

  .about-story {
    padding: calc(var(--header-height) + clamp(3rem, 8vw, 6rem)) 0 clamp(2rem, 4vw, 3rem);
  }

  /* Snappier mobile animations */
  .reveal {
    transform: translateY(20px);
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .reveal-stagger > * {
    transform: translateY(15px);
    transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .img-reveal > * {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
  }

  .line-reveal > span {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .gold-line-h {
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  /* Faster mobile nav */
  .mobile-nav {
    transition: opacity 0.25s ease;
  }

  .hamburger span {
    transition: transform 0.25s var(--ease-out-expo), opacity 0.15s ease;
  }

  .hamburger--open {
    animation: hamburgerRotateIn 0.25s var(--ease-out-expo);
  }

  .mobile-nav--open a {
    transition: color 0.3s ease, text-shadow 0.3s ease, opacity 0.25s ease, transform 0.25s var(--ease-out-expo);
  }

  .mobile-nav--open a:nth-child(2) { transition-delay: 0.03s; }
  .mobile-nav--open a:nth-child(3) { transition-delay: 0.06s; }
  .mobile-nav--open a:nth-child(4) { transition-delay: 0.09s; }
  .mobile-nav--open a:nth-child(5) { transition-delay: 0.12s; }
  .mobile-nav--open a:nth-child(6) { transition-delay: 0.15s; }

  /* Hide Languages and Area Served on mobile (SEO content stays in HTML) */
  .footer__col:nth-child(3) {
    display: none;
  }

  .footer__area {
    display: none;
  }

  /* Tap targets for footer links */
  .footer__col a {
    padding: 4px 0;
    display: block;
  }

  /* Services accordion on mobile */
  .service-category__header {
    cursor: pointer;
    min-height: 56px;
    align-items: center;
    margin-bottom: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
  }

  .service-category__header::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 1.5px solid var(--accent-gold);
    border-bottom: 1.5px solid var(--accent-gold);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-left: auto;
    flex-shrink: 0;
  }

  .service-category--open .service-category__header::after {
    transform: rotate(-135deg);
  }

  .service-category--open .service-category__header {
    border-bottom-color: var(--accent-gold);
  }

  .service-category__items {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  .service-category--open .service-category__items {
    max-height: 2000px;
    transition: max-height 0.4s ease-in;
  }

  .service-category {
    margin-bottom: 0;
    border-bottom: 1px solid var(--border-light);
  }

}

@media (max-width: 480px) {
  :root {
    --header-height: 44px;
  }

  .section-number {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .philosophy__title {
    font-size: clamp(1.6rem, 7vw, 2.5rem);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1rem;
  }

  .footer__social {
    justify-content: flex-start;
  }

  .services-intro {
    padding: calc(var(--header-height) + clamp(2rem, 5vw, 3rem)) var(--gutter) clamp(2rem, 5vw, 3rem);
  }

  .service-category__title {
    font-size: clamp(1rem, 4.5vw, 1.4rem);
  }

  .service-category__number {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .service-category__header {
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
  }

  .service-item {
    padding: 0.7rem 0 0.7rem 1rem;
  }

  .service-item__name {
    font-size: 0.9rem;
  }

  .service-item__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }

  .service-item__price {
    font-size: 0.95rem;
    margin-left: 0;
  }

  .service-item__detail p {
    font-size: 0.9rem;
  }

  .label {
    font-size: 0.7rem;
  }

  .cta__title {
    font-size: clamp(1.6rem, 7vw, 2.5rem);
  }

  .cta__subtitle {
    font-size: 0.8rem;
  }

  .mobile-nav a {
    font-size: clamp(1rem, 4.5vw, 1.5rem);
    padding: 0.7rem 0;
  }

  .origins-row--intro {
    padding: 0 var(--gutter);
  }

  .about-story__number {
    position: relative;
    top: auto;
    left: auto;
  }

  .about-story__title {
    font-size: clamp(1.6rem, 7vw, 2.5rem);
  }

  .about-story__pullquote {
    font-size: clamp(1rem, 4vw, 1.3rem);
  }

  .drop-cap::first-letter {
    font-size: 3.2em;
  }

  /* Art labels on mobile */
  .art-label {
    font-size: 0.5rem;
  }

  .art-signature {
    font-size: 0.7rem;
  }

  .origins-art__name {
    font-size: 0.55rem;
  }

  @media (hover: none) {
    .service-item:hover {
      padding-left: 1rem;
    }
  }

  /* Typography rebalance for readability */
  body {
    font-size: clamp(0.9rem, 3.5vw, 1rem);
    line-height: 1.7;
  }
}

/* Small phones (iPhone SE, etc.) */
@media (max-width: 375px) {
  .philosophy__spread {
    gap: 0.8rem;
  }

  .philosophy__spread-cta .cta__title {
    font-size: clamp(1rem, 4.5vw, 1.5rem);
  }

  .philosophy__spread-cta .cta__subtitle {
    font-size: 0.7rem;
    margin-bottom: 1rem;
  }

  .philosophy__spread-cta .cta__btn {
    font-size: 0.6rem;
    padding: 0.7rem 1.5rem;
  }

  .mobile-nav a {
    font-size: 1rem;
    padding: 0.6rem 0;
  }
}

/* ============================================================
   TOUCH DEVICES - Replace hover with active states
   ============================================================ */
@media (hover: none) {
  .service-item:hover {
    border-left-color: transparent;
    background: transparent;
    padding-left: 1.5rem;
  }

  .service-item:active {
    background: rgba(196, 162, 101, 0.06);
    transition: background-color 0.15s ease;
  }

  .philosophy__spread-art:hover .philosophy__spread-art__frame video,
  .philosophy__spread-art:hover .philosophy__spread-art__frame img {
    transform: none;
  }

  .space-mosaic__item:hover video,
  .space-mosaic__item:hover img {
    transform: none;
  }

  .footer__social-icon:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: transparent;
    box-shadow: none;
  }

  .footer__social-icon:active {
    transform: scale(0.92);
    opacity: 0.7;
    transition: transform 0.15s ease, opacity 0.15s ease;
  }

  .footer__col a:hover {
    color: rgba(255, 255, 255, 0.75);
  }

  .footer__col a:active {
    color: #fff;
  }

  .header__nav a:hover::after {
    width: 0;
  }
}

/* ============================================================
   FLOATING BOOK CTA (Mobile Only)
   ============================================================ */
.floating-cta {
  display: none;
}

@media (max-width: 768px) {
  .floating-cta {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    z-index: 990;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
  }

  .floating-cta--visible {
    opacity: 1;
    pointer-events: all;
  }

  .floating-cta--hidden {
    transform: translateX(-50%) translateY(80px);
    opacity: 0;
    pointer-events: none;
  }

  .floating-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 2rem;
    background: var(--accent-gold);
    color: var(--bg-dark);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-radius: 24px;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    -webkit-tap-highlight-color: transparent;
  }

  .floating-cta__btn:active {
    transform: scale(0.96);
    transition: transform 0.1s ease;
  }

  /* Hide when mobile nav is open */
  body.nav-open .floating-cta {
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   TYPEWRITER ANIMATION
   ============================================================ */
.typewriter {
  position: relative;
}

.typewriter--cursor::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 0.85em;
  background: currentColor;
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: typewriterBlink 0.7s step-end infinite;
  opacity: 0.7;
}

.typewriter--done::after {
  animation: typewriterBlink 0.7s step-end 3;
  animation-fill-mode: forwards;
}

@keyframes typewriterBlink {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 0; }
}

/* ============================================================
   HERO BOOK BUTTON
   ============================================================ */
/* Book button */
.hero__book-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.8rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(10px);
  animation: btnReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) 2.8s forwards;
}

@keyframes btnReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__book-btn:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .hero__book-btn {
    font-size: 0.7rem;
    padding: 0.8rem 2rem;
    min-height: 44px;
    animation: none;
    opacity: 1;
  }
}

/* ============================================================
   IMG-BG Utility (background image containers)
   ============================================================ */
.img-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============================================================
   MAP EMBED (about page)
   ============================================================ */
.map-embed {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}
.map-embed iframe {
  border-radius: 2px;
}

/* SEO: locality note (sits above footer, muted text out of brand-critical positions) */
.locality-note {
  position: relative;
  z-index: 1;
  padding: 3.5rem 2rem 1.5rem;
  text-align: center;
}
.locality-note p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.42);
  max-width: 60ch;
  margin: 0 auto;
  letter-spacing: 0.02em;
}
.footer__area {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 0.75rem;
  max-width: 26ch;
  line-height: 1.5;
}

/* SEO: language switcher link state */
.header__lang a {
  color: inherit;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.header__lang a:hover {
  opacity: 1;
}
.header__lang a::after {
  display: none !important;
}
.home-bg .header__lang a {
  color: #fff;
}
.home-bg .header__lang a:hover {
  text-shadow: none;
  opacity: 1;
}
.mobile-nav__lang {
  margin-top: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
}
.mobile-nav__lang:hover {
  opacity: 1;
}

/* SEO: services FAQ section (white-on-dark, matches body.home-bg salon background) */
.services-faq {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 6rem auto 4rem;
  padding: 0 2rem;
}
.services-faq__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.services-faq__header .label {
  display: block;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.6);
}
.services-faq__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 300;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
  text-shadow:
    0 0 4px #d4d4dc,
    0 0 12px rgba(212, 212, 220, 0.4);
}
.services-faq__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.services-faq__item {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(196, 162, 101, 0.25);
}
.services-faq__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.services-faq__question {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  margin: 0 0 0.85rem;
  letter-spacing: -0.005em;
}
.services-faq__answer {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 65ch;
}
.services-faq__answer a {
  color: var(--accent-gold);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.services-faq__answer a:hover {
  color: #fff;
}
@media (max-width: 600px) {
  .services-faq {
    margin: 4rem auto 3rem;
  }
  .services-faq__header {
    margin-bottom: 2.5rem;
  }
  .services-faq__list {
    gap: 1.75rem;
  }
}

/* ============================================
   Services page: duration, subgroups, tabs, add-ons, coming-soon
   Added 2026-04-20 for services + beauty menu rebuild
   ============================================ */

.service-item__title {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.service-item__duration {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.service-category__note {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-warm);
    max-width: 52ch;
    margin: 0.5rem 0 2rem;
    line-height: 1.55;
}

.service-subgroup {
    margin-top: 2.5rem;
}

.service-subgroup:first-child {
    margin-top: 0.5rem;
}

.service-subgroup__label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    display: block;
    padding-bottom: 0.7rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-light);
}

.service-subgroup__note {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-muted);
    margin: -0.5rem 0 1.25rem;
}

.service-addon-grid {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.service-addon-grid__label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 1rem;
}

.service-addon-grid__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--white);
}

.service-addon-grid__row:last-child {
    border-bottom: none;
}

.service-addon-grid__extra {
    color: var(--accent-gold);
    font-weight: 400;
}

.services-tabs {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    margin: 0 auto 3rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    max-width: 960px;
}

.services-tabs__link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.25s ease;
    border-bottom: 1px solid transparent;
    margin-bottom: -1px;
}

.services-tabs__link:hover {
    color: var(--white);
}

.services-tabs__link--active {
    color: var(--white);
    font-weight: 500;
    border-bottom-color: var(--accent-gold);
}

.services-coming-soon {
    margin: 5rem auto 2rem;
    padding: 2rem;
    max-width: 720px;
    border: 1px solid var(--border-light);
    text-align: center;
}

.services-coming-soon__label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 1rem;
}

.services-coming-soon__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.services-coming-soon__text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 48ch;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .services-tabs {
        gap: 1.5rem;
    }
    .services-tabs__link {
        font-size: 0.75rem;
        letter-spacing: 0.25em;
    }
}

/* ============================================================
   HOMEPAGE MINIMAL PHILOSOPHY - single centered title
   ============================================================ */
.philosophy--minimal .philosophy__inner {
    grid-template-columns: 1fr;
    text-align: center;
}

.philosophy--minimal .philosophy__left {
    max-width: 820px;
    margin: 0 auto;
}

/* ============================================================
   SERVICES PAGE - silver text overrides (only prices stay gold)
   ============================================================ */
.home-bg .service-subgroup__label,
.home-bg .service-addon-grid__label,
.home-bg .services-coming-soon__label {
    color: #d4d4dc;
    text-shadow: 0 0 8px rgba(212, 212, 220, 0.45);
}

.home-bg .services-faq__answer a {
    color: #fff;
    text-shadow: 0 0 6px rgba(212, 212, 220, 0.5);
    text-decoration: underline;
    text-decoration-color: rgba(212, 212, 220, 0.4);
    text-underline-offset: 3px;
}

.home-bg .services-faq__answer a:hover {
    color: #fff;
    text-decoration-color: #d4d4dc;
}
