/* ============================================================
   HAIRPERFECTION BY LATIFA — Editorial Luxury Design System
   ============================================================ */

/* ---------- 1. RESET & ROOT ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

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

:root {
  /* Color tokens — derived from the brand logo */
  --c-ivory:        #FAF6F0;
  --c-ivory-warm:   #F4ECE0;
  --c-cream:        #ECE2D1;
  --c-champagne:    #D9C5A8;
  --c-bronze:       #B8946D;
  --c-bronze-deep:  #9C7C5E;
  --c-mocha:        #6F5439;
  --c-espresso:     #3D2C1C;
  --c-ink:          #1B130C;
  --c-line:         rgba(156, 124, 94, 0.22);
  --c-line-soft:    rgba(156, 124, 94, 0.12);

  /* Typography */
  --f-serif: "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
  --f-sans:  "Inter", "Helvetica Neue", system-ui, -apple-system, sans-serif;
  --f-script: "Italianno", "Petit Formal Script", cursive;
  --f-mono:  "Inter", monospace;

  /* Type scale (fluid) */
  --t-2xs: clamp(0.72rem, 0.69rem + 0.18vw, 0.82rem);
  --t-xs:  clamp(0.78rem, 0.74rem + 0.22vw, 0.92rem);
  --t-sm:  clamp(0.88rem, 0.84rem + 0.22vw, 1rem);
  --t-base:clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  --t-lg:  clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --t-xl:  clamp(1.5rem, 1.25rem + 1vw, 2.5rem);
  --t-2xl: clamp(2rem, 1.5rem + 2vw, 4rem);
  --t-3xl: clamp(2.4rem, 1.6rem + 3.2vw, 6.5rem);
  --t-4xl: clamp(3rem, 1.8rem + 4.6vw, 9rem);
  --t-display: clamp(4rem, 2.4rem + 6.8vw, 14rem);

  /* Spacing */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;
  --s-11: 10rem;
  --s-12: 14rem;

  /* Layout */
  --container: min(100% - 3rem, 1500px);
  --container-tight: min(100% - 3rem, 1180px);
  --container-narrow: min(100% - 3rem, 820px);

  /* Motion */
  --ease-out-cinema: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-luxe: cubic-bezier(0.65, 0.05, 0.36, 1);
  --ease-in-out: cubic-bezier(0.83, 0, 0.17, 1);

  /* Misc */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
}

@property --fill {
  syntax: '<percentage>';
  initial-value: 0%;
  inherits: false;
}

html, body {
  background: var(--c-ivory);
  color: var(--c-espresso);
  font-family: var(--f-sans);
  font-size: var(--t-base);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

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

button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

::selection {
  background: var(--c-bronze);
  color: var(--c-ivory);
}

/* ---------- 2. TYPOGRAPHY ---------- */
.eyebrow {
  font-family: var(--f-sans);
  font-size: var(--t-2xs);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-bronze-deep);
}

.eyebrow .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--c-bronze);
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 0.8em 0.18em 0;
}

h1, h2, h3, h4 {
  font-family: var(--f-serif);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.02;
  color: var(--c-espresso);
}

h1 { font-size: var(--t-4xl); }
h2 { font-size: var(--t-3xl); }
h3 { font-size: var(--t-xl); }
h4 { font-size: var(--t-lg); }

.serif-italic {
  font-style: italic;
  font-family: var(--f-serif);
  color: var(--c-bronze);
}

.script {
  font-family: var(--f-script);
  font-style: normal;
  font-weight: 400;
  color: var(--c-bronze);
}

p { line-height: 1.75; color: var(--c-espresso); }
.muted { color: var(--c-mocha); }
.dim { opacity: 0.65; }

/* ---------- 3. LAYOUT ---------- */
.container       { width: var(--container); margin: 0 auto; }
.container-tight { width: var(--container-tight); margin: 0 auto; }
.container-narrow{ width: var(--container-narrow); margin: 0 auto; }

section {
  position: relative;
  padding: var(--s-11) 0;
}

@media (max-width: 768px) {
  section { padding: var(--s-9) 0; }
}

.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-5);
  align-items: end;
  margin-bottom: var(--s-8);
}

@media (max-width: 768px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: var(--s-3);
  }
}

/* ---------- 4. CUSTOM CURSOR ---------- */
.cursor,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-50%, -50%, 0);
  mix-blend-mode: difference;
}

.cursor {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transition: width 0.32s var(--ease-luxe), height 0.32s var(--ease-luxe), background 0.32s var(--ease-luxe), border-color 0.32s var(--ease-luxe);
}

.cursor-dot {
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
}

.cursor.is-hover {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.85);
}

@media (hover: none), (max-width: 1024px) {
  .cursor, .cursor-dot { display: none; }
}

/* ---------- 5. LOADER ---------- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--c-ink);
  z-index: 10000;
  display: grid;
  place-items: center;
  transition: opacity 0.9s var(--ease-luxe), visibility 0.9s var(--ease-luxe);
  overflow: hidden;
}

.loader::before {
  content: '';
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 30% 40%, rgba(184, 148, 109, 0.18), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(217, 197, 168, 0.10), transparent 55%);
  pointer-events: none;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
}

.loader-shell {
  text-align: center;
  width: min(90%, 520px);
  position: relative;
  z-index: 1;
}

.loader-mark {
  position: relative;
  display: inline-block;
  width: min(72vw, 420px);
  aspect-ratio: 1300 / 920;
}

.loader-mark .logo-ghost,
.loader-mark .logo-real {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/logo.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.loader-mark .logo-ghost {
  opacity: 0.14;
  filter: brightness(1.2) saturate(0.4);
}

.loader-mark .logo-real {
  --fill: 0%;
  -webkit-mask-image: linear-gradient(
    100deg,
    #000 0%,
    #000 calc(var(--fill) - 6%),
    rgba(0,0,0,0.6) calc(var(--fill) - 2%),
    transparent var(--fill),
    transparent 100%
  );
          mask-image: linear-gradient(
    100deg,
    #000 0%,
    #000 calc(var(--fill) - 6%),
    rgba(0,0,0,0.6) calc(var(--fill) - 2%),
    transparent var(--fill),
    transparent 100%
  );
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  animation: liquidFill 2.8s cubic-bezier(0.55, 0.1, 0.18, 1) 0.35s forwards;
  filter: drop-shadow(0 0 30px rgba(217, 197, 168, 0.18));
}

@keyframes liquidFill {
  0%   { --fill: 0%; }
  100% { --fill: 112%; }
}

.loader-mark .shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 0%,
    transparent 35%,
    rgba(255, 250, 240, 0.55) 45%,
    rgba(217, 197, 168, 0.7) 50%,
    rgba(255, 250, 240, 0.55) 55%,
    transparent 65%,
    transparent 100%
  );
  background-size: 220% 100%;
  background-position: 100% 0;
  -webkit-mask-image: url('../assets/logo.png');
          mask-image: url('../assets/logo.png');
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  mix-blend-mode: screen;
  opacity: 0.9;
  animation: shimmerFlow 2.8s cubic-bezier(0.55, 0.1, 0.18, 1) 0.35s forwards;
}

@keyframes shimmerFlow {
  0%   { background-position: 100% 0; }
  100% { background-position: -120% 0; }
}

.loader-meta {
  margin-top: var(--s-7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s var(--ease-luxe) 0.2s forwards;
}

.loader-meta span {
  font-size: var(--t-2xs);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(217, 197, 168, 0.7);
}

.loader-progress {
  width: min(40vw, 220px);
  height: 1px;
  background: rgba(217, 197, 168, 0.18);
  position: relative;
  overflow: hidden;
}

.loader-progress::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  background: var(--c-champagne);
  animation: progressFill 2.8s cubic-bezier(0.55, 0.1, 0.18, 1) 0.35s forwards;
}

@keyframes progressFill {
  to { width: 100%; }
}

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

/* ---------- 6. NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--s-4) 0;
  transition: padding 0.6s var(--ease-luxe), background 0.6s var(--ease-luxe), backdrop-filter 0.6s, transform 0.6s var(--ease-luxe), border-color 0.6s;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  padding: var(--s-2) 0;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: saturate(1.4) blur(22px);
  -webkit-backdrop-filter: saturate(1.4) blur(22px);
  border-bottom-color: var(--c-line-soft);
}

.nav.is-hidden {
  transform: translateY(-110%);
}

.nav-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-5);
  min-height: 56px;
  padding: 0 var(--s-2);
}

@media (max-width: 768px) {
  .nav-inner { gap: var(--s-3); }
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  height: 60px;
  transition: height 0.6s var(--ease-luxe);
  flex-shrink: 0;
  max-width: 160px;
}

@media (max-width: 640px) {
  .nav-logo { max-width: 120px; }
}

.nav.is-scrolled .nav-logo {
  height: 48px;
}

.nav.is-scrolled .nav-logo img {
  filter: brightness(0.65) saturate(1.1) !important;
}

.nav-logo img {
  height: 100%;
  width: auto;
  display: block;
  transition: filter 0.6s var(--ease-luxe);
  /* Transparent logo on dark hero: brighten so bronze becomes warm cream */
  filter: brightness(1.55) saturate(0.55) drop-shadow(0 2px 18px rgba(0,0,0,0.35));
}

.nav.is-scrolled .nav-logo img,
body.menu-open .nav-logo img {
  filter: none;
}

body.menu-open .nav-logo img {
  filter: brightness(0.65) saturate(1.1);
}

@media (max-width: 600px) {
  .nav-logo { height: 50px; }
  .nav.is-scrolled .nav-logo { height: 42px; }
}

.nav-center {
  justify-self: center;
  display: flex;
}

.nav-menu {
  display: flex;
  gap: var(--s-6);
  list-style: none;
}

.nav-menu a {
  position: relative;
  font-size: var(--t-2xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.92);
  padding: 0.5em 0;
  transition: color 0.4s var(--ease-luxe);
  text-shadow: 0 1px 14px rgba(0,0,0,0.5);
}

.nav.is-scrolled .nav-menu a {
  color: var(--c-mocha);
  text-shadow: none;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
  transition: width 0.5s var(--ease-luxe);
}

.nav.is-scrolled .nav-menu a::after { background: var(--c-bronze); opacity: 1; }

.nav-menu a:hover { color: #fff; }

.nav.is-scrolled .nav-menu a:hover { color: var(--c-espresso); }

.nav-menu a:hover::after { width: 100%; }

.nav-end {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: var(--t-2xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.95em 1.6em;
  background: rgba(250, 246, 240, 0.96);
  color: var(--c-espresso);
  border: 1px solid rgba(250, 246, 240, 0.96);
  border-radius: 100px;
  transition: background 0.4s var(--ease-luxe), color 0.4s var(--ease-luxe), transform 0.4s var(--ease-luxe), border-color 0.4s;
  white-space: nowrap;
}

.nav.is-scrolled .nav-call {
  background: var(--c-espresso);
  color: var(--c-ivory);
  border-color: var(--c-espresso);
}

.nav-call:hover {
  background: var(--c-bronze);
  border-color: var(--c-bronze);
  color: var(--c-ivory);
  transform: translateY(-1px);
}

.nav-call svg { width: 12px; height: 12px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 105;
}

.nav-toggle span {
  position: absolute;
  left: 8px;
  width: 26px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.5s var(--ease-luxe), top 0.5s var(--ease-luxe), opacity 0.3s var(--ease-luxe), background 0.4s var(--ease-luxe), box-shadow 0.4s var(--ease-luxe);
  box-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.nav-toggle:hover span {
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.nav.is-scrolled .nav-toggle span { background: var(--c-espresso); box-shadow: none; }
body.menu-open .nav-toggle span { background: var(--c-espresso); box-shadow: none; }

.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; width: 18px; }
.nav-toggle span:nth-child(3) { top: 28px; width: 26px; }

body.menu-open .nav-toggle span:nth-child(1) { top: 22px; transform: rotate(45deg); width: 26px; }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { top: 22px; transform: rotate(-45deg); width: 26px; }

/* Tighten nav at medium widths so all 6 items still fit gracefully */
@media (max-width: 1240px) {
  .nav-menu { gap: var(--s-5); }
  .nav-menu a { font-size: 11px; letter-spacing: 0.22em; }
}

/* Hamburger menu kicks in earlier so items never overflow */
@media (max-width: 1100px) {
  .nav-center, .nav-call { display: none; }
  .nav-toggle { display: block; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--c-ivory);
  z-index: 99;
  padding: var(--s-9) var(--s-5) var(--s-5);
  transform: translateY(-100%);
  transition: transform 0.7s var(--ease-luxe), opacity 0.7s var(--ease-luxe), visibility 0.7s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.menu-open .mobile-drawer {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-top: auto;
  margin-bottom: auto;
}

.mobile-menu a {
  font-family: var(--f-serif);
  font-size: clamp(2.5rem, 12vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--c-espresso);
  display: block;
  letter-spacing: -0.02em;
}

.mobile-menu a::first-letter { font-style: italic; color: var(--c-bronze); }

.mobile-foot {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-line-soft);
}

.mobile-foot a {
  font-size: var(--t-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-mocha);
}

/* ---------- 7. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  padding: 1.15em 2.2em;
  font-size: var(--t-2xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 100px;
  transition: transform 0.4s var(--ease-luxe), background 0.4s var(--ease-luxe), color 0.4s var(--ease-luxe), border-color 0.4s var(--ease-luxe);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-bronze);
  border-radius: 100px;
  transform: translateY(101%);
  transition: transform 0.6s var(--ease-luxe);
  z-index: -1;
}

.btn:hover::before {
  transform: translateY(0);
}

.btn-primary {
  background: var(--c-espresso);
  color: var(--c-ivory);
  border: 1px solid var(--c-espresso);
}

.btn-primary:hover { border-color: var(--c-bronze); }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--c-espresso);
  color: var(--c-espresso);
}

.btn-ghost:hover { color: var(--c-ivory); border-color: var(--c-bronze); }

.btn-light {
  background: var(--c-ivory);
  color: var(--c-espresso);
  border: 1px solid var(--c-ivory);
}

.btn-light:hover { color: var(--c-ivory); }

.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.8);
  color: #fff;
}

.btn-outline-light:hover { color: var(--c-ivory); }

.btn .arrow {
  width: 16px;
  height: 8px;
  transition: transform 0.5s var(--ease-luxe);
}

.btn:hover .arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-size: var(--t-2xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-espresso);
  padding-bottom: 0.4em;
  border-bottom: 1px solid var(--c-line);
  transition: gap 0.4s var(--ease-luxe), border-color 0.4s var(--ease-luxe);
}

.link-arrow:hover {
  gap: 1.2em;
  border-color: var(--c-bronze);
}

.link-arrow svg { width: 14px; height: 8px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  overflow: hidden;
  background: var(--c-ink);
  color: var(--c-ivory);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 28% 40%, rgba(184,148,109,0.4) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 75%, rgba(111,84,57,0.5) 0%, transparent 60%),
    linear-gradient(135deg, #2a1e14 0%, #0f0a06 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, rgba(27,19,12,0.78) 0%, rgba(27,19,12,0.55) 25%, rgba(27,19,12,0.25) 50%, rgba(27,19,12,0) 70%),
    linear-gradient(180deg, rgba(27,19,12,0.35) 0%, rgba(27,19,12,0.1) 30%, rgba(27,19,12,0.6) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s var(--ease-luxe), opacity 2.4s var(--ease-luxe);
  opacity: 0;
  position: relative;
  z-index: 1;
}

.hero-bg img.is-loaded,
.hero-bg video.is-loaded {
  opacity: 1;
}

.hero-bg video.is-fading-out {
  opacity: 0;
  transition: opacity 1.8s var(--ease-luxe);
}

.hero.is-loaded .hero-bg img,
.hero.is-loaded .hero-bg video {
  transform: scale(1);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  padding: var(--s-7) 0 var(--s-9);
}

.hero-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: var(--s-6);
}

.hero-meta-top {
  position: absolute;
  top: var(--s-10);
  left: 0;
  right: 0;
  pointer-events: none;
}

.hero-meta-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--t-2xs);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(250,246,240,0.7);
}

@media (max-width: 768px) {
  .hero-meta-top { display: none; }
}

.hero-title {
  font-size: clamp(3rem, 9vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--c-ivory);
  font-weight: 300;
  max-width: 14ch;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}

.hero.is-loaded .hero-title .line span {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.4s var(--ease-luxe), opacity 1s var(--ease-luxe);
}

.hero.is-loaded .hero-title .line:nth-child(1) span { transition-delay: 0.1s; }
.hero.is-loaded .hero-title .line:nth-child(2) span { transition-delay: 0.25s; }

.hero-title em {
  font-style: italic;
  color: var(--c-champagne);
  font-family: var(--f-serif);
}

.hero-sub {
  max-width: 38ch;
  font-size: var(--t-base);
  line-height: 1.7;
  color: rgba(250,246,240,0.82);
  margin-top: var(--s-5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s var(--ease-luxe) 0.6s, transform 1.2s var(--ease-luxe) 0.6s;
}

.hero.is-loaded .hero-sub { opacity: 1; transform: translateY(0); }

.hero-actions {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-top: var(--s-6);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s var(--ease-luxe) 0.85s, transform 1.2s var(--ease-luxe) 0.85s;
}

.hero.is-loaded .hero-actions { opacity: 1; transform: translateY(0); }

.hero-aside {
  text-align: right;
  max-width: 280px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s var(--ease-luxe) 1s, transform 1.2s var(--ease-luxe) 1s;
}

.hero.is-loaded .hero-aside { opacity: 1; transform: translateY(0); }

.hero-aside .note {
  font-size: var(--t-2xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,246,240,0.6);
  margin-bottom: var(--s-3);
}

.hero-aside .phone {
  display: block;
  font-family: var(--f-serif);
  font-size: var(--t-xl);
  color: var(--c-ivory);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-2);
}

.hero-aside .phone:hover { color: var(--c-champagne); }

.hero-aside .stars {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 0.4em;
  color: var(--c-champagne);
}

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-bg { position: absolute; }
  .hero-content {
    position: relative;
    inset: auto;
    align-content: start;
    padding: calc(var(--s-9) + 50px) 0 var(--s-7);
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero-grid { grid-template-columns: 1fr; align-items: start; }
  .hero-aside { text-align: left; max-width: 100%; border-top: 1px solid rgba(255,255,255,0.15); padding-top: var(--s-5); margin-top: var(--s-5); }
  .hero-title { font-size: clamp(2.6rem, 11vw, 4.5rem); }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.4rem, 12.5vw, 3.6rem); max-width: 12ch; }
  .hero-content { padding-top: calc(var(--s-8) + 50px); }
}

.hero-scroll {
  position: absolute;
  bottom: var(--s-5);
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--t-2xs);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(250,246,240,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  opacity: 0;
  transition: opacity 1.2s var(--ease-luxe) 1.4s;
}

.hero.is-loaded .hero-scroll { opacity: 1; }

.hero-scroll .line-down {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(250,246,240,0.6), transparent);
  position: relative;
  overflow: hidden;
}

.hero-scroll .line-down::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, transparent, var(--c-champagne));
  animation: scrollLine 2.2s var(--ease-luxe) infinite;
}

@keyframes scrollLine {
  0%   { top: -50%; }
  100% { top: 100%; }
}

@media (max-width: 768px) {
  .hero-scroll { display: none; }
}

/* Marquee tape */
.marquee {
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: var(--s-4) 0;
  overflow: hidden;
  background: var(--c-ivory);
}

.marquee-track {
  display: flex;
  gap: var(--s-7);
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-track span {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: var(--t-lg);
  color: var(--c-mocha);
  display: inline-flex;
  align-items: center;
  gap: var(--s-7);
}

.marquee-track span::after {
  content: '✦';
  font-style: normal;
  color: var(--c-bronze);
  font-size: 0.7em;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT — Editorial split
   ============================================================ */
.about {
  background: var(--c-ivory);
  padding-top: var(--s-12);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--s-9);
  align-items: start;
}

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--s-7); }
}

.about-media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  align-items: start;
}

.about-img-1 {
  aspect-ratio: 3 / 4;
  background-color: var(--c-cream);
  background-image: linear-gradient(135deg, var(--c-champagne) 0%, var(--c-bronze) 65%, var(--c-mocha) 100%);
  background-size: cover;
  background-position: center;
  margin-top: var(--s-8);
  position: relative;
  overflow: hidden;
}

.about-img-2 {
  aspect-ratio: 4 / 5;
  background-color: var(--c-cream);
  background-image: linear-gradient(160deg, var(--c-mocha) 0%, var(--c-bronze) 50%, var(--c-champagne) 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.about-img-1::after,
.about-img-2::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(27,19,12,0.18));
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: -28px;
  right: -24px;
  padding: var(--s-4) var(--s-5);
  border-radius: var(--radius-md);
  background: var(--c-espresso);
  color: var(--c-ivory);
  text-align: center;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15em;
  box-shadow: 0 20px 40px -16px rgba(0,0,0,0.45);
  border: 1px solid rgba(217,197,168,0.18);
}

.about-badge .badge-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-champagne);
  opacity: 0.85;
}

.about-badge .badge-year {
  font-family: var(--f-serif);
  font-size: 2.1rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
}

.about-badge .badge-line {
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.78;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .about-badge {
    bottom: -16px;
    right: -8px;
    padding: var(--s-3) var(--s-4);
  }
  .about-badge .badge-year { font-size: 1.55rem; }
  .about-badge .badge-eyebrow { font-size: 0.56rem; letter-spacing: 0.26em; }
  .about-badge .badge-line { font-size: 0.58rem; letter-spacing: 0.22em; }
}

.about-text h2 {
  margin: var(--s-3) 0 var(--s-5);
  font-size: var(--t-2xl);
}

.about-text h2 em {
  font-style: italic;
  color: var(--c-bronze);
}

.about-text p {
  font-size: var(--t-base);
  color: var(--c-mocha);
  margin-bottom: var(--s-4);
}

.about-text p strong {
  color: var(--c-espresso);
  font-weight: 500;
}

.about-sign {
  margin-top: var(--s-6);
  font-family: var(--f-script);
  font-size: 3.2rem;
  color: var(--c-bronze);
  line-height: 1;
}

.about-sign + .credit {
  font-size: var(--t-2xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-mocha);
  margin-top: var(--s-2);
}

.about-features {
  margin-top: var(--s-9);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  border-top: 1px solid var(--c-line);
  padding-top: var(--s-6);
}

@media (max-width: 1024px) { .about-features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .about-features { grid-template-columns: 1fr; } }

.feature {
  display: grid;
  gap: var(--s-2);
}

.feature .feat-num {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: var(--t-sm);
  color: var(--c-bronze);
}

.feature h4 {
  font-size: var(--t-base);
  font-weight: 500;
  font-family: var(--f-sans);
  letter-spacing: 0.02em;
  color: var(--c-espresso);
}

.feature p {
  font-size: var(--t-sm);
  color: var(--c-mocha);
}

/* ============================================================
   PHILOSOPHY / SIGNATURE LINE
   ============================================================ */
.philosophy {
  background: var(--c-cream);
  padding: var(--s-12) 0;
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: 'HAIR PERFECTION';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-serif);
  font-size: clamp(8rem, 22vw, 24rem);
  font-weight: 300;
  color: var(--c-champagne);
  opacity: 0.18;
  letter-spacing: -0.04em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.philosophy .container-narrow {
  position: relative;
  z-index: 1;
  text-align: center;
}

.philosophy blockquote {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.2;
  color: var(--c-espresso);
  margin: var(--s-5) 0;
}

.philosophy blockquote span {
  color: var(--c-bronze);
}

.philosophy .attribution {
  font-size: var(--t-2xs);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-bronze-deep);
}

/* ============================================================
   SERVICES — Bento
   ============================================================ */
.services {
  background: var(--c-ivory);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 280px;
  gap: var(--s-4);
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 240px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 320px;
  }
}

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--c-cream);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--s-5);
  color: var(--c-ivory);
  isolation: isolate;
  text-decoration: none;
  transition: transform 0.6s var(--ease-luxe), box-shadow 0.6s var(--ease-luxe);
  cursor: pointer;
  border-radius: var(--radius-md);
}

.service-card:active {
  transform: scale(0.98);
  transition: transform 0.2s var(--ease-out-cinema);
}

@media (hover: hover) {
  .service-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  }
}

.service-card .bg {
  position: absolute;
  inset: 0;
  background-color: var(--c-mocha);
  background-image: linear-gradient(145deg, var(--c-bronze-deep) 0%, var(--c-mocha) 60%, var(--c-espresso) 100%);
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: transform 1.4s var(--ease-luxe), filter 1.4s var(--ease-luxe);
}

.service-card.alt-grad-1 .bg { background-image: linear-gradient(145deg, var(--c-champagne) 0%, var(--c-bronze) 70%, var(--c-mocha) 100%); }
.service-card.alt-grad-2 .bg { background-image: linear-gradient(135deg, var(--c-mocha) 0%, var(--c-espresso) 60%, var(--c-ink) 100%); }
.service-card.alt-grad-3 .bg { background-image: linear-gradient(160deg, var(--c-bronze) 0%, var(--c-bronze-deep) 70%, var(--c-espresso) 100%); }
.service-card.alt-grad-4 .bg { background-image: linear-gradient(120deg, var(--c-cream) 0%, var(--c-champagne) 60%, var(--c-bronze) 100%); }
.service-card.alt-grad-5 .bg { background-image: linear-gradient(170deg, var(--c-bronze-deep) 0%, var(--c-mocha) 100%); }

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,19,12,0.0) 35%, rgba(27,19,12,0.85) 100%);
  z-index: -1;
  transition: background 0.6s var(--ease-luxe);
}

.service-card:hover .bg {
  transform: scale(1.08);
  filter: brightness(0.85);
}

.service-card .num {
  position: absolute;
  top: var(--s-5);
  left: var(--s-5);
  font-family: var(--f-serif);
  font-style: italic;
  font-size: var(--t-lg);
  color: rgba(250,246,240,0.8);
  z-index: 1;
}

.service-card .tag {
  position: absolute;
  top: var(--s-5);
  right: var(--s-5);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250,246,240,0.7);
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(6px);
  padding: 0.35em 0.7em;
  border-radius: 999px;
  border: 1px solid rgba(250,246,240,0.16);
  z-index: 2;
  pointer-events: none;
}

.service-card:has(.tag) h3 { padding-right: 6.5rem; }

@media (max-width: 900px) {
  .service-card:has(.tag) h3 { padding-right: 0; }
  .service-card .tag {
    position: static;
    display: inline-block;
    margin-bottom: var(--s-3);
    align-self: flex-start;
  }
}

.service-card h3 {
  color: var(--c-ivory);
  font-size: var(--t-xl);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
}

.service-card .desc {
  font-size: var(--t-sm);
  color: rgba(250,246,240,0.78);
  margin-top: var(--s-2);
  max-width: 32ch;
}

.service-card .more {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: var(--t-2xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-champagne);
  margin-top: var(--s-4);
  padding-bottom: 0.3em;
  border-bottom: 1px solid rgba(217, 197, 168, 0.4);
  width: max-content;
  transition: gap 0.4s var(--ease-luxe);
}

.service-card:hover .more { gap: 1em; }

/* Bento layout placements */
.svc-1 { grid-column: span 6; grid-row: span 2; }
.svc-2 { grid-column: span 3; }
.svc-3 { grid-column: span 3; }
.svc-4 { grid-column: span 4; }
.svc-5 { grid-column: span 4; grid-row: span 2; }
.svc-6 { grid-column: span 4; }
.svc-7 { grid-column: span 4; }
.svc-8 { grid-column: span 4; }

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

@media (max-width: 540px) {
  .svc-1, .svc-2, .svc-3, .svc-4, .svc-5, .svc-6, .svc-7, .svc-8 {
    grid-column: span 6 !important;
    grid-row: span 1 !important;
  }
  
  .service-card {
    min-height: 280px;
  }
}

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

@media (max-width: 600px) {
  .svc-1, .svc-2, .svc-3, .svc-4, .svc-5, .svc-6, .svc-7, .svc-8 {
    grid-column: 1; grid-row: auto;
  }
}

/* ============================================================
   PORTRAIT FEATURE BLOCK
   ============================================================ */
.feature-block {
  background: var(--c-espresso);
  color: var(--c-ivory);
  padding: var(--s-12) 0;
  position: relative;
  overflow: hidden;
}

.feature-block-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-9);
  align-items: center;
}

@media (max-width: 1024px) { .feature-block-grid { grid-template-columns: 1fr; gap: var(--s-7); } }

.feature-block .visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.feature-block .visual video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-block .visual .marker {
  position: absolute;
  top: var(--s-5);
  left: var(--s-5);
  font-family: var(--f-script);
  font-size: 3rem;
  color: var(--c-champagne);
  line-height: 1;
}

.feature-block h2 {
  font-size: var(--t-3xl);
  color: var(--c-ivory);
  margin-bottom: var(--s-5);
}

.feature-block h2 em {
  font-style: italic;
  color: var(--c-champagne);
}

.feature-block p {
  color: rgba(250,246,240,0.78);
  max-width: 50ch;
  margin-bottom: var(--s-4);
}

.feature-block .stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  margin: var(--s-6) 0;
  padding: var(--s-5) 0;
  border-top: 1px solid rgba(250,246,240,0.18);
  border-bottom: 1px solid rgba(250,246,240,0.18);
}

.stat .v {
  font-family: var(--f-serif);
  font-size: var(--t-xl);
  font-weight: 300;
  color: var(--c-ivory);
  line-height: 1;
}

.stat .v em {
  font-style: italic;
  color: var(--c-champagne);
  font-size: 0.6em;
  vertical-align: super;
}

.stat .l {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250,246,240,0.55);
  margin-top: 0.4em;
}

/* ============================================================
   GALLERY — Masonry
   ============================================================ */
.gallery {
  background: var(--c-ivory);
  padding-bottom: var(--s-9);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: var(--s-4);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-champagne) 0%, var(--c-bronze) 50%, var(--c-mocha) 100%);
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

.gallery-item .ig-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  background: linear-gradient(180deg, rgba(27,19,12,0) 0%, rgba(27,19,12,0.55) 60%, rgba(27,19,12,0.78) 100%);
  color: var(--c-ivory);
  opacity: 0;
  transition: opacity 0.45s var(--ease-luxe);
  pointer-events: none;
  text-align: center;
  padding: var(--s-4);
}

.gallery-item .ig-overlay svg {
  width: 44px;
  height: 44px;
  stroke: currentColor;
  fill: none;
  opacity: 0;
  transform: translateY(8px) scale(0.92);
  transition: opacity 0.5s var(--ease-luxe) 0.05s, transform 0.5s var(--ease-luxe) 0.05s;
}

.gallery-item .ig-overlay span {
  font-size: var(--t-2xs);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease-luxe) 0.12s, transform 0.5s var(--ease-luxe) 0.12s;
}

.gallery-item:hover .ig-overlay,
.gallery-item:focus-visible .ig-overlay { opacity: 1; }
.gallery-item:hover .ig-overlay svg,
.gallery-item:focus-visible .ig-overlay svg { opacity: 1; transform: translateY(0) scale(1); }
.gallery-item:hover .ig-overlay span,
.gallery-item:focus-visible .ig-overlay span { opacity: 1; transform: translateY(0); }

.gallery-item:hover .caption,
.gallery-item:focus-visible .caption { opacity: 0; }

.gallery-item:nth-child(2n)  { background: linear-gradient(160deg, var(--c-mocha) 0%, var(--c-bronze-deep) 100%); }
.gallery-item:nth-child(3n)  { background: linear-gradient(120deg, var(--c-bronze) 0%, var(--c-espresso) 100%); }
.gallery-item:nth-child(5n)  { background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-bronze) 100%); }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: transform 1.4s var(--ease-luxe), filter 1.4s var(--ease-luxe), opacity 0.8s var(--ease-luxe);
}

.gallery-item img.is-loaded { opacity: 1; }
.gallery-item img.is-failed { display: none; }

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item .caption {
  position: absolute;
  bottom: var(--s-4);
  left: var(--s-4);
  z-index: 2;
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--c-ivory);
  font-size: var(--t-base);
  background: rgba(27,19,12,0.45);
  padding: 0.4em 1em;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  opacity: 1;
  transition: opacity 0.45s var(--ease-luxe);
}

.g-1 { grid-column: span 6; grid-row: span 5; }
.g-2 { grid-column: span 3; grid-row: span 5; }
.g-3 { grid-column: span 3; grid-row: span 5; }
.g-4 { grid-column: span 7; grid-row: span 4; }
.g-5 { grid-column: span 5; grid-row: span 4; }

@media (max-width: 900px) {
  .gallery-grid { grid-auto-rows: 90px; }
  .g-1 { grid-column: span 12; grid-row: span 4; }
  .g-2 { grid-column: span 6; grid-row: span 4; }
  .g-3 { grid-column: span 6; grid-row: span 4; }
  .g-4 { grid-column: span 7; grid-row: span 4; }
  .g-5 { grid-column: span 5; grid-row: span 4; }
}

@media (max-width: 540px) {
  .gallery-grid { grid-auto-rows: 80px; }
  .g-1, .g-2, .g-3, .g-4, .g-5 { grid-column: span 12; grid-row: span 3; }
}

/* Reels strip — horizontal scroll of looping videos */
.reels-strip {
  margin-top: var(--s-10);
}

.reels-head {
  display: flex;
  align-items: baseline;
  gap: var(--s-4);
  margin-bottom: var(--s-5);
}

.reels-head h3 {
  font-family: var(--f-serif);
  font-size: var(--t-2xl);
  font-weight: 300;
  color: var(--c-espresso);
  line-height: 1;
}

.reels-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: var(--s-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--s-3);
  scrollbar-width: thin;
}

.reels-track::-webkit-scrollbar { height: 6px; }
.reels-track::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); }
.reels-track::-webkit-scrollbar-thumb { background: var(--c-bronze); border-radius: 999px; }

.reels-track .reel {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--radius-md);
  scroll-snap-align: start;
  background: var(--c-espresso);
  box-shadow: 0 18px 40px -22px rgba(31,22,12,0.4);
  transition: transform 0.5s var(--ease-luxe), box-shadow 0.5s var(--ease-luxe);
}

.reels-track .reel:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px -22px rgba(31,22,12,0.55);
}

@media (max-width: 768px) {
  .reels-track { grid-auto-columns: 70%; }
}

/* ============================================================
   WHY — Premium list
   ============================================================ */
.why {
  background: var(--c-ivory-warm);
  padding: var(--s-12) 0;
}

.why-head {
  text-align: center;
  margin-bottom: var(--s-9);
}

.why-head h2 {
  font-size: var(--t-3xl);
  margin-top: var(--s-3);
}

.why-head h2 em { font-style: italic; color: var(--c-bronze); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-line);
}

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }

.why-item {
  padding: var(--s-7) var(--s-5);
  border-bottom: 1px solid var(--c-line);
  border-right: 1px solid var(--c-line);
  display: grid;
  gap: var(--s-3);
  position: relative;
  transition: background 0.5s var(--ease-luxe);
}

.why-item:nth-child(3n) { border-right: 0; }

@media (max-width: 900px) {
  .why-item { border-right: 0; }
  .why-item:nth-child(odd) { border-right: 1px solid var(--c-line); }
}

@media (max-width: 540px) {
  .why-item, .why-item:nth-child(odd) { border-right: 0; }
}

.why-item:hover { background: var(--c-cream); }

.why-item .icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--c-ivory);
  border: 1px solid var(--c-line);
  color: var(--c-bronze);
}

.why-item .icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.4; }

.why-item h3 {
  font-family: var(--f-serif);
  font-size: var(--t-lg);
  font-weight: 400;
  color: var(--c-espresso);
}

.why-item p {
  font-size: var(--t-sm);
  color: var(--c-mocha);
}

.why-item .step {
  position: absolute;
  top: var(--s-5);
  right: var(--s-5);
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--c-bronze);
  font-size: var(--t-sm);
  opacity: 0.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--c-ivory);
  position: relative;
}

.testimonials-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: end;
  margin-bottom: var(--s-8);
}

.testimonials-head h2 {
  font-size: var(--t-3xl);
}

.testimonials-head h2 em { font-style: italic; color: var(--c-bronze); }

.testimonials-head p {
  max-width: 42ch;
  color: var(--c-mocha);
  justify-self: end;
}

@media (max-width: 900px) {
  .testimonials-head { grid-template-columns: 1fr; }
  .testimonials-head p { justify-self: start; }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-5);
}

.testimonial {
  background: var(--c-ivory);
  border: 1px solid var(--c-line);
  padding: var(--s-6);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: transform 0.6s var(--ease-luxe), box-shadow 0.6s var(--ease-luxe), background 0.6s var(--ease-luxe);
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -25px rgba(61, 44, 28, 0.18);
  background: var(--c-ivory-warm);
  border-color: rgba(184, 148, 109, 0.35);
}

@media (min-width: 900px) {
  .t-1:hover {
    background: #2a1d12;
    border-color: rgba(217, 197, 168, 0.3);
    box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.5);
  }
}

.testimonial .quote-mark {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 4rem;
  color: var(--c-bronze);
  line-height: 0.6;
  height: 28px;
  opacity: 0.6;
}

.testimonial .text {
  font-family: var(--f-serif);
  font-size: var(--t-lg);
  font-weight: 300;
  color: var(--c-espresso);
  line-height: 1.4;
  flex: 1;
}

.testimonial .stars {
  display: inline-flex;
  gap: 3px;
  color: var(--c-bronze);
}

.testimonial .stars svg { width: 12px; height: 12px; fill: currentColor; }

.testimonial .author {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-line-soft);
}

.testimonial .author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-cream);
  display: grid;
  place-items: center;
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--c-bronze);
  font-size: var(--t-base);
}

.testimonial .author .name {
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--c-espresso);
}

.testimonial .author .role {
  font-size: var(--t-2xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-mocha);
}

.t-1 { grid-column: span 3; }
.t-2 { grid-column: span 3; }
.t-3 { grid-column: span 2; }
.t-4 { grid-column: span 2; }
.t-5 { grid-column: span 2; }

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

@media (min-width: 900px) {
  .t-1 { background: var(--c-espresso); color: var(--c-ivory); border-color: var(--c-espresso); }
  .t-1 .text { color: var(--c-ivory); }
  .t-1 .author { border-color: rgba(250,246,240,0.18); }
  .t-1 .author .name { color: var(--c-ivory); }
  .t-1 .author .role { color: rgba(250,246,240,0.6); }
  .t-1 .author .avatar { background: rgba(250,246,240,0.08); color: var(--c-champagne); }
  .t-1 .quote-mark { color: var(--c-champagne); }
}

/* ============================================================
   INSTAGRAM SECTION
   ============================================================ */
.insta {
  background: var(--c-ivory);
  padding: var(--s-12) 0;
}

.insta-head {
  text-align: center;
  margin-bottom: var(--s-7);
}

.insta-head .eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
}

.insta-head h2 {
  font-size: var(--t-3xl);
  margin: var(--s-3) 0;
}

.insta-head h2 em { font-style: italic; color: var(--c-bronze); }

.insta-head .handle {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: var(--t-base);
  color: var(--c-bronze);
}

.insta-widget {
  margin-top: var(--s-7);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-2);
}

@media (max-width: 900px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .insta-grid { grid-template-columns: repeat(2, 1fr); } }

.insta-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: block;
  isolation: isolate;
}

.insta-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,19,12,0) 50%, rgba(27,19,12,0.7) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-luxe);
}

.insta-tile:hover::after { opacity: 1; }

.insta-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  gap: 0.6em;
  padding: var(--s-3);
  color: var(--c-ivory);
  z-index: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease-luxe), transform 0.5s var(--ease-luxe);
}

.insta-tile:hover .insta-overlay {
  opacity: 1;
  transform: translateY(0);
}

.insta-overlay svg { width: 16px; height: 16px; flex-shrink: 0; }
.insta-overlay span { font-size: var(--t-2xs); letter-spacing: 0.18em; text-transform: uppercase; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--c-ink);
  color: var(--c-ivory);
  padding: var(--s-12) 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle at center, rgba(184,148,109,0.18), transparent 60%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--s-8);
  align-items: stretch;
  position: relative;
}

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

@media (max-width: 1024px) { .contact-grid { grid-template-columns: 1fr; gap: var(--s-7); } }

.contact h2 {
  font-size: var(--t-3xl);
  color: var(--c-ivory);
  margin-top: var(--s-3);
}

.contact h2 em { font-style: italic; color: var(--c-champagne); }

.contact > .container > .contact-grid > .contact-info > p {
  color: rgba(250,246,240,0.85);
  max-width: 50ch;
  margin-top: var(--s-4);
  line-height: 1.7;
}

.contact-callout {
  background: rgba(217, 197, 168, 0.07);
  border: 1px solid rgba(217, 197, 168, 0.18);
  padding: var(--s-5);
  border-radius: var(--radius-md);
  margin-top: var(--s-5);
}

@media (max-width: 768px) {
  .contact-callout {
    text-align: center;
  }
}

.contact-callout .note {
  font-size: var(--t-2xs);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-champagne);
  margin-bottom: var(--s-2);
}

.contact-callout p {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: var(--t-lg);
  color: var(--c-ivory);
  line-height: 1.4;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  margin-top: var(--s-7);
}

@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: var(--s-4);
  }
}

.info-block .label {
  font-size: var(--t-2xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-champagne);
  margin-bottom: var(--s-2);
  opacity: 0.85;
}

@media (max-width: 768px) {
  .info-block .label {
    text-align: center;
  }
}

.info-block .value {
  font-family: var(--f-serif);
  font-size: var(--t-lg);
  font-weight: 300;
  color: var(--c-ivory);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .info-block {
    text-align: center;
  }
  
  .info-block ul {
    justify-items: center;
  }
  
  .info-block li {
    justify-content: center;
    flex-direction: column;
    gap: 0.2em;
  }
}

.info-block .value:hover { color: var(--c-champagne); }

.info-block ul {
  list-style: none;
  display: grid;
  gap: 0.3em;
}

.info-block li {
  display: flex;
  justify-content: space-between;
  gap: var(--s-3);
  font-size: var(--t-sm);
  color: rgba(250,246,240,0.9);
  padding: 0.5em 0;
  border-bottom: 1px dashed rgba(250,246,240,0.14);
}

.info-block li:last-child { border-bottom: 0; }

.info-block li span:last-child { color: var(--c-champagne); font-variant-numeric: tabular-nums; }

.contact-actions {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-top: var(--s-7);
}

@media (max-width: 768px) {
  .contact-actions {
    justify-content: center;
  }
}

/* Phone hero block — big anchor inside contact info */
.contact-phone {
  margin-top: var(--s-6);
  padding-top: var(--s-6);
  border-top: 1px solid rgba(250,246,240,0.12);
  display: block;
  text-decoration: none;
}
.contact-phone .label {
  font-size: var(--t-2xs);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-champagne);
  margin-bottom: var(--s-2);
}
.contact-phone .number {
  display: block;
  font-family: var(--f-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--c-ivory);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.05;
  transition: color 0.4s var(--ease-luxe);
}
.contact-phone:hover .number { color: var(--c-champagne); }

/* Map */
.map-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(250,246,240,0.12);
  min-height: 480px;
  background: #1a1209;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  position: absolute;
  inset: 0;
  display: block;
  border: 0;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.5) contrast(0.92) brightness(1.05);
}

@media (max-width: 900px) {
  .map-wrap { min-height: 380px; }
  .map-wrap iframe { min-height: 380px; }
}

.map-pin {
  position: absolute;
  top: var(--s-5);
  left: var(--s-5);
  background: var(--c-espresso);
  color: var(--c-ivory);
  padding: var(--s-4) var(--s-5);
  border-radius: var(--radius-sm);
  max-width: 280px;
  z-index: 2;
  box-shadow: 0 12px 30px -12px rgba(0,0,0,0.6);
}

.map-pin .label {
  font-size: var(--t-2xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-champagne);
  margin-bottom: var(--s-2);
}

.map-pin .addr {
  font-family: var(--f-serif);
  font-size: var(--t-base);
  line-height: 1.4;
  font-style: italic;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--c-ink);
  color: var(--c-ivory);
  padding: var(--s-9) 0 var(--s-5);
  border-top: 1px solid rgba(250,246,240,0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: var(--s-7);
  padding-bottom: var(--s-8);
  border-bottom: 1px solid rgba(250,246,240,0.08);
}

@media (max-width: 1024px) { .footer-top { grid-template-columns: 1fr 1fr; gap: var(--s-6); } }
@media (max-width: 600px)  { .footer-top { grid-template-columns: 1fr; } }

.footer-brand img { width: 200px; }

.footer-brand p {
  margin-top: var(--s-4);
  color: rgba(250,246,240,0.65);
  font-size: var(--t-sm);
  max-width: 32ch;
}

.footer-col h4 {
  font-size: var(--t-2xs);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-champagne);
  font-family: var(--f-sans);
  font-weight: 500;
  margin-bottom: var(--s-4);
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.6em;
}

.footer-col a {
  color: rgba(250,246,240,0.78);
  font-size: var(--t-sm);
  transition: color 0.3s var(--ease-luxe);
}

.footer-col a:hover { color: var(--c-champagne); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-5);
  flex-wrap: wrap;
  gap: var(--s-3);
}

.footer-bottom .copyright {
  font-size: var(--t-2xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,246,240,0.5);
}

.footer-bottom .legal {
  display: flex;
  gap: var(--s-5);
}

.footer-bottom .legal a {
  font-size: var(--t-2xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,246,240,0.5);
}

.footer-bottom .legal a:hover { color: var(--c-champagne); }

.social {
  display: flex;
  gap: var(--s-2);
}

.social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(250,246,240,0.15);
  color: rgba(250,246,240,0.8);
  transition: background 0.4s var(--ease-luxe), border-color 0.4s var(--ease-luxe), color 0.4s var(--ease-luxe), transform 0.4s var(--ease-luxe);
}

.social a:hover {
  background: var(--c-bronze);
  border-color: var(--c-bronze);
  color: var(--c-ink);
  transform: translateY(-2px);
}

.social svg { width: 16px; height: 16px; fill: currentColor; }

/* ============================================================
   REVEAL / SCROLL ANIMATIONS
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s var(--ease-luxe), transform 1.2s var(--ease-luxe);
}

[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="zoom"]  { transform: scale(0.96); }

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

[data-reveal-delay="1"].is-visible { transition-delay: 0.08s; }
[data-reveal-delay="2"].is-visible { transition-delay: 0.16s; }
[data-reveal-delay="3"].is-visible { transition-delay: 0.24s; }
[data-reveal-delay="4"].is-visible { transition-delay: 0.32s; }

.split-line {
  overflow: hidden;
  display: block;
}

.split-line > span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 1.2s var(--ease-luxe);
}

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

/* Parallax image holder */
.parallax {
  will-change: transform;
}

/* ============================================================
   SERVICE SUBPAGE
   ============================================================ */
.subpage {
  background: var(--c-ivory);
}

.subhero {
  min-height: 70vh;
  position: relative;
  overflow: hidden;
  background: var(--c-ink);
  color: var(--c-ivory);
  display: grid;
  align-items: end;
  padding: 0 0 var(--s-9);
}

.subhero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--c-mocha);
  background-image: linear-gradient(135deg, var(--c-bronze-deep) 0%, var(--c-mocha) 45%, var(--c-espresso) 100%);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroIn 2s var(--ease-luxe) 0.2s forwards;
}

@keyframes heroIn {
  to { transform: scale(1); }
}

.subhero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,19,12,0.55) 0%, rgba(27,19,12,0.2) 35%, rgba(27,19,12,0.85) 100%);
}

.subhero-inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding-top: var(--s-11);
}

.subhero .crumbs {
  font-size: var(--t-2xs);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(250,246,240,0.7);
  margin-bottom: var(--s-5);
}

.subhero h1 {
  font-size: clamp(2.8rem, 8vw, 7rem);
  color: var(--c-ivory);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.subhero h1 em { font-style: italic; color: var(--c-champagne); }

.subhero p {
  margin-top: var(--s-5);
  max-width: 56ch;
  color: rgba(250,246,240,0.82);
}

.sub-section {
  padding: var(--s-12) 0;
}

.sub-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-9);
  align-items: center;
}

@media (max-width: 900px) { .sub-grid { grid-template-columns: 1fr; gap: var(--s-7); } }

.sub-grid.reverse { grid-template-columns: 1.2fr 1fr; }

.sub-grid .image {
  aspect-ratio: 4 / 5;
  background-color: var(--c-cream);
  background-image: linear-gradient(150deg, var(--c-champagne) 0%, var(--c-bronze) 60%, var(--c-mocha) 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.sub-grid.reverse .image {
  background-image: linear-gradient(135deg, var(--c-mocha) 0%, var(--c-bronze) 60%, var(--c-champagne) 100%);
}

.sub-grid h2 {
  font-size: var(--t-2xl);
  margin-bottom: var(--s-5);
}

.sub-grid h2 em { font-style: italic; color: var(--c-bronze); }

.sub-grid p {
  color: var(--c-mocha);
  margin-bottom: var(--s-4);
}

.sub-list {
  list-style: none;
  display: grid;
  gap: var(--s-2);
  margin-top: var(--s-5);
}

.sub-list li {
  display: flex;
  gap: var(--s-3);
  padding: var(--s-3) 0;
  border-top: 1px solid var(--c-line);
  font-size: var(--t-sm);
  color: var(--c-espresso);
  align-items: center;
}

.sub-list li:last-child { border-bottom: 1px solid var(--c-line); }

.sub-list li .num {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--c-bronze);
  font-size: var(--t-lg);
  flex-shrink: 0;
  width: 2.5ch;
}

.related-services {
  background: var(--c-cream);
  padding: var(--s-9) 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-6);
}

@media (max-width: 768px) { .related-grid { grid-template-columns: 1fr; } }

.related-card {
  aspect-ratio: 4 / 5;
  background-color: var(--c-mocha);
  background-image: linear-gradient(155deg, var(--c-bronze) 0%, var(--c-mocha) 50%, var(--c-espresso) 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: var(--s-5);
  color: var(--c-ivory);
  text-decoration: none;
  transition: transform 0.6s var(--ease-luxe);
}

.related-card:nth-child(2) { background-image: linear-gradient(135deg, var(--c-mocha) 0%, var(--c-bronze-deep) 100%); }
.related-card:nth-child(3) { background-image: linear-gradient(165deg, var(--c-champagne) 0%, var(--c-bronze) 60%, var(--c-espresso) 100%); }

.related-card:hover { transform: translateY(-4px); }

.related-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(27,19,12,0.9));
}

.related-card .meta { position: relative; z-index: 1; }

.related-card h3 {
  color: var(--c-ivory);
  font-size: var(--t-lg);
}

.related-card .more {
  font-size: var(--t-2xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-champagne);
  margin-top: var(--s-2);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.divider {
  height: 1px;
  background: var(--c-line);
  width: 100%;
  margin: var(--s-7) 0;
}

.line-grow {
  display: inline-block;
  width: 60px;
  height: 1px;
  background: var(--c-bronze);
  vertical-align: middle;
  margin-right: 1em;
}

/* WhatsApp float */
.fab {
  position: fixed;
  bottom: var(--s-4);
  right: var(--s-4);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-espresso);
  color: var(--c-ivory);
  display: grid;
  place-items: center;
  z-index: 90;
  box-shadow: 0 14px 40px -10px rgba(27,19,12,0.5);
  transition: transform 0.4s var(--ease-luxe), background 0.4s var(--ease-luxe), opacity 0.3s var(--ease-luxe);
}

@media (max-width: 540px) {
  .fab {
    width: 46px;
    height: 46px;
    bottom: var(--s-3);
    right: var(--s-3);
    opacity: 0.88;
  }
  .fab svg { width: 18px; height: 18px; }
}

.fab:hover {
  transform: scale(1.08);
  background: var(--c-bronze);
}

.fab svg { width: 22px; height: 22px; fill: currentColor; }

/* ============================================================
   CARD HOVER OVERRIDES
   (must beat [data-reveal].is-visible transform specificity)
   ============================================================ */
[data-reveal].is-visible.testimonial:hover { transform: translateY(-6px); transition: transform 0.6s var(--ease-luxe); }
[data-reveal].is-visible.service-card:hover { transform: translateY(-5px); transition: transform 0.6s var(--ease-luxe); }
[data-reveal].is-visible.gallery-item:hover { transform: translateY(-3px); transition: transform 0.6s var(--ease-luxe); }
[data-reveal].is-visible.feature:hover { transform: translateY(-3px); transition: transform 0.5s var(--ease-luxe); }
[data-reveal].is-visible.why-item:hover { transform: translateY(-3px); transition: transform 0.5s var(--ease-luxe); }
.service-card:active { transform: translateY(-2px) scale(0.99); transition: transform 0.2s var(--ease-out-cinema); }

/* Hover polish for cards that had no lift */
.why-item {
  transition: background 0.5s var(--ease-luxe), transform 0.5s var(--ease-luxe), box-shadow 0.5s var(--ease-luxe);
}
.why-item:hover {
  box-shadow: 0 24px 50px -28px rgba(61, 44, 28, 0.22);
}
.feature {
  transition: transform 0.5s var(--ease-luxe);
}
.gallery-item {
  transition: transform 0.6s var(--ease-luxe);
}

/* ============================================================
   NOSCRIPT FALLBACK
   ============================================================ */
.no-js [data-reveal] { opacity: 1; transform: none; }
.no-js .loader { display: none; }
.no-js .split-line > span { transform: none; }

/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */
.ba-section {
  background: var(--c-ivory);
  padding: var(--s-12) 0;
}

.ba-head {
  text-align: center;
  margin-bottom: var(--s-8);
}

.ba-head h2 {
  font-size: var(--t-3xl);
  margin-top: var(--s-3);
}

.ba-head h2 em { font-style: italic; color: var(--c-bronze); }

.ba-head p {
  color: var(--c-mocha);
  max-width: 56ch;
  margin: var(--s-3) auto 0;
  line-height: 1.7;
}

.ba-wrap {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(31,22,12,0.5);
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  cursor: ew-resize;
  background: var(--c-espresso);
}

.ba-wrap .ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-after-clip {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  will-change: width;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(250,246,240,0.92);
  transform: translateX(-50%);
  z-index: 4;
  box-shadow: 0 0 22px rgba(0,0,0,0.4);
  will-change: left;
}

.ba-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-ivory);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.45);
}

.ba-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 22px;
  height: 12px;
  background:
    linear-gradient(to right, var(--c-espresso) 2px, transparent 2px) left center / 6px 12px no-repeat,
    linear-gradient(to left, var(--c-espresso) 2px, transparent 2px) right center / 6px 12px no-repeat;
}

.ba-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.ba-handle span::before,
.ba-handle span::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border: 1.5px solid var(--c-espresso);
  border-right: 0;
  border-bottom: 0;
}

.ba-handle span::before { left: 0; transform: translateY(-50%) rotate(-45deg); }
.ba-handle span::after { right: 0; transform: translateY(-50%) rotate(135deg); }

.ba-label {
  position: absolute;
  top: var(--s-4);
  z-index: 3;
  font-size: var(--t-2xs);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-ivory);
  background: rgba(27,19,12,0.55);
  padding: 0.5em 1em;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.ba-label-before { left: var(--s-4); }
.ba-label-after { right: var(--s-4); }

@media (max-width: 600px) {
  .ba-wrap { aspect-ratio: 3 / 4; }
  .ba-handle::after { width: 42px; height: 42px; }
}

.contact-grid--single { grid-template-columns: 1fr !important; }

.feature-block-grid--single {
  grid-template-columns: 1fr !important;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.feature-block-grid--single .eyebrow { justify-content: center; }
.feature-block-grid--single p { margin-left: auto; margin-right: auto; }
.feature-block-grid--single .stat-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.feature-block-grid--single .btn { margin-left: auto; margin-right: auto; }

/* Instagram CTA — replaces broken Elfsight widget */
.insta-cta {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  max-width: 560px;
  margin: var(--s-7) auto 0;
  padding: var(--s-5) var(--s-6);
  background: var(--c-ivory-warm);
  border: 1px solid rgba(184,148,109,0.22);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--c-espresso);
  box-shadow: 0 16px 40px -22px rgba(31,22,12,0.32);
  transition: transform 0.4s var(--ease-luxe), box-shadow 0.5s var(--ease-luxe), background 0.4s var(--ease-luxe);
}

.insta-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px -22px rgba(31,22,12,0.45);
  background: var(--c-ivory);
}

.insta-cta > svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--c-bronze);
}

.insta-cta-text { display: flex; flex-direction: column; gap: 0.2em; }
.insta-cta-text .line-1 {
  font-size: var(--t-2xs);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-mocha);
}
.insta-cta-text .line-2 {
  font-family: var(--f-serif);
  font-size: var(--t-lg);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: var(--c-espresso);
}
.insta-cta-text .line-2 .arrow {
  width: 16px;
  height: 8px;
  transition: transform 0.4s var(--ease-luxe);
}
.insta-cta:hover .line-2 .arrow { transform: translateX(4px); }

@media (max-width: 540px) {
  .insta-cta { gap: var(--s-4); padding: var(--s-4) var(--s-5); }
  .insta-cta > svg { width: 36px; height: 36px; }
}

/* ============================================================
   COOKIE CONSENT BANNER
   Elegant, brand-aligned, bottom of screen
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(161, 131, 83, 0.20);
  border-radius: 6px;
  padding: 22px 26px;
  box-shadow:
    0 1px 3px rgba(27, 19, 12, 0.05),
    0 20px 60px -10px rgba(27, 19, 12, 0.25);
  z-index: 200;
  font-family: 'Inter', sans-serif;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
  pointer-events: none;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-banner__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ede0cf 0%, #d4b88a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.cookie-banner__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 18px;
  color: #1B130C;
  letter-spacing: 0.02em;
  margin: 0;
}
.cookie-banner__text {
  font-size: 13px;
  font-weight: 400;
  color: #5a4a3a;
  line-height: 1.6;
  margin: 0 0 18px;
}
.cookie-banner__text a {
  color: #a18353;
  border-bottom: 1px solid rgba(161, 131, 83, 0.4);
  transition: color 0.2s, border-color 0.2s;
}
.cookie-banner__text a:hover {
  color: #1B130C;
  border-bottom-color: #1B130C;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner__btn {
  flex: 1;
  min-width: 140px;
  padding: 11px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  border: none;
  transition: background 0.25s, color 0.25s, transform 0.1s;
  font-family: inherit;
}
.cookie-banner__btn--primary {
  background: #1B130C;
  color: #faf6f0;
}
.cookie-banner__btn--primary:hover {
  background: #a18353;
}
.cookie-banner__btn--ghost {
  background: transparent;
  color: #5a4a3a;
  border: 1px solid rgba(161, 131, 83, 0.3);
}
.cookie-banner__btn--ghost:hover {
  background: #faf2e2;
  color: #1B130C;
  border-color: #a18353;
}
.cookie-banner__btn:active { transform: translateY(1px); }

@media (max-width: 540px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 18px 20px;
  }
  .cookie-banner__title { font-size: 16px; }
  .cookie-banner__text { font-size: 12.5px; }
  .cookie-banner__btn {
    flex: 1 1 100%;
    padding: 12px 16px;
    font-size: 11.5px;
  }
}
