/* ================================================================
   MAISON NOIRE — Salon de Coiffure Haute Couture
   Design System Ultra Premium
   ================================================================ */

:root {
  --gold:       #c9a967;
  --gold-light: #e2c882;
  --gold-dark:  #a88840;
  --cream:      #f5f0e8;
  --bg:         #080808;
  --bg2:        #0d0d0d;
  --bg3:        #121212;
  --surface:    #1a1a1a;
  --border:     #1f1f1f;
  --border2:    rgba(201, 169, 103, 0.15);
  --text:       #f0ece4;
  --muted:      #666057;
  --muted2:     #9a9088;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'DM Sans', system-ui, sans-serif;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: clamp(14px, 0.833vw + 3.33px, 18px);
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); }

/* ── SELECTION ── */
::selection { background: rgba(201, 169, 103, 0.3); color: var(--cream); }

/* ── PARTICLES ── */
.particles-canvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 32px; height: 32px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  color: var(--gold);
  transition: transform 0.15s var(--ease), opacity 0.2s;
  opacity: 0;
}
.cursor.visible { opacity: 1; }
.cursor-scissors {
  width: 100%; height: 100%;
  filter: drop-shadow(0 0 4px rgba(201,169,103,0.5));
  transition: transform 0.3s var(--ease);
}
body:has(a:hover) .cursor-scissors,
body:has(button:hover) .cursor-scissors { transform: rotate(15deg) scale(1.2); }

.cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.06s linear;
}

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

/* ── TYPOGRAPHY ── */
.serif { font-family: var(--serif); }
.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.eyebrow-label {
  font-size: clamp(0.62rem, 0.68vw, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: clamp(12px, 1.3vh, 16px) clamp(22px, 2vw, 32px);
  background: var(--gold);
  color: var(--bg);
  font-family: var(--sans);
  font-size: clamp(0.78rem, 0.82vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  border: none; border-radius: 2px;
  cursor: none;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn-gold::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}
.btn-gold:hover::before { transform: translateX(100%); }
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(201, 169, 103, 0.35);
}
.btn-gold.full-w { width: 100%; justify-content: center; }

.btn-text {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: clamp(0.78rem, 0.82vw, 0.88rem);
  font-weight: 500;
  color: var(--muted2);
  letter-spacing: 0.04em;
  cursor: none;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.btn-text:hover { color: var(--gold); border-color: var(--gold-dark); }

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(1rem, 1.8vh, 1.6rem) clamp(1.5rem, 3vw, 3.5rem);
  transition: background 0.5s var(--ease), padding 0.4s, border-color 0.5s;
}
.nav.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  padding: clamp(0.7rem, 1.2vh, 1rem) clamp(1.5rem, 3vw, 3.5rem);
  border-bottom: 1px solid var(--border2);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(0.95rem, 1.1vw, 1.2rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.logo-rule {
  width: 20px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.logo-serif.italic { font-style: italic; }

.nav-links {
  display: flex; gap: clamp(1.5rem, 2.5vw, 3rem);
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font-size: clamp(0.68rem, 0.72vw, 0.78rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted2);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-book {
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
  font-size: clamp(0.68rem, 0.72vw, 0.76rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: none;
  transition: color 0.25s;
}
.nav-book-line {
  width: 100%;
  height: 1px;
  background: var(--gold-dark);
  transform-origin: right;
  transform: scaleX(0.5);
  transition: transform 0.35s var(--ease), background 0.25s;
}
.nav-book:hover .nav-book-line { transform: scaleX(1); background: var(--gold); }

.burger {
  display: none; flex-direction: column; gap: 8px;
  background: none; border: none; cursor: none; padding: 4px;
}
.burger span {
  display: block; width: 22px; height: 1px;
  background: var(--text);
  transition: transform 0.35s var(--ease), opacity 0.25s;
}

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

.hero-bg {
  position: absolute; inset: -15%;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(201,169,103,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 75% 70%, rgba(201,169,103,0.04) 0%, transparent 50%),
    linear-gradient(160deg, #080808 0%, #0c0a06 50%, #080808 100%);
  will-change: transform;
}

.hero-noise {
  position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Side vertical text */
.hero-side-text {
  position: absolute; z-index: 3;
  top: 50%; transform: translateY(-50%);
  font-size: clamp(0.58rem, 0.65vw, 0.68rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 12px;
}
.hero-side-text.left  { left: clamp(1.2rem, 2.5vw, 2.5rem); writing-mode: vertical-lr; transform: translateY(-50%) rotate(180deg); }
.hero-side-text.right { right: clamp(1.2rem, 2.5vw, 2.5rem); writing-mode: vertical-lr; }
.hero-side-text::before {
  content: '';
  display: block;
  width: 1px; height: 40px;
  background: var(--border2);
  flex-shrink: 0;
}

.hero-content {
  position: relative; z-index: 4;
  text-align: center;
  padding: 0 1rem;
}

.hero-eyebrow {
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
  margin-bottom: clamp(1.2rem, 2.5vh, 2.5rem);
}
.eyebrow-line {
  width: clamp(30px, 3vw, 50px); height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark));
}
.eyebrow-line:last-child {
  background: linear-gradient(90deg, var(--gold-dark), transparent);
}
.hero-eyebrow span {
  font-size: clamp(0.6rem, 0.7vw, 0.72rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.5rem, min(10vw, 16vh), 9rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: clamp(1.2rem, 2.5vh, 2rem);
}
.ht-line { display: block; }
.ht-line.italic { font-style: italic; color: var(--gold); }

.hero-desc {
  font-size: clamp(0.82rem, 1vw, 1rem);
  font-weight: 300;
  color: var(--muted2);
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto clamp(1.5rem, 3vh, 2.5rem);
}

.hero-cta {
  display: flex; gap: clamp(1rem, 2vw, 2rem);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: clamp(1.5rem, 2.5vh, 2.5rem); left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 4;
}
.scroll-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-track {
  width: 1px; height: clamp(24px, 3vh, 40px);
  background: linear-gradient(to bottom, var(--gold-dark), transparent);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.6); }
}

/* Ribbon */
.hero-ribbon {
  position: absolute; bottom: clamp(50px, 6vh, 70px); left: 0; right: 0;
  overflow: hidden;
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  padding: 10px 0;
  z-index: 3;
}
.ribbon-inner {
  display: flex; gap: 2.5rem;
  white-space: nowrap;
  animation: ribbonScroll 20s linear infinite;
  font-family: var(--serif);
  font-size: clamp(0.72rem, 0.8vw, 0.85rem);
  font-style: italic;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.ribbon-inner .r-sep { color: var(--gold); font-style: normal; }
@keyframes ribbonScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   SERVICES
   ================================================================ */
.services {
  padding: clamp(4rem, 8vh, 9rem) 0;
  background: var(--bg2);
  position: relative;
}
.services::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}
.services-header {
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.service-card {
  background: var(--bg3);
  padding: clamp(1.5rem, 2.5vh, 2.5rem) clamp(1.2rem, 1.8vw, 2rem);
  display: flex; flex-direction: column;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease);
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,169,103,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after  { transform: scaleX(1); }
.service-card:hover { background: #0f0f0f; }

.service-card.featured-card {
  background: linear-gradient(160deg, #100d07 0%, #0d0a05 100%);
  border-right: 1px solid var(--border2);
  border-left: 1px solid var(--border2);
}
.service-card.featured-card::after { transform: scaleX(1); }

.sc-number {
  font-family: var(--serif);
  font-size: clamp(2rem, 2.5vw, 3rem);
  font-weight: 300;
  color: var(--border2);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
.service-card:hover .sc-number { color: rgba(201,169,103,0.2); }
.service-card.featured-card .sc-number { color: rgba(201,169,103,0.15); }

.sc-icon {
  width: clamp(32px, 3.5vw, 44px);
  height: clamp(32px, 3.5vw, 44px);
  color: var(--gold);
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.4s var(--ease);
}
.service-card:hover .sc-icon { opacity: 1; transform: scale(1.05); }

.service-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1rem, 1.2vw, 1.35rem);
  letter-spacing: 0.02em;
  color: var(--text);
}
.service-card p {
  font-size: clamp(0.75rem, 0.82vw, 0.85rem);
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.sc-footer {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: auto;
}
.sc-from {
  font-size: clamp(0.7rem, 0.78vw, 0.8rem);
  color: var(--gold);
  font-style: italic;
  font-family: var(--serif);
}
.sc-link {
  font-size: clamp(0.68rem, 0.72vw, 0.76rem);
  font-weight: 500;
  color: var(--muted2);
  letter-spacing: 0.06em;
  cursor: none;
  transition: color 0.25s;
}
.sc-link:hover { color: var(--gold); }

/* ================================================================
   ABOUT
   ================================================================ */
.about {
  padding: clamp(4rem, 8vh, 9rem) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.about-parallax {
  position: absolute; inset: -20%;
  background:
    radial-gradient(ellipse 60% 50% at 15% 60%, rgba(201,169,103,0.05) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, #0a0905 50%, var(--bg) 100%);
  will-change: transform;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
  position: relative; z-index: 1;
}

/* Visual */
.about-img-frame {
  position: relative;
  height: clamp(360px, 50vh, 560px);
}
.img-placeholder {
  position: absolute;
  border-radius: 2px;
  overflow: hidden;
}
.about-img-1 {
  top: 0; left: 0;
  width: 65%; height: 72%;
  background: linear-gradient(135deg, #1a1208 0%, #2a1e0e 50%, #4a3520 100%);
}
.about-img-2 {
  bottom: 0; right: 0;
  width: 55%; height: 58%;
  background: linear-gradient(135deg, #0d100e 0%, #1a2218 50%, #2a3a28 100%);
}
.img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.5) 0%, transparent 50%);
}
.img-caption {
  position: absolute; bottom: 1rem; left: 1rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.about-years {
  position: absolute; bottom: 18%; left: 50%; transform: translateX(-50%);
  background: var(--bg);
  border: 1px solid var(--border2);
  padding: clamp(0.8rem, 1.5vh, 1.2rem) clamp(1rem, 1.5vw, 1.5rem);
  text-align: center;
  white-space: nowrap;
  z-index: 2;
}
.years-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.years-label {
  font-size: clamp(0.6rem, 0.65vw, 0.68rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}

/* Content */
.about-text {
  display: flex; flex-direction: column; gap: 1rem;
  margin-bottom: 2rem;
}
.about-text p {
  font-size: clamp(0.85rem, 0.92vw, 0.95rem);
  color: var(--muted2);
  line-height: 1.75;
}

.about-values { display: flex; flex-direction: column; gap: 1rem; }
.value-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
}
.vi-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.6rem;
}
.value-item strong {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--text);
  margin-bottom: 0.15rem;
}
.value-item span {
  font-size: clamp(0.72rem, 0.78vw, 0.8rem);
  color: var(--muted);
}

/* ================================================================
   GALLERY
   ================================================================ */
.gallery {
  padding: clamp(4rem, 8vh, 9rem) 0 0;
  background: var(--bg2);
  position: relative;
}
.gallery::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}
.gallery-header {
  margin-bottom: clamp(2rem, 4vh, 3.5rem);
}
.gallery-header .container { } /* inherits */

.gallery-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: clamp(140px, 20vh, 220px) clamp(140px, 20vh, 220px);
  gap: 2px;
}
.gb-item {
  position: relative;
  overflow: hidden;
  cursor: none;
  grid-column: span 3;
}
.gb-item.gb-large { grid-column: span 4; grid-row: span 2; }
.gb-item.gb-tall  { grid-column: span 3; grid-row: span 2; }
.gb-item.gb-wide  { grid-column: span 5; }

.gb-img {
  width: 100%; height: 100%;
  transition: transform 0.7s var(--ease), filter 0.4s;
  filter: brightness(0.7) saturate(0.8);
}
.gb-item:hover .gb-img {
  transform: scale(1.06);
  filter: brightness(0.9) saturate(1.1);
}

.gb-hover {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: clamp(0.8rem, 1.5vw, 1.5rem);
  background: linear-gradient(to top, rgba(8,8,8,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gb-item:hover .gb-hover { opacity: 1; }
.gb-hover span {
  font-family: var(--serif);
  font-size: clamp(0.9rem, 1.1vw, 1.2rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.gb-hover p {
  font-size: clamp(0.65rem, 0.72vw, 0.75rem);
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* Gold line at bottom */
.gb-item::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  transform: scaleX(0);
  transition: transform 0.5s var(--ease);
}
.gb-item:hover::after { transform: scaleX(1); }

/* ================================================================
   TEAM
   ================================================================ */
.team {
  padding: clamp(4rem, 8vh, 9rem) 0;
  background: var(--bg);
  position: relative;
}
.team::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}
.team-header { margin-bottom: clamp(2.5rem, 5vh, 4rem); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
}

.team-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.team-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
}

.tc-portrait {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.portrait-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.portrait-initials {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(201,169,103,0.3);
  letter-spacing: 0.05em;
}
.tc-badge {
  position: absolute; top: 1rem; right: 1rem;
  padding: 4px 10px;
  background: rgba(8,8,8,0.85);
  border: 1px solid var(--border2);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-radius: 2px;
  backdrop-filter: blur(8px);
}

.tc-info {
  padding: clamp(1.2rem, 2vh, 1.8rem) clamp(1rem, 1.5vw, 1.5rem);
}
.tc-info h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.1rem, 1.3vw, 1.4rem);
  color: var(--text);
  margin-bottom: 0.2rem;
}
.tc-title {
  font-size: clamp(0.68rem, 0.72vw, 0.76rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.tc-bio {
  font-size: clamp(0.75rem, 0.8vw, 0.84rem);
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.tc-tags {
  display: flex; gap: 0.4rem; flex-wrap: wrap;
}
.tc-tags span {
  padding: 3px 10px;
  background: rgba(201,169,103,0.06);
  border: 1px solid var(--border2);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
}

/* ================================================================
   PRICING
   ================================================================ */
.pricing {
  padding: clamp(4rem, 8vh, 9rem) 0;
  background: var(--bg2);
  position: relative;
}
.pricing::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}
.pricing-header { margin-bottom: clamp(2.5rem, 5vh, 4rem); }

.pricing-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.price-col {
  background: var(--bg3);
  padding: clamp(1.5rem, 2.5vh, 2.5rem) clamp(1.2rem, 2vw, 2rem);
}
.price-col-featured {
  background: linear-gradient(160deg, #100d07 0%, #0d0a05 100%);
  position: relative;
}
.pcf-badge {
  position: absolute; top: 0; right: 0;
  padding: 5px 14px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom-left-radius: 3px;
}

.price-col-title {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.3rem, 1.8vw, 2rem);
  color: var(--gold);
  margin-bottom: clamp(1rem, 2vh, 1.5rem);
  padding-bottom: clamp(0.8rem, 1.5vh, 1rem);
  border-bottom: 1px solid var(--border2);
}

.price-list { display: flex; flex-direction: column; }
.price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: clamp(0.6rem, 0.9vh, 0.85rem) 0;
  border-bottom: 1px solid var(--border);
  gap: 0.5rem;
}
.price-row:last-child { border-bottom: none; }
.price-row span:first-child {
  font-size: clamp(0.78rem, 0.85vw, 0.9rem);
  color: var(--muted2);
  font-weight: 300;
}
.price-row span:last-child {
  font-family: var(--serif);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-style: italic;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.pricing-note {
  font-size: clamp(0.68rem, 0.72vw, 0.74rem);
  color: var(--muted);
  font-style: italic;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials {
  padding: clamp(4rem, 8vh, 9rem) 0;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}
.testimonials::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}

.testi-track {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  transition: transform 0.6s var(--ease);
  will-change: transform;
}

.testi-card {
  flex: 0 0 calc(50% - 1rem);
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: clamp(1.5rem, 2.5vh, 2.5rem) clamp(1.5rem, 2vw, 2.5rem);
  transition: border-color 0.3s;
}
.testi-card:hover { border-color: var(--border2); }

.testi-stars {
  color: var(--gold);
  font-size: clamp(0.7rem, 0.8vw, 0.85rem);
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.testi-card blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.2vw, 1.3rem);
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.testi-card cite {
  font-size: clamp(0.68rem, 0.72vw, 0.76rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

.testi-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem;
  margin-top: clamp(1.5rem, 3vh, 2.5rem);
}
.tn-prev, .tn-next {
  width: 40px; height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--muted2);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}
.tn-prev:hover, .tn-next:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.05);
}
.testi-dots { display: flex; gap: 6px; }
.testi-dot {
  width: 5px; height: 5px;
  background: var(--border);
  border-radius: 50%;
  transition: background 0.25s, transform 0.25s;
  cursor: none;
}
.testi-dot.active { background: var(--gold); transform: scale(1.3); }

/* ================================================================
   BOOKING
   ================================================================ */
.booking {
  padding: clamp(4rem, 8vh, 9rem) 0;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}
.booking-bg {
  position: absolute; inset: -20%;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(201,169,103,0.04) 0%, transparent 55%);
  will-change: transform;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
  position: relative; z-index: 1;
}

.booking-sub {
  font-size: clamp(0.82rem, 0.9vw, 0.95rem);
  color: var(--muted2);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
  font-weight: 300;
}

.booking-details { display: flex; flex-direction: column; gap: 1.2rem; }
.bd-item { display: flex; gap: 1rem; align-items: flex-start; }
.bd-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border2);
  border-radius: 2px;
  color: var(--gold);
}
.bd-icon svg { width: 16px; height: 16px; }
.bd-item strong {
  display: block;
  font-size: clamp(0.7rem, 0.75vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.15rem;
}
.bd-item span {
  font-size: clamp(0.75rem, 0.8vw, 0.84rem);
  color: var(--muted);
}

/* Form — floating labels */
.booking-form {
  display: flex; flex-direction: column;
  gap: clamp(0.8rem, 1.5vh, 1.2rem);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.6rem, 1vw, 1rem);
}

.form-field {
  position: relative;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: clamp(1.4rem, 2vh, 1.8rem) clamp(0.9rem, 1.2vw, 1.1rem) clamp(0.5rem, 0.8vh, 0.7rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text);
  font-size: clamp(0.82rem, 0.88vw, 0.9rem);
  font-weight: 300;
  outline: none;
  appearance: none;
  transition: border-color 0.25s, background 0.25s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold-dark);
  background: rgba(201,169,103,0.03);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field select { cursor: none; }
.form-field select option { background: var(--bg3); }

/* Floating label */
.form-field label {
  position: absolute;
  top: 50%; left: clamp(0.9rem, 1.2vw, 1.1rem);
  transform: translateY(-50%);
  font-size: clamp(0.75rem, 0.8vw, 0.82rem);
  font-weight: 400;
  color: var(--muted);
  pointer-events: none;
  transition: top 0.25s var(--ease), font-size 0.25s, color 0.25s, transform 0.25s;
}
/* For textarea label */
.form-field:has(textarea) label {
  top: clamp(1rem, 1.5vh, 1.2rem);
  transform: none;
}
.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field select:focus + label,
.form-field select:not([value=""]) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
  top: clamp(0.35rem, 0.6vh, 0.5rem);
  transform: translateY(0);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.form-field:has(textarea) input:focus + label,
.form-field:has(textarea) textarea:focus + label { top: clamp(0.35rem, 0.6vh, 0.5rem); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: clamp(3rem, 5vh, 4rem) 0 clamp(1.5rem, 2.5vh, 2rem);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-bottom: clamp(2rem, 4vh, 3rem);
  padding-bottom: clamp(1.5rem, 3vh, 2.5rem);
  border-bottom: 1px solid var(--border);
}
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(0.85rem, 1vw, 1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.footer-brand p {
  font-size: clamp(0.72rem, 0.78vw, 0.8rem);
  color: var(--muted);
  line-height: 1.6;
}
.footer-nav {
  display: flex; flex-direction: column; gap: 0.6rem;
}
.footer-nav strong {
  font-size: clamp(0.62rem, 0.68vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.footer-nav a, .footer-nav span {
  font-size: clamp(0.72rem, 0.78vw, 0.82rem);
  color: var(--muted);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }
.social-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: clamp(0.72rem, 0.78vw, 0.82rem);
  color: var(--muted);
  transition: color 0.2s;
  cursor: none;
}
.social-link::before {
  content: '→';
  color: var(--gold-dark);
  font-size: 0.7rem;
}
.social-link:hover { color: var(--gold); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p {
  font-size: clamp(0.65rem, 0.7vw, 0.72rem);
  color: var(--muted);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: clamp(0.65rem, 0.7vw, 0.72rem);
  color: var(--muted);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold); }

/* ================================================================
   REVEAL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* 1440px */
@media (max-width: 1440px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-bento {
    grid-template-rows: clamp(120px, 18vh, 200px) clamp(120px, 18vh, 200px);
  }
}

/* 1200px */
@media (max-width: 1200px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .pricing-layout { grid-template-columns: 1fr; }
  .price-col-featured { order: -1; }
}

/* 1024px */
@media (max-width: 1024px) {
  .about-grid   { gap: clamp(2rem, 4vw, 4rem); }
  .booking-grid { gap: clamp(2rem, 4vw, 4rem); }
  .team-grid    { grid-template-columns: 1fr 1fr; }
}

/* 900px */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-book  { display: none; }
  .burger    { display: flex; }

  .about-grid   { grid-template-columns: 1fr; }
  .about-img-frame { height: clamp(280px, 40vh, 420px); }
  .booking-grid { grid-template-columns: 1fr; }
  .team-grid    { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  .gallery-bento {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: clamp(120px, 18vh, 180px) clamp(120px, 18vh, 180px) clamp(120px, 18vh, 180px);
  }
  .gb-item.gb-large { grid-column: span 3; grid-row: span 2; }
  .gb-item.gb-tall  { grid-column: span 3; grid-row: span 2; }
  .gb-item.gb-wide  { grid-column: span 6; }
  .gb-item          { grid-column: span 3; }

  .testi-card { flex: 0 0 calc(100% - 0.5rem); }
}

/* 640px */
@media (max-width: 640px) {
  .hero-side-text { display: none; }
  .hero-title { font-size: clamp(3rem, min(13vw, 14vh), 6rem); }
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row   { grid-template-columns: 1fr; }
  .pricing-layout { gap: 1px; }
  .gallery-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(5, clamp(100px, 20vw, 160px));
  }
  .gb-item, .gb-item.gb-large, .gb-item.gb-tall, .gb-item.gb-wide {
    grid-column: span 1; grid-row: span 1;
  }
}

/* 420px */
@media (max-width: 420px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-eyebrow span { display: none; }
  .about-img-frame { height: clamp(220px, 55vw, 320px); }
}

/* 4K+ */
@media (min-width: 2560px) {
  .container { max-width: 1600px; }
  html       { font-size: 20px; }
}
