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

:root {
  --black: #0a0a0a;
  --black-light: #111111;
  --black-card: #161616;
  --black-border: #222222;
  --gold: #c9a96e;
  --gold-light: #dfc89a;
  --gold-dark: #a8874d;
  --white: #f5f0eb;
  --white-dim: #8a8580;
  --white-muted: #5a5550;
  --red-accent: #8b2020;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body { background: var(--black); overflow-x: hidden; }
::selection { background: var(--gold); color: var(--black); }

/* ═══ ANIMATIONS ═══ */
.reveal { opacity: 0; transform: translateY(60px); transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-80px); transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(80px); transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ═══ HEADER ═══ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 clamp(20px, 4vw, 60px); height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201, 169, 110, 0.1);
}
.header-logo {
  font-family: var(--font-display); font-size: 28px; letter-spacing: 4px;
  color: var(--gold); text-decoration: none; transition: opacity 0.3s;
}
.header-logo:hover { opacity: 0.8; }
nav { display: flex; align-items: center; gap: 36px; }
nav a {
  font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: var(--white-dim); text-decoration: none; transition: color 0.3s; position: relative;
}
nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s var(--ease-out-expo);
}
nav a:hover { color: var(--white); }
nav a:hover::after { width: 100%; }
.btn-book {
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--black); background: var(--gold); border: none;
  padding: 14px 32px; cursor: pointer; transition: all 0.4s var(--ease-out-expo);
  text-decoration: none; display: inline-block; position: relative; overflow: hidden;
}
.btn-book::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}
.btn-book:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,169,110,0.3); }
.btn-book:hover::before { left: 100%; }

.mobile-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; background: none; border: none; padding: 8px; }
.mobile-toggle span { width: 28px; height: 1.5px; background: var(--gold); transition: all 0.3s; display: block; }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 10, 10, 0.98); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 40px;
  opacity: 0; transition: opacity 0.4s;
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a { font-family: var(--font-display); font-size: 48px; letter-spacing: 6px; color: var(--white); text-decoration: none; transition: color 0.3s; }
.mobile-menu a:hover { color: var(--gold); }

@media (max-width: 900px) {
  nav { display: none; }
  .mobile-toggle { display: flex; }
  .header-book-desktop { display: none; }
}

/* ═══ HERO ═══ */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: #0a0a0a;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,10,10,0.7) 0%,
    rgba(10,10,10,0.4) 40%,
    rgba(10,10,10,0.6) 70%,
    rgba(10,10,10,0.95) 100%
  );
  z-index: 1;
}
.hero-grain {
  position: absolute; inset: -50%; width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.04; animation: grainShift 0.5s steps(1) infinite; pointer-events: none; z-index: 1;
}
@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-2%, -3%); }
  20% { transform: translate(3%, 1%); }
  30% { transform: translate(-1%, 3%); }
  40% { transform: translate(2%, -2%); }
  50% { transform: translate(-3%, 1%); }
  60% { transform: translate(1%, -1%); }
  70% { transform: translate(-2%, 2%); }
  80% { transform: translate(3%, -3%); }
  90% { transform: translate(-1%, -2%); }
}
.hero-lines { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.hero-lines::before, .hero-lines::after {
  content: ''; position: absolute; width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.08), transparent);
}
.hero-lines::before { left: 20%; }
.hero-lines::after { right: 20%; }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 20px; }
.hero-pre {
  font-size: clamp(11px, 1.2vw, 15px); font-weight: 500; letter-spacing: clamp(4px, 0.6vw, 7px); text-transform: uppercase;
  color: var(--gold); margin-bottom: clamp(20px, 2.4vw, 32px);
  opacity: 0; animation: fadeUp 1s 0.3s var(--ease-out-expo) forwards;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(72px, 14vw, 188px);
  letter-spacing: clamp(3px, 2.5vw, 32px); line-height: 0.92;
  opacity: 0; animation: fadeUp 1s 0.5s var(--ease-out-expo) forwards;
}
.hero-title span {
  display: block;
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.7vw, 22px);
  font-weight: 500; letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: clamp(20px, 2.4vw, 36px);
  opacity: 0; animation: fadeUp 1s 0.8s var(--ease-out-expo) forwards;
}
.hero-tagline em { color: var(--gold); font-style: normal; }
.hero-cta { margin-top: 50px; opacity: 0; animation: fadeUp 1s 1.1s var(--ease-out-expo) forwards; display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-cta .btn-book { padding: 18px 48px; font-size: 13px; letter-spacing: 4px; }
@media (max-width: 520px) { .hero-cta { flex-direction: column; align-items: center; width: 100%; } .hero-cta .btn-book { width: min(320px, 88vw); padding: 16px 28px; } }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp 1s 1.5s var(--ease-out-expo) forwards; z-index: 2;
}
.hero-scroll span { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--white-muted); }
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 1; transform: scaleY(1); } 50% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

/* ═══ SECTIONS ═══ */
section { padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 80px); }
.section-label { font-size: 11px; font-weight: 500; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.section-title { font-family: var(--font-display); font-size: clamp(40px, 6vw, 72px); letter-spacing: 4px; line-height: 1; margin-bottom: 20px; }
.section-subtitle { font-family: var(--font-serif); font-size: clamp(16px, 2vw, 20px); font-style: italic; color: var(--white-dim); max-width: 500px; }
.gold-line { width: 60px; height: 1px; background: var(--gold); margin: 24px 0; }
.section-divider { height: 1px; background: linear-gradient(to right, transparent, var(--black-border), transparent); max-width: 1200px; margin: 0 auto; }

/* ═══ ABOUT ═══ */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); max-width: 1300px; margin: 0 auto; align-items: center; }
.about-image {
  aspect-ratio: 3/4; position: relative; overflow: hidden; border: 1px solid rgba(201,169,110,0.15);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 10%; display: block; filter: brightness(0.92) contrast(1.04); }
.about-image-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 30px; background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
}
.about-image-label { font-size: 12px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }
.about-image-sublabel { font-size: 12px; color: var(--white); margin-top: 6px; opacity: 0.78; }
.about-text p { font-size: 15px; line-height: 1.8; color: var(--white-dim); margin-bottom: 20px; font-weight: 300; }
.about-stat-row { display: flex; gap: 40px; margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--black-border); }
.about-stat-num { font-family: var(--font-display); font-size: clamp(56px, 7vw, 88px); color: var(--gold); line-height: 0.9; letter-spacing: 1px; }
.about-stat-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--white-muted); margin-top: 6px; }
@media (max-width: 900px) { .about { grid-template-columns: 1fr; gap: 32px; } .about-image { aspect-ratio: 4/5; max-height: none; } }

/* ═══ SERVICES ═══ */
.services { max-width: 1100px; margin: 0 auto; }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-subtitle { margin: 0 auto; }

/* Services split layout */
.services-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.services-image {
  position: relative; overflow: hidden; min-height: 600px;
  background: url('nelo_img8.jpg') center/cover no-repeat;
}
.services-image::after { content: ''; position: absolute; inset: 0; background: rgba(10,10,10,0.3); }
.services-list { background: var(--black-card); }

.service-card {
  padding: 28px 40px; display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--black-border); position: relative; overflow: hidden;
  transition: all 0.4s var(--ease-out-expo); cursor: default;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0;
  background: var(--gold); transition: height 0.5s var(--ease-out-expo);
}
.service-card:hover { background: rgba(201,169,110,0.04); padding-left: 48px; }
.service-card:hover::before { height: 100%; }
.service-name { font-family: var(--font-display); font-size: 22px; letter-spacing: 3px; }
.service-desc { font-size: 12px; color: var(--white-muted); font-weight: 300; margin-top: 2px; }
.service-right { text-align: right; }
.service-price { font-family: var(--font-display); font-size: 32px; color: var(--gold); }
.service-duration { font-size: 11px; color: var(--white-muted); letter-spacing: 1px; }
.service-card.featured { background: linear-gradient(135deg, rgba(201,169,110,0.08), var(--black-card)); }
.service-card.featured .service-name { color: var(--gold); }
.featured-badge {
  font-size: 8px; letter-spacing: 3px; text-transform: uppercase;
  background: var(--gold); color: var(--black); padding: 3px 10px; font-weight: 600;
  display: inline-block; margin-bottom: 4px;
}
@media (max-width: 800px) {
  .services-split { grid-template-columns: 1fr; }
  .services-image { min-height: 300px; }
}

/* ═══ GALLERY ═══ */
.gallery { max-width: 1400px; margin: 0 auto; }
.gallery-header { text-align: center; margin-bottom: 60px; }
.gallery-header .section-subtitle { margin: 0 auto; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(3, 220px); gap: 6px; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease-out-expo), filter 0.4s; filter: brightness(0.85) saturate(0.9); }
.gallery-item:hover img { transform: scale(1.08); filter: brightness(1) saturate(1); }
.gallery-item::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover::before { opacity: 1; }
.gallery-item-label {
  position: absolute; bottom: 16px; left: 16px; z-index: 2;
  opacity: 0; transform: translateY(10px); transition: all 0.4s var(--ease-out-expo);
}
.gallery-item:hover .gallery-item-label { opacity: 1; transform: translateY(0); }
.gallery-item-label span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
.gallery-item:nth-child(6) { grid-column: 1 / 3; }
@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; }
  .gallery-item:nth-child(6) { grid-column: 1 / 3; }
  .gallery-item { min-height: 200px; }
}

/* ═══ INSTAGRAM BANNER ═══ */
.ig-banner {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
  text-align: center;
  background: linear-gradient(135deg, rgba(201,169,110,0.06), transparent);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}
.ig-banner-title {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 4px; margin-bottom: 12px;
}
.ig-banner-sub { font-family: var(--font-serif); font-style: italic; color: var(--white-dim); font-size: 18px; margin-bottom: 30px; }
.ig-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.ig-link {
  display: flex; align-items: center; gap: 12px; padding: 16px 28px;
  border: 1px solid var(--black-border); text-decoration: none; color: var(--white);
  transition: all 0.4s; background: var(--black-card);
}
.ig-link:hover { border-color: var(--gold); background: rgba(201,169,110,0.06); }
.ig-link svg { color: var(--gold); flex-shrink: 0; }
.ig-link-handle { font-size: 14px; font-weight: 500; }
.ig-link-count { font-size: 11px; color: var(--gold); letter-spacing: 1px; }

/* ═══ BOOKING ═══ */
.booking { max-width: 900px; margin: 0 auto; }
.booking-header { text-align: center; margin-bottom: 60px; }
.booking-header .section-subtitle { margin: 0 auto; }
.booking-container { background: var(--black-card); border: 1px solid var(--black-border); overflow: hidden; }
.booking-progress { display: flex; border-bottom: 1px solid var(--black-border); }
.booking-step-indicator {
  flex: 1; padding: 20px; text-align: center; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--white-muted);
  position: relative; transition: color 0.4s; cursor: pointer;
}
.booking-step-indicator.active { color: var(--gold); }
.booking-step-indicator.completed { color: var(--white-dim); }
.booking-step-indicator::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px; background: var(--gold); transform: scaleX(0);
  transition: transform 0.5s var(--ease-out-expo);
}
.booking-step-indicator.active::after { transform: scaleX(1); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border: 1px solid currentColor;
  border-radius: 50%; font-size: 11px; margin-right: 8px; transition: all 0.3s;
}
.booking-step-indicator.active .step-num { background: var(--gold); border-color: var(--gold); color: var(--black); }
.booking-step-indicator.completed .step-num { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--black); }
.booking-body { padding: clamp(30px, 4vw, 50px); position: relative; min-height: 400px; }
.booking-panel { display: none; animation: panelIn 0.5s var(--ease-out-expo); }
.booking-panel.active { display: block; }
@keyframes panelIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

.book-services { display: grid; gap: 10px; }
.book-service-option {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px; background: var(--black); border: 1px solid var(--black-border);
  border-radius: 2px;
  cursor: pointer; transition: all 0.3s;
}
.book-service-option:hover { border-color: rgba(201,169,110,0.3); background: rgba(201,169,110,0.03); }
.book-service-option.selected { border-color: var(--gold); background: rgba(201,169,110,0.06); }
.svc-name { font-family: var(--font-display); font-size: 20px; letter-spacing: 2px; }
.svc-duration { font-size: 12px; color: var(--white-muted); margin-top: 2px; }
.svc-price { font-family: var(--font-display); font-size: 28px; color: var(--gold); }

.calendar-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.calendar-nav h3 { font-family: var(--font-display); font-size: 24px; letter-spacing: 3px; }
.calendar-nav button {
  background: none; border: 1px solid var(--black-border); color: var(--white);
  width: 40px; height: 40px; cursor: pointer; font-size: 18px; transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.calendar-nav button:hover { border-color: var(--gold); color: var(--gold); }
.calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; text-align: center; margin-bottom: 8px; }
.calendar-days span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--white-muted); padding: 8px 0; }
.calendar-dates { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.calendar-date {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 14px; cursor: pointer; transition: all 0.3s; color: var(--white-dim); border: 1px solid transparent;
}
.calendar-date:hover:not(.empty):not(.past) { border-color: var(--gold); color: var(--white); }
.calendar-date.selected { background: var(--gold); color: var(--black); font-weight: 600; }
.calendar-date.today { border-color: var(--gold-dark); }
.calendar-date.past { color: var(--white-muted); opacity: 0.3; cursor: default; }
.calendar-date.empty { cursor: default; }
.time-slots-label { font-family: var(--font-display); font-size: 18px; letter-spacing: 2px; margin: 30px 0 16px; }
.time-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 8px; }
.time-slot {
  padding: 12px; text-align: center; background: var(--black); border: 1px solid var(--black-border);
  font-size: 13px; cursor: pointer; transition: all 0.3s;
}
.time-slot:hover { border-color: var(--gold); color: var(--gold); }
.time-slot.selected { background: var(--gold); color: var(--black); border-color: var(--gold); font-weight: 600; }

.booking-form { display: grid; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--white-muted); }
.form-group input, .form-group textarea {
  background: var(--black); border: 1px solid var(--black-border); color: var(--white);
  padding: 14px 18px; font-family: var(--font-body); font-size: 14px; outline: none; transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

.confirmation { text-align: center; padding: 40px 0; }
.confirm-icon {
  width: 80px; height: 80px; border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-size: 36px; color: var(--gold);
  animation: confirmPop 0.6s var(--ease-out-expo);
}
@keyframes confirmPop { 0% { transform: scale(0); opacity: 0; } 60% { transform: scale(1.15); } 100% { transform: scale(1); opacity: 1; } }
.confirm-title { font-family: var(--font-display); font-size: 36px; letter-spacing: 4px; margin-bottom: 12px; }
.confirm-details { color: var(--white-dim); font-size: 15px; line-height: 1.8; }
.confirm-details strong { color: var(--gold); font-weight: 500; }
.confirm-summary { margin-top: 30px; padding: 24px; background: var(--black); border: 1px solid var(--black-border); text-align: left; display: grid; gap: 12px; }
.confirm-row { display: flex; justify-content: space-between; font-size: 14px; }
.confirm-row .label { color: var(--white-muted); }
.confirm-row .value { color: var(--white); font-weight: 500; }

.booking-footer { display: flex; justify-content: space-between; margin-top: 30px; gap: 16px; }
.btn-back {
  background: none; border: 1px solid var(--black-border); color: var(--white-dim);
  padding: 14px 32px; font-family: var(--font-body); font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase; cursor: pointer; transition: all 0.3s;
}
.btn-back:hover { border-color: var(--white); color: var(--white); }
.btn-next {
  background: var(--gold); border: none; color: var(--black); padding: 14px 40px;
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
}
.btn-next:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,169,110,0.25); }
.btn-next:disabled { opacity: 0.3; cursor: not-allowed; transform: none; box-shadow: none; }

@media (max-width: 600px) {
  .booking-step-indicator { font-size: 9px; padding: 14px 8px; }
  .step-label { display: none; }
}

/* ═══ TESTIMONIALS ═══ */
.testimonials { max-width: 1200px; margin: 0 auto; overflow: hidden; }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .section-subtitle { margin: 0 auto; }
.testimonial-track { display: flex; gap: 24px; transition: transform 0.6s var(--ease-out-expo); }
.testimonial-card {
  min-width: calc(33.33% - 16px); background: var(--black-card);
  border: 1px solid var(--black-border); border-radius: 2px; padding: 40px; flex-shrink: 0; transition: all 0.4s;
}
.testimonial-card:hover { border-color: rgba(201,169,110,0.2); }
.testimonial-stars { color: var(--gold); font-size: 14px; letter-spacing: 4px; margin-bottom: 20px; }
.testimonial-text { font-family: var(--font-serif); font-size: 18px; font-style: italic; line-height: 1.7; color: var(--white-dim); margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; color: var(--black);
}
.testimonial-author-name { font-size: 14px; font-weight: 500; }
.testimonial-author-info { font-size: 12px; color: var(--white-muted); }
.testimonial-controls { display: flex; justify-content: center; gap: 16px; margin-top: 40px; }
.testimonial-controls button {
  width: 48px; height: 48px; background: none; border: 1px solid var(--black-border);
  color: var(--white); cursor: pointer; font-size: 20px; transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-controls button:hover { border-color: var(--gold); color: var(--gold); }
@media (max-width: 900px) { .testimonial-card { min-width: calc(50% - 12px); } }
@media (max-width: 600px) { .testimonial-card { min-width: 100%; } }

/* ═══ LOCATION ═══ */
.location { max-width: 1200px; margin: 0 auto; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 60px; }
.location-map {
  position: relative; overflow: hidden; min-height: 450px;
}
.location-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(1) contrast(1.1) brightness(0.7) hue-rotate(180deg); }
.location-info {
  background: var(--black-card); padding: clamp(30px, 4vw, 60px);
  display: flex; flex-direction: column; justify-content: center;
}
.location-info h3 { font-family: var(--font-display); font-size: 32px; letter-spacing: 3px; margin-bottom: 30px; }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--black-border); font-size: 14px; }
.hours-row .day { color: var(--white-dim); }
.hours-row .time { color: var(--white); font-weight: 500; }
.hours-row .time.closed { color: var(--red-accent); }
.contact-info { display: grid; gap: 16px; margin-top: 24px; }
.contact-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--white-dim); }
.contact-icon { width: 36px; height: 36px; border: 1px solid var(--black-border); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
@media (max-width: 700px) { .location-grid { grid-template-columns: 1fr; } }

/* ═══ FOOTER ═══ */
footer { border-top: 1px solid var(--black-border); padding: clamp(60px, 6vw, 100px) clamp(20px, 5vw, 80px) 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: clamp(30px, 4vw, 60px); max-width: 1200px; margin: 0 auto; }
.footer-brand .header-logo { display: block; margin-bottom: 16px; font-size: 24px; }
.footer-brand p { font-size: 14px; color: var(--white-muted); line-height: 1.6; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; border: 1px solid var(--black-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--white-dim); text-decoration: none; transition: all 0.3s; font-size: 16px;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-family: var(--font-display); font-size: 16px; letter-spacing: 3px; margin-bottom: 20px; }
.footer-col a { display: block; font-size: 13px; color: var(--white-muted); text-decoration: none; padding: 6px 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.newsletter-form { display: flex; gap: 0; margin-top: 4px; }
.newsletter-form input {
  flex: 1; background: var(--black); border: 1px solid var(--black-border); border-right: none;
  color: var(--white); padding: 12px 16px; font-family: var(--font-body); font-size: 13px; outline: none;
}
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form input::placeholder { color: var(--white-muted); }
.newsletter-form button { background: var(--gold); border: none; color: var(--black); padding: 12px 20px; cursor: pointer; font-size: 14px; font-weight: 600; transition: background 0.3s; }
.newsletter-form button:hover { background: var(--gold-light); }
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0; padding-top: 24px;
  border-top: 1px solid var(--black-border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--white-muted);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 8px; text-align: center; } }

/* ═══ SUB-PAGE HERO (smaller than landing hero) ═══ */
.page-hero { position: relative; padding: clamp(96px, 14vw, 160px) clamp(20px, 5vw, 80px) clamp(64px, 8vw, 96px); text-align: center; overflow: hidden; background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(201,169,110,0.04) 0%, transparent 60%), linear-gradient(180deg, #0a0a0a 0%, #0e0e0e 100%); border-bottom: 1px solid var(--black-border); }
.page-hero-pre { font-size: 12px; font-weight: 500; letter-spacing: 6px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.page-hero-title {
  font-family: var(--font-display); font-size: clamp(56px, 9vw, 110px);
  letter-spacing: clamp(6px, 1.5vw, 18px); line-height: 0.95; margin-bottom: 24px;
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.page-hero-tagline {
  font-family: var(--font-serif); font-style: italic; font-size: clamp(18px, 2vw, 24px);
  color: var(--white-dim); max-width: 700px; margin: 0 auto;
}
.page-hero em { color: var(--gold); font-style: normal; }

/* ═══ ABOUT PAGE ═══ */
.story-section { max-width: 900px; margin: 0 auto; }
.story-section p { font-size: 17px; line-height: 1.9; color: var(--white-dim); margin-bottom: 24px; font-weight: 300; }
/* Drop-cap removed - was leaking into centered teaser sections (Claude design tell) */
.story-section p:first-of-type::first-letter { all: unset; }
.story-quote {
  font-family: var(--font-serif); font-style: italic; font-size: clamp(24px, 3vw, 36px);
  color: var(--white); text-align: center; padding: 60px 40px;
  border-top: 1px solid var(--black-border); border-bottom: 1px solid var(--black-border);
  margin: 60px 0; position: relative;
}
.story-quote::before {
  content: '"'; position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: 80px; color: var(--gold); opacity: 0.3;
}
.story-quote-attr { font-family: var(--font-body); font-size: 12px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); font-style: normal; margin-top: 24px; display: block; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1100px; margin: 80px auto 0; }
.value-card {
  padding: 40px 30px; background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: 2px;
  text-align: center; transition: all 0.4s var(--ease-out-expo);
}
.value-card:hover { border-color: var(--gold); transform: translateY(-6px); }
.value-icon { font-size: 32px; color: var(--gold); margin-bottom: 20px; }
.value-title { font-family: var(--font-display); font-size: 22px; letter-spacing: 3px; margin-bottom: 14px; }
.value-desc { font-size: 14px; line-height: 1.7; color: var(--white-dim); }
@media (max-width: 700px) { .values-grid { grid-template-columns: 1fr; } }

.timeline { max-width: 800px; margin: 80px auto 0; position: relative; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-item { position: relative; padding-bottom: 50px; }
.timeline-item::before {
  content: ''; position: absolute; left: -38px; top: 4px;
  width: 14px; height: 14px; background: var(--black); border: 2px solid var(--gold); border-radius: 50%;
}
.timeline-year { font-family: var(--font-display); font-size: 28px; color: var(--gold); letter-spacing: 3px; }
.timeline-title { font-size: 16px; font-weight: 600; margin: 6px 0 10px; letter-spacing: 1px; }
.timeline-desc { font-size: 14px; line-height: 1.7; color: var(--white-dim); }

/* ═══ SERVICES PAGE ═══ */
.services-page { max-width: 1100px; margin: 0 auto; }
.service-category { margin-bottom: 80px; }
.service-cat-title {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 4px; padding-bottom: 14px;
  border-bottom: 1px solid var(--black-border); margin-bottom: 30px;
  display: flex; align-items: center; justify-content: space-between;
}
.service-cat-title small { font-family: var(--font-serif); font-size: 14px; color: var(--white-dim); font-style: italic; letter-spacing: 0; }
.service-detail-list { display: grid; gap: 0; }
.service-detail {
  display: grid; grid-template-columns: 1fr auto; gap: 30px;
  padding: 28px 0; border-bottom: 1px solid var(--black-border);
  transition: all 0.3s; align-items: start;
}
.service-detail:hover { padding-left: 12px; }
.service-detail-name { font-family: var(--font-display); font-size: 24px; letter-spacing: 3px; margin-bottom: 8px; }
.service-detail-desc { font-size: 14px; line-height: 1.7; color: var(--white-dim); max-width: 560px; }
.service-detail-meta { font-size: 12px; color: var(--white-muted); margin-top: 8px; letter-spacing: 1px; }
.service-detail-price-block { text-align: right; min-width: 100px; }
.service-detail-price { font-family: var(--font-display); font-size: 36px; color: var(--gold); line-height: 1; }
.service-detail-duration { font-size: 11px; color: var(--white-muted); letter-spacing: 1px; margin-top: 4px; }

.package-card {
  background: linear-gradient(135deg, rgba(201,169,110,0.1), var(--black-card));
  border: 1px solid var(--gold); padding: 50px;
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
  margin-top: 30px;
}
.package-card .featured-badge { margin-bottom: 14px; }
.package-card h3 { font-family: var(--font-display); font-size: 36px; letter-spacing: 4px; margin-bottom: 14px; color: var(--gold); }
.package-card p { font-size: 15px; line-height: 1.8; color: var(--white-dim); }
.package-includes { margin-top: 20px; display: grid; gap: 8px; }
.package-includes li { list-style: none; font-size: 13px; color: var(--white-dim); padding-left: 20px; position: relative; }
.package-includes li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.package-price-block { text-align: right; }
.package-price { font-family: var(--font-display); font-size: 64px; color: var(--gold); line-height: 1; }
.package-saved { font-size: 11px; color: var(--white-muted); letter-spacing: 2px; text-transform: uppercase; margin-top: 6px; }
@media (max-width: 700px) { .package-card { grid-template-columns: 1fr; padding: 30px; } .package-price-block { text-align: left; } }

/* ═══ GALLERY PAGE ═══ */
.gallery-filters { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 50px; }
.gallery-filter {
  background: none; border: 1px solid var(--black-border); color: var(--white-dim);
  padding: 10px 22px; font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all 0.3s;
}
.gallery-filter:hover { color: var(--white); border-color: var(--white-dim); }
.gallery-filter.active { background: var(--gold); color: var(--black); border-color: var(--gold); }

.gallery-page-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(6px, 0.8vw, 12px);
  max-width: 1680px; margin: 0 auto; padding: 0 clamp(12px, 2.5vw, 40px);
}
@media (min-width: 1600px) { .gallery-page-grid { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 1100px) { .gallery-page-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 800px)  { .gallery-page-grid { grid-template-columns: repeat(3, 1fr) !important; } }
@media (max-width: 500px)  { .gallery-page-grid { grid-template-columns: repeat(2, 1fr) !important; } }
.gallery-page-item {
  position: relative; overflow: hidden; aspect-ratio: 1/1; cursor: pointer;
  transition: opacity 0.4s, transform 0.4s; background: var(--black-card);
  border-radius: 2px;
}
.gallery-page-item.hidden { display: none; }
.gallery-page-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out-expo), filter 0.4s; filter: brightness(0.85); }
.gallery-page-item:hover img { transform: scale(1.06); filter: brightness(1); }
.gallery-page-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9), transparent 50%);
  opacity: 0; transition: opacity 0.4s;
}
.gallery-page-item:hover::after { opacity: 1; }
.gallery-page-caption {
  position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 2;
  opacity: 0; transform: translateY(10px); transition: all 0.4s var(--ease-out-expo);
}
.gallery-page-item:hover .gallery-page-caption { opacity: 1; transform: translateY(0); }
.gallery-page-caption .cap-title { font-family: var(--font-display); font-size: 18px; letter-spacing: 2px; color: var(--gold); }
.gallery-page-caption .cap-tag { font-size: 11px; color: var(--white-dim); letter-spacing: 1px; margin-top: 4px; }
@media (max-width: 800px) { .gallery-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .gallery-page-grid { grid-template-columns: 1fr; } }

/* ═══ CONTACT PAGE ═══ */
.contact-page { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; }
.contact-form-wrapper h3, .contact-info-wrapper h3 { font-family: var(--font-display); font-size: 28px; letter-spacing: 3px; margin-bottom: 30px; }
.contact-form { display: grid; gap: 18px; }
.contact-form button[type="submit"] {
  background: var(--gold); border: none; color: var(--black);
  padding: 16px 40px; font-family: var(--font-body); font-size: 12px;
  font-weight: 600; letter-spacing: 3px; text-transform: uppercase; cursor: pointer;
  transition: all 0.4s var(--ease-out-expo); margin-top: 8px; justify-self: start;
}
.contact-form button[type="submit"]:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,169,110,0.25); }
.contact-cta-grid { display: grid; gap: 14px; margin-bottom: 40px; }
.contact-cta {
  display: flex; align-items: center; gap: 18px; padding: 20px 24px;
  background: var(--black-card); border: 1px solid var(--black-border);
  text-decoration: none; color: var(--white); transition: all 0.3s;
}
.contact-cta:hover { border-color: var(--gold); background: rgba(201,169,110,0.05); transform: translateX(6px); }
.contact-cta-icon {
  width: 48px; height: 48px; border-radius: 50%; background: rgba(201,169,110,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--gold);
}
.contact-cta-text .cta-label { font-size: 11px; color: var(--gold); letter-spacing: 2.4px; text-transform: uppercase; font-weight: 600; }
.contact-cta-text .cta-value { font-size: 15px; font-weight: 500; margin-top: 4px; color: var(--white); }
.contact-success {
  display: none; padding: 24px; background: rgba(201,169,110,0.08);
  border: 1px solid var(--gold); color: var(--gold); text-align: center;
  font-size: 14px; letter-spacing: 1px; margin-top: 20px;
}
.contact-success.show { display: block; animation: panelIn 0.5s var(--ease-out-expo); }
@media (max-width: 900px) { .contact-page { grid-template-columns: 1fr; gap: 40px; } }

/* ═══ ACTIVE NAV LINK ═══ */
nav a.active { color: var(--gold); }
nav a.active::after { width: 100%; }

/* ════════════════════════════════════════════
   MISSING LAYOUT BLOCKS
   ════════════════════════════════════════════ */

/* ─── Hero extras: vignette, meta strip, scroll cue ─── */
.hero-vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(10,10,10,0.32) 100%);
}
.hero-meta {
  position: absolute;
  bottom: 48px; left: 50%; transform: translateX(-50%);
  display: flex; gap: clamp(24px, 5vw, 60px);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--white-muted); z-index: 2;
  flex-wrap: wrap; justify-content: center; padding: 0 20px;
  opacity: 0; animation: fadeUp 1s 1.6s var(--ease-out-expo) forwards;
}
.hero-meta .meta-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); margin-right: 8px; vertical-align: middle;
  box-shadow: 0 0 10px var(--gold);
  animation: metaPulse 2s ease-in-out infinite;
}
@keyframes metaPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}
.hero-scroll-cue {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 2;
  display: none;
}
.hero-scroll-cue span {
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--white-muted);
}
.hero-scroll-cue::after {
  content: ""; width: 1px; height: 28px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@media (max-width: 900px) {
  .hero-meta { position: static; transform: none; margin-top: 32px; }
  .hero-scroll-cue { display: none; }
}

/* ─── Marquee strip ─── */
.marquee {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 5vw, 56px) 0;
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  background: linear-gradient(180deg, transparent, rgba(201,169,110,0.03), transparent);
  user-select: none;
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: clamp(60px, 8vw, 140px);
  z-index: 2; pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--black), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--black), transparent); }
.marquee-track {
  display: flex; gap: clamp(32px, 5vw, 72px);
  width: max-content;
  animation: marqueeSlide 38s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.6vw, 44px);
  letter-spacing: clamp(3px, 0.6vw, 8px);
  line-height: 1;
  color: var(--white);
  white-space: nowrap;
  display: flex; align-items: center;
}
.marquee-item.is-outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
}.marquee-item::after { content: ""; display: inline-block; margin-left: clamp(32px, 5vw, 72px); width: 4px; height: 4px; border-radius: 50%; background: rgba(201,169,110,0.45); }
@keyframes marqueeSlide {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ─── Edit-style section numbers (01, 02 corner labels) ─── */
.edit-num {
  position: absolute;
  font-family: var(--font-display);
  font-size: 0; display: none;
  letter-spacing: 0;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,169,110,0.14);
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}
.edit-num.top-left  { top: clamp(40px, 6vw, 80px); left: clamp(20px, 4vw, 60px); }
.edit-num.top-right { top: clamp(40px, 6vw, 80px); right: clamp(20px, 4vw, 60px); }

/* ─── Aurora background (soft gold/black gradient blob) ─── */
.aurora-bg { display: none; }
.aurora-bg::before, 

.aurora-bg::after {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(139,32,32,0.18), transparent 65%);
  bottom: -220px; right: -160px;
  animation-delay: -9s;
}
@keyframes auroraDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(6%, -4%) scale(1.08); }
}

/* ─── Craft In Motion ─── */
.craft-section { position: relative; overflow: hidden; }
.craft-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  max-width: 1300px; margin: 0 auto; align-items: center;
}
.craft-image-frame {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  border: 1px solid rgba(201,169,110,0.18);
}
.craft-image-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(0.92) contrast(1.05);
  transition: transform 0.9s var(--ease-out-expo);
}
.craft-image-frame:hover img { transform: scale(1.04); }
.craft-image-badge {
  position: absolute; bottom: 20px; left: 20px; z-index: 4;
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
  padding: 8px 14px;
  background: rgba(10,10,10,0.8);
  border: 1px solid rgba(201,169,110,0.35);
  backdrop-filter: blur(8px);
}
.craft-text { }
.craft-eyebrow {
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.craft-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 2px; line-height: 1.05;
  margin-bottom: 24px;
  overflow-wrap: break-word;
  hyphens: auto;
}
.craft-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0;
  display: inline-block;
}
.craft-body {
  font-size: 15px; line-height: 1.8; color: var(--white-dim);
  font-weight: 300; margin-bottom: 36px;
  max-width: 520px;
}
.craft-steps { display: flex; flex-direction: column; gap: 22px; }
.craft-step {
  display: grid; grid-template-columns: 60px 1fr; gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--black-border);
  align-items: start;
}
.craft-step:last-child { border-bottom: 1px solid var(--black-border); }
.craft-step-num { font-family: var(--font-display); font-size: 22px; color: rgba(201,169,110,0.55); line-height: 1; letter-spacing: 1px; min-width: 36px; }
.craft-step h4 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 6px;
}
.craft-step p {
  font-size: 13px;
  color: var(--white-muted);
  line-height: 1.7;
  font-weight: 300;
}
@media (max-width: 800px) {
  .craft-grid { grid-template-columns: 1fr; }
}

/* ─── Stats bar ─── */
.stats-bar {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
  background: var(--black-light);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  text-align: center;
  gap: 20px;
}
.stats-bar > :not(.aurora-bg) { position: relative; z-index: 1; }
.stat-item {
  padding: 20px;
  border-right: 1px solid var(--black-border);
}
.stat-item:last-child { border-right: 0; }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--gold);
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-muted);
}
@media (max-width: 800px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: 0; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid var(--black-border); }
}

/* ─── Divider label (italic section break) ─── */
.divider-label {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 0 clamp(20px, 5vw, 80px);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 20px;
}
.divider-label::before,
.divider-label::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--black-border), transparent);
}

/* ─── Draw-line effect on section-title.draw-line ─── */
.section-title.draw-line {
  position: relative;
  padding-bottom: 20px;
}
.section-title.draw-line::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 80px; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 1.1s var(--ease-out-expo) 0.3s;
}
.section-title.draw-line.visible::after,
.reveal-left.visible .section-title.draw-line::after,
.reveal-right.visible .section-title.draw-line::after { transform: scaleX(1); }
/* Fallback so the line still shows even without reveal wrapper */
@media (prefers-reduced-motion: reduce) {
  .section-title.draw-line::after { transform: scaleX(1); transition: none; }
}

/* ─── About-stat block (individual item inside about-stat-row) ─── */
.about-stat { flex: 1; min-width: 0; }

/* ════════════════════════════════════════════
   CINEMATIC ANIMATION LAYER
   ════════════════════════════════════════════ */

/* ─── Cinematic loader ─── */
.nelo-loader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.9s var(--ease-out-expo), visibility 0.9s;
}
.nelo-loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.nelo-loader-inner { text-align: center; max-width: 520px; padding: 0 24px; }
.nelo-loader-text {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: 14px;
  color: var(--gold);
  opacity: 0;
  transform: translateY(30px);
  animation: loaderFadeUp 0.8s var(--ease-out-expo) 0.15s forwards;
}
.nelo-loader-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--white-dim);
  letter-spacing: 3px;
  margin-top: 8px;
  opacity: 0;
  animation: loaderFadeUp 0.8s var(--ease-out-expo) 0.35s forwards;
}
.nelo-loader-bar {
  margin: 36px auto 0;
  width: 220px; height: 1px;
  background: rgba(201, 169, 110, 0.2);
  position: relative;
  overflow: hidden;
}
.nelo-loader-bar::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
  animation: loaderSweep 1.4s var(--ease-out-expo) 0.5s infinite;
}
@keyframes loaderFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes loaderSweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ─── Custom cursor (disabled) ─── */
body { cursor: auto; }
.cursor-dot, .cursor-ring { display: none !important; }

/* ─── Scroll progress ─── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 9999;
  will-change: transform;
  box-shadow: 0 0 12px rgba(201, 169, 110, 0.55);
}

/* ─── Page transition overlay ─── */
.page-transition { position: fixed; inset: 0; background: var(--black); z-index: 99997; pointer-events: none; opacity: 0; visibility: hidden; transform: translateY(100%); transition: transform 0.7s var(--ease-out-expo), opacity 0.5s, visibility 0s 0.5s; }
.page-transition.out { opacity: 1; visibility: visible; transform: translateY(0); transition: transform 0.7s var(--ease-out-expo), opacity 0.5s, visibility 0s 0s; }

/* ─── Side label (vertical badge) ─── */
.side-label {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left top;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white-muted);
  z-index: 900;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  animation: sideFadeIn 1.2s var(--ease-out-expo) 2s forwards;
}
@keyframes sideFadeIn { to { opacity: 1; } }
@media (max-width: 900px) { .side-label { display: none; } }

/* ─── Split-text ─── */
[data-split] { display: inline-block; }
[data-split] .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%) rotate(6deg);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
  transition-delay: calc(var(--char-i, 0) * 28ms + 150ms);
  will-change: transform, opacity;
}
[data-split].split-revealed .char {
  opacity: 1;
  transform: translateY(0) rotate(0);
}
[data-split] .char-space { display: inline-block; width: 0.28em; }

/* ─── Magnetic buttons ─── */
[data-magnetic] {
  will-change: transform;
  transition: transform 0.5s var(--ease-out-expo);
}

/* ─── 3D tilt ─── */
[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease-out-expo);
  will-change: transform;
  position: relative;
}
[data-tilt].tilt-active {
  transition: transform 0.12s linear;
}

/* ─── Curtain reveal (sweep from left) ─── */
.curtain-reveal {
  position: relative;
  overflow: hidden;
}
.curtain-reveal::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold);
  transform-origin: left center;
  transform: scaleX(1);
  transition: transform 1.1s var(--ease-out-expo);
  z-index: 2;
  pointer-events: none;
}
.curtain-reveal.visible::before { transform: scaleX(0); transform-origin: right center; }

/* ─── Ornament frame (thin gold border + corner ticks) ─── */
.ornament-frame {
  position: relative;
}
.ornament-frame::after { display: none; }

/* ─── Mobile menu polish ─── */
.mobile-toggle {
  background: none; border: 0; padding: 8px;
  display: none; cursor: pointer;
  flex-direction: column; gap: 5px;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
}
.mobile-toggle span {
  display: block; width: 22px; height: 1px;
  background: var(--white);
  transition: transform 0.4s var(--ease-out-expo), opacity 0.3s;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (max-width: 900px) {
  .mobile-toggle { display: flex; }
  .header-book-desktop { display: none; }
}

/* ─── Parallax hint ─── */
[data-parallax] { will-change: transform; }

/* ─── Counter target (keeps layout stable during count) ─── */
[data-count] { font-variant-numeric: tabular-nums; }

/* ─── Body scroll lock during loader ─── */
body.loading { overflow: hidden; }

/* ─── Brand strip (Trusted By) , typographic wordmarks ─── */
.brand-strip-section {
  padding: clamp(70px, 9vw, 110px) 0 clamp(40px, 5vw, 60px);
  text-align: center;
  position: relative;
}
.brand-strip-section .clients-eyebrow,
.ig-feed-section .clients-eyebrow {
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.brand-strip-section .clients-title,
.ig-feed-section .clients-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 3px;
  line-height: 1.05;
  margin-bottom: 14px;
}
.brand-strip-sub {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--white-muted);
  font-size: clamp(14px, 1.2vw, 17px);
  max-width: 640px;
  margin: 0 auto clamp(40px, 5vw, 60px);
  line-height: 1.6;
}
.brand-marquee {
  position: relative;
  overflow: hidden;
  padding: 10px 0 20px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.brand-marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: brandMarqueeSlide 60s linear infinite;
  will-change: transform;
  align-items: stretch;
}
.brand-marquee:hover .brand-marquee-track { animation-play-state: paused; }
.brand-card {
  position: relative;
  flex-shrink: 0;
  width: 240px;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 2px;
  border: 1px solid rgba(201,169,110,0.18);
  background: linear-gradient(180deg, rgba(201,169,110,0.035), rgba(255,255,255,0.01));
  transition: border-color 0.5s, transform 0.5s, background 0.5s;
}
.brand-card::before,
.brand-card::after {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  border: 1px solid var(--gold);
  opacity: 0.45;
  transition: opacity 0.5s;
}
.brand-card::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.brand-card::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.brand-card:hover {
  border-color: rgba(201,169,110,0.6);
  background: linear-gradient(180deg, rgba(201,169,110,0.08), rgba(201,169,110,0.02));
  transform: translateY(-3px);
}
.brand-card:hover::before,
.brand-card:hover::after { opacity: 1; }
.brand-card-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(201,169,110,0.12), rgba(201,169,110,0.02) 70%);
  border: 1px solid rgba(201,169,110,0.35);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  color: var(--gold);
  box-shadow: inset 0 1px 0 rgba(201,169,110,0.15), 0 4px 12px rgba(0,0,0,0.35);
  transition: border-color 0.5s, transform 0.5s, color 0.5s, box-shadow 0.5s;
}
.brand-card-icon svg {
  width: 38px; height: 38px;
  display: block;
  overflow: visible;
}
.brand-card:hover .brand-card-icon {
  border-color: var(--gold);
  color: var(--gold-light, #e4c88c);
  transform: scale(1.06);
  box-shadow: inset 0 1px 0 rgba(201,169,110,0.25), 0 6px 18px rgba(201,169,110,0.2);
}
.brand-card-name {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 2.5px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.15;
  text-align: center;
}
.brand-card-meta {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-muted);
  opacity: 0.75;
}
@keyframes brandMarqueeSlide {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ─── Instagram feed carousel ─── */
.ig-feed-section {
  padding: clamp(60px, 8vw, 100px) 0 clamp(70px, 9vw, 110px);
  text-align: center;
  position: relative;
}
.ig-carousel {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: 12px;
}
.ig-carousel-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: 2px;
}
.ig-carousel-track {
  display: flex;
  gap: 18px;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.ig-post {
  flex-shrink: 0;
  width: calc((100% - 18px * 3) / 4);
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(201,169,110,0.15);
  display: block;
  cursor: pointer;
  background: #111;
}
.ig-post img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s;
  filter: saturate(1.05);
}
.ig-post-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.85) 100%);
  opacity: 0;
  transition: opacity 0.5s;
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
}
.ig-post-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  padding-left: 3px;
}
.ig-post:hover img {
  transform: scale(1.08);
  filter: saturate(1.15) brightness(0.9);
}
.ig-post:hover .ig-post-overlay { opacity: 1; }
.ig-post:hover { border-color: rgba(201,169,110,0.5); }
.ig-carousel-btn {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.3);
  background: rgba(10,10,10,0.7);
  color: var(--gold);
  font-size: 24px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, color 0.3s;
  font-family: serif;
  line-height: 1;
  padding-bottom: 3px;
}
.ig-carousel-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
  transform: scale(1.08);
}
.ig-carousel-btn:disabled {
  opacity: 0.3; cursor: not-allowed;
}
.ig-carousel-footer {
  text-align: center;
  margin-top: clamp(40px, 5vw, 60px);
}
@media (max-width: 900px) {
  .ig-post { width: calc((100% - 18px) / 2); }
  .brand-card { width: 200px; padding: 18px 22px; }
  .brand-card-name { font-size: 16px; letter-spacing: 2px; }
}
@media (max-width: 560px) {
  .ig-post { width: 100%; }
  .ig-carousel { padding: 0 16px; gap: 8px; }
  .ig-carousel-btn { width: 40px; height: 40px; }
}

/* ─── IG Admin editor mode ─── */
.ig-admin-banner {
  max-width: 1200px;
  margin: 0 auto 28px;
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  background: linear-gradient(180deg, rgba(201,169,110,0.10), rgba(201,169,110,0.03));
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
}
.ig-admin-banner-left { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.ig-admin-banner strong { font-family: var(--font-display); letter-spacing: 2.5px; color: var(--gold); font-size: 13px; }
.ig-admin-hint { color: var(--white-muted); font-size: 12px; max-width: 560px; line-height: 1.5; }
.ig-admin-hint em { color: var(--gold); font-style: normal; }
.ig-admin-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,169,110,0.25);
  animation: igDot 1.6s ease-in-out infinite;
}
@keyframes igDot { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.ig-admin-banner-right { display: flex; gap: 8px; flex-wrap: wrap; }
.ig-admin-btn {
  padding: 8px 16px;
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  font-family: var(--font-display);
  letter-spacing: 1.6px;
  font-size: 11px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s;
}
.ig-admin-btn:hover { background: transparent; color: var(--gold); }
.ig-admin-btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.2); }
.ig-admin-btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: transparent; }

.ig-post-admin { cursor: default; }
.ig-post-admin-bar {
  position: absolute; inset: auto 0 0 0;
  display: flex; justify-content: center; gap: 4px;
  padding: 8px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.9));
  z-index: 3;
}
.ig-post-admin-bar button {
  width: 30px; height: 30px;
  background: rgba(10,10,10,0.85);
  border: 1px solid rgba(201,169,110,0.5);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
}
.ig-post-admin-bar button:hover { background: var(--gold); color: var(--black); }
.ig-post-add {
  background: rgba(201,169,110,0.05);
  border: 1.5px dashed rgba(201,169,110,0.5) !important;
  color: var(--gold);
  display: flex !important; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  cursor: pointer;
  min-height: 260px;
}
.ig-post-add:hover { background: rgba(201,169,110,0.12); border-color: var(--gold) !important; }
.ig-post-add-plus { font-size: 42px; font-weight: 300; line-height: 1; color: var(--gold); }
.ig-post-add-label { font-family: var(--font-display); letter-spacing: 2.5px; font-size: 12px; }

.ig-admin-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.88);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.ig-admin-modal[hidden] { display: none; }
.ig-admin-modal-inner {
  background: #0f0f0f;
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: 4px;
  max-width: 720px; width: 100%;
  padding: 28px;
  max-height: 90vh; overflow: auto;
}
.ig-admin-modal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.ig-admin-modal-head strong { font-family: var(--font-display); letter-spacing: 3px; color: var(--gold); font-size: 16px; }
.ig-admin-modal-hint { color: var(--white-muted); font-size: 13px; line-height: 1.6; margin: 0 0 14px; }
.ig-admin-modal-hint code { background: rgba(201,169,110,0.1); color: var(--gold); padding: 2px 6px; border-radius: 2px; font-size: 12px; }
#igExportTextarea {
  width: 100%; min-height: 280px;
  background: #050505; color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
  font-family: "SFMono-Regular", Menlo, monospace;
  font-size: 12px; line-height: 1.55;
  padding: 14px; border-radius: 2px;
  resize: vertical;
}
.ig-admin-modal-actions { margin-top: 14px; display: flex; justify-content: flex-end; }

/* ─── Testimonial marquee (auto-scrolling) ─── */
.testimonial-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.testimonial-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testimonialScroll 90s linear infinite;
}
.testimonial-marquee:hover .testimonial-marquee-track { animation-play-state: paused; }
@keyframes testimonialScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.testimonial-marquee .testimonial-card {
  flex: 0 0 auto;
  width: 380px;
  min-width: 380px;   /* override the old carousel rule */
  max-width: 380px;
  padding: 32px 30px;
}
@media (max-width: 900px) {
  .testimonial-marquee .testimonial-card {
    width: 340px; min-width: 340px; max-width: 340px;
  }
}
@media (max-width: 640px) {
  .testimonial-marquee .testimonial-card {
    width: 300px; min-width: 300px; max-width: 300px;
    padding: 26px 24px;
  }
  .testimonial-marquee-track { animation-duration: 70s; }
}
@media (prefers-reduced-motion: reduce) {
  .testimonial-marquee-track { animation: none; }
}

/* ─── Styled select (matches form inputs) ─── */
.form-select {
  background: var(--black);
  border: 1px solid var(--black-border);
  color: var(--white);
  padding: 14px 44px 14px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23c9a96e' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}
.form-select:focus { border-color: var(--gold); }
.form-select option { background: var(--black); color: var(--white); }

/* ─── Lightbox (gallery) ─── */
.lightbox {
  position: fixed; inset: 0; z-index: 99996;
  background: rgba(6,6,6,0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease-out-expo), visibility 0.4s;
  backdrop-filter: blur(8px);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-stage {
  position: relative; max-width: 92vw; max-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  transform: scale(0.96);
  transition: transform 0.5s var(--ease-out-expo);
}
.lightbox.open .lightbox-stage { transform: scale(1); }
.lightbox-img {
  max-width: 92vw; max-height: 82vh;
  object-fit: contain;
  border: 1px solid rgba(201,169,110,0.18);
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
  display: block;
}
.lightbox-caption {
  position: absolute; bottom: -44px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--gold);
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(10,10,10,0.6);
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--gold);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
  z-index: 2;
}
.lightbox-close:hover, .lightbox-nav:hover {
  background: var(--gold); color: var(--black); border-color: var(--gold);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-nav.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
  position: absolute; top: 28px; left: 24px;
  font-size: 11px; letter-spacing: 3px;
  color: var(--white-muted);
  font-family: var(--font-body);
}
@media (max-width: 700px) {
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-nav.prev { left: 10px; }
  .lightbox-nav.next { right: 10px; }
  .lightbox-close { top: 14px; right: 14px; width: 40px; height: 40px; }
  .lightbox-counter { top: 18px; left: 14px; }
}

/* Indicate gallery items are clickable */
.gallery-item, .gallery-page-item { cursor: zoom-in; }

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  .nelo-loader, .scroll-progress, .page-transition, .side-label,
  .cursor-dot, .cursor-ring { display: none !important; }
  [data-split] .char { opacity: 1 !important; transform: none !important; transition: none !important; }
  [data-tilt] { transform: none !important; transition: none !important; }
  .curtain-reveal::before { display: none; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  [data-parallax] { transform: none !important; }
  body { cursor: auto; }
}


/* ═══ INSTAGRAM MARQUEE (auto-scroll, seamless) ═══ */
.ig-marquee {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.ig-marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marqueeSlide 50s linear infinite;
  will-change: transform;
}
.ig-marquee:hover .ig-marquee-track { animation-play-state: paused; }
.ig-marquee .ig-post {
  width: 300px;
  min-width: 300px;
  max-width: 300px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .ig-marquee .ig-post { width: 240px; min-width: 240px; max-width: 240px; }
  .ig-marquee-track { animation-duration: 40s; }
}
@media (max-width: 560px) {
  .ig-marquee .ig-post { width: 200px; min-width: 200px; max-width: 200px; }
  .ig-marquee-track { animation-duration: 32s; }
}
@media (prefers-reduced-motion: reduce) {
  .ig-marquee-track { animation: none; }
}

/* ────────────────────────────────────────────────
   PASS 4: TYPOGRAPHIC CHARACTER
   ──────────────────────────────────────────────── */

/* ─── Vintage barber-menu services ─── */
.service-menu {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
}
.service-menu-row {
  padding: clamp(22px, 2.6vw, 36px) 0;
  border-bottom: 1px solid rgba(201,169,110,0.18);
}
.service-menu-row:first-child { border-top: 1px solid rgba(201,169,110,0.18); }
.service-menu-row.is-featured .service-menu-name { color: var(--gold); }
.service-menu-row.is-featured .service-menu-price { color: var(--gold); }
.service-menu-row.is-featured .service-menu-meta-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 10px;
  margin-bottom: 12px;
  border-radius: 0;
}
.service-menu-top {
  display: flex; align-items: baseline; gap: 14px;
}
.service-menu-name {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 42px);
  letter-spacing: clamp(2px, 0.5vw, 5px);
  color: var(--white);
  line-height: 1;
  flex-shrink: 0;
}
.service-menu-dots {
  flex: 1 1 0;
  border-bottom: 1px dotted rgba(201,169,110,0.32);
  transform: translateY(-4px);
  min-width: 20px;
}
.service-menu-price {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--gold);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.service-menu-bottom {
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  margin-top: 10px;
}
.service-menu-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.5;
  max-width: 70ch;
}
.service-menu-duration {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .service-menu-name { font-size: 22px; letter-spacing: 1.5px; }
  .service-menu-price { font-size: 17px; }
  .service-menu-dots { display: none; }
  .service-menu-bottom { flex-direction: column; gap: 6px; }
}

/* ─── Big statement callout section ─── */
.statement-section {
  padding: clamp(80px, 12vw, 160px) clamp(20px, 5vw, 80px);
  text-align: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.statement-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(201,169,110,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.statement-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.statement-meta::before,
.statement-meta::after {
  content: ""; display: block; width: 36px; height: 1px;
  background: rgba(201,169,110,0.55);
}
.statement-text {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.8vw, 92px);
  letter-spacing: -0.005em;
  line-height: 0.98;
  color: var(--white);
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  padding: 0 clamp(16px, 4vw, 48px);
  word-spacing: -0.02em;
}
.statement-text .accent { color: var(--gold); }

/* ─── Brutal stats overhaul (when used) ─── */
.stat-value-brutal {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 104px);
  color: var(--gold);
  line-height: 0.9;
  letter-spacing: -0.005em;
}
.stat-label-brutal {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
}

/* ─── Mono on existing meta labels ─── */
.hero-meta,
.side-label,
.section-label,
.craft-eyebrow,
.clients-eyebrow,
.divider-label,
.stat-label,
.about-stat-label,
.timeline-year {
  font-family: var(--font-mono) !important;
  font-feature-settings: "tnum";
}

/* ──────────────────────────────────────────────
   PASS 5 - STABILITY OVERRIDES
   Forces content to render regardless of JS animation triggers.
   Keep here unless you actively want gated-in animations.
   ────────────────────────────────────────────── */

/* All reveal-on-scroll classes default to visible */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale,
.curtain-reveal,
.curtain-reveal.visible,
.draw-line,
.story-section,
.about-text,
.about-image,
.craft-image-frame,
.craft-text,
.services-header,
.service-menu,
.gallery-page-item,
.statement-section,
.timeline-item {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  filter: none !important;
}

/* Character/word split animation reveal */
[data-split],
[data-split] .char,
[data-split] .word {
  opacity: 1 !important;
  transform: none !important;
}

/* Kill the page-transition overlay - animation gimmick that traps the page in black */
.page-transition { display: none !important; }

/* Hero text: always visible, drop opacity:0 starting state */
.hero-pre,
.hero-title,
.hero-tagline,
.hero-cta,
.hero-meta {
  opacity: 1 !important;
  animation: none !important;
}

/* Restore hero title as solid cream (drop gradient text trick that keeps breaking) */
.hero-title {
  color: var(--white) !important;
  background: none !important;
  -webkit-text-fill-color: var(--white) !important;
}
.hero-title span,
.hero-title .char {
  background: none !important;
  -webkit-text-fill-color: var(--white) !important;
  color: var(--white) !important;
}

/* Curtain-reveal ::before mask was hiding content on page reload */
.curtain-reveal::before { transform: scaleX(0) !important; }

/* Stat counters - show final value immediately (counter-up JS may not have fired) */
[data-count] { opacity: 1; }

/* ── PASS 6: brand logos above names ── */
.brand-card {
  gap: 14px !important;
}
.brand-card-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,169,110,0.45);
  background: rgba(201,169,110,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 4px;
  flex-shrink: 0;
}
.brand-card-meta {
  font-family: var(--font-mono) !important;
  font-style: normal !important;
  font-size: 10.5px !important;
  letter-spacing: 0.18em !important;
}

/* ── PASS 7: real logos inside brand circles ── */
.brand-card-logo { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(140deg, #f4ecd8 0%, #e8dbb6 100%); border: 1.5px solid rgba(201,169,110,0.55); box-shadow: 0 2px 10px rgba(0,0,0,0.32), inset 0 0 0 1px rgba(255,255,255,0.18); object-fit: contain; padding: 8px; margin-bottom: 8px; flex-shrink: 0; display: block; filter: saturate(0.85) contrast(1.05); }

/* ──────────────────────────────────────────────
   TESTIMONIALS
   ────────────────────────────────────────────── */
.testimonials-section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 80px);
  max-width: 1320px;
  margin: 0 auto;
}
.testimonials-header { text-align: center; margin-bottom: clamp(40px, 5vw, 72px); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
}
.testimonial-card {
  padding: 30px 28px 28px;
  border: 1px solid rgba(201,169,110,0.20);
  border-radius: 3px;
  position: relative;
  background: rgba(245, 232, 199, 0.018);
  display: flex; flex-direction: column;
  min-width: 0;
}
.testimonial-card::before {
  content: "\201C";
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 64px;
  line-height: 0.55;
  color: var(--gold);
  margin: 0 0 14px -2px;
  pointer-events: none;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.55;
  color: var(--white-dim);
  margin-bottom: 22px;
  flex: 1 1 auto;
}
.testimonial-attribution {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(201,169,110,0.14);
}

/* ──────────────────────────────────────────────
   FAQ
   ────────────────────────────────────────────── */
.faq-section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 80px);
  max-width: 920px;
  margin: 0 auto;
}
.faq-header { text-align: center; margin-bottom: clamp(40px, 5vw, 72px); }
.faq-list {
  border-top: 1px solid rgba(201,169,110,0.22);
}
.faq-item {
  padding: clamp(22px, 2.6vw, 32px) 0;
  border-bottom: 1px solid rgba(201,169,110,0.22);
}
.faq-q {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.3vw, 30px);
  letter-spacing: 1.5px;
  line-height: 1.15;
  color: var(--white);
  display: flex; align-items: baseline; gap: 18px;
  margin-bottom: 10px;
}
.faq-q-num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  flex-shrink: 0;
  white-space: nowrap;
}
.faq-a {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 76ch;
  padding-left: 56px;
}
@media (max-width: 600px) {
  .faq-q { font-size: 19px; gap: 12px; }
  .faq-a { padding-left: 0; font-size: 14.5px; }
}

/* ──────────────────────────────────────────────
   PASS 8 - LOGO MARQUEE + BEHAVIOURAL CTAs
   ────────────────────────────────────────────── */

/* Clean logo marquee - no boxes, just logos scrolling */
.logo-marquee {
  margin-top: clamp(36px, 4vw, 60px);
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
  width: max-content;
  animation: logoMarqueeScroll 60s linear infinite;
}
.logo-marquee:hover .logo-marquee-track { animation-play-state: paused; }
@keyframes logoMarqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-mark {
  flex: 0 0 auto;
  width: clamp(92px, 9vw, 132px);
  height: clamp(92px, 9vw, 132px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0.78;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.logo-mark:hover { opacity: 1; transform: scale(1.05); }
.logo-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: brightness(1.05);
}
@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track { animation: none; }
}

/* ───── Sticky floating CTA - appears after hero ───── */
.sticky-cta {
  position: fixed;
  right: clamp(16px, 2.5vw, 32px);
  bottom: clamp(16px, 2.5vw, 32px);
  z-index: 9990;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 18px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45), 0 2px 6px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(20px) scale(0.94);
  pointer-events: none;
  transition: opacity 0.45s var(--ease-out-expo), transform 0.45s var(--ease-out-expo);
}
.sticky-cta.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.sticky-cta:hover { background: #d8b87c; transform: translateY(-2px) scale(1.02); }
.sticky-cta-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--black);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.75); }
}
@media (max-width: 600px) {
  .sticky-cta { padding: 12px 18px 12px 14px; font-size: 11px; letter-spacing: 0.18em; }
}

/* ───── Chair availability strip - live status indicator ───── */
.chair-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border: 1px solid rgba(201,169,110,0.32);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-dim);
  background: rgba(245,232,199,0.02);
}
.chair-status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #6ec76e;
  box-shadow: 0 0 10px rgba(110,199,110,0.7);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
.chair-status-text strong { color: var(--white); font-weight: 600; }

/* ───── Inline CTA banner used in testimonials & FAQ ───── */
.inline-cta {
  margin: clamp(40px, 5vw, 64px) auto 0;
  max-width: 720px;
  text-align: center;
  padding: clamp(28px, 4vw, 44px) clamp(20px, 4vw, 40px);
  border: 1px solid rgba(201,169,110,0.24);
  background: linear-gradient(135deg, rgba(201,169,110,0.05), rgba(245,232,199,0.02));
  position: relative;
}
.inline-cta-pre {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.inline-cta-line {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 40px);
  letter-spacing: 2px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 22px;
}
.inline-cta-line em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0;
}
.inline-cta-actions {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ───── Testimonial avatar (headshot) ───── */
.testimonial-attribution-row {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(201,169,110,0.14);
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar-img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(201,169,110,0.30);
  filter: saturate(0.92) contrast(1.02);
}
.testimonial-attribution-row .testimonial-attribution {
  margin: 0;
  padding: 0;
  border: 0;
}

/* Ghost variant of btn-book - used as secondary CTA */
.btn-book-ghost {
  background: transparent !important;
  color: var(--white) !important;
  border: 1px solid rgba(201,169,110,0.55) !important;
}
.btn-book-ghost:hover {
  background: rgba(201,169,110,0.08) !important;
  color: var(--gold) !important;
  border-color: var(--gold) !important;
  box-shadow: none !important;
}

/* ──────────────────────────────────────────────
   PASS 9 - WORDMARK MARQUEE + ABOUT META + FIXES
   ────────────────────────────────────────────── */

/* Word-mark marquee - replaces broken extracted-logo images */
.wordmark-marquee {
  margin-top: clamp(40px, 5vw, 72px);
  overflow: hidden;
  position: relative;
  padding: clamp(20px, 2vw, 32px) 0;
  border-top: 1px solid rgba(201,169,110,0.18);
  border-bottom: 1px solid rgba(201,169,110,0.18);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.wordmark-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: clamp(32px, 4vw, 56px);
  white-space: nowrap;
  width: max-content;
  animation: wordmarkScroll 65s linear infinite;
}
.wordmark-marquee:hover .wordmark-marquee-track { animation-play-state: paused; }
@keyframes wordmarkScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.wordmark {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 36px);
  letter-spacing: 4px;
  color: var(--white);
  text-transform: uppercase;
  opacity: 0.82;
  transition: opacity 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}
.wordmark:hover { opacity: 1; color: var(--gold); }
.wordmark-sep {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(14px, 1.4vw, 20px);
  color: var(--gold);
  opacity: 0.55;
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
  .wordmark-marquee-track { animation: none; }
}

/* Hide old logo-marquee CSS leftovers - we're no longer using it */
.logo-marquee, .brand-marquee { display: none; }

/* Force-kill the broken decorative numbers + aurora glow */
.edit-num, .aurora-bg { display: none !important; }

/* About - restrained meta list replacing oversized stat numbers */
.about-meta {
  list-style: none;
  margin: 36px 0 28px;
  padding: 28px 0 4px;
  border-top: 1px solid rgba(201,169,110,0.18);
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--white-dim);
}
.about-meta li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,169,110,0.10);
}
.about-meta li:last-child { border-bottom: 0; }
.about-meta-k {
  display: inline-block;
  min-width: 96px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.about-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}
@media (max-width: 600px) {
  .about-cta-row .btn-book { flex: 1 1 auto; text-align: center; }
}

/* Force-kill the old stat row in case it shows anywhere else */
.about-stat-row { display: none !important; }

/* Map fallback link sits below the iframe */
.location-map { position: relative; }
.map-link {
  position: absolute;
  bottom: 14px; right: 14px;
  display: inline-block;
  padding: 8px 14px;
  background: var(--black);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(201,169,110,0.32);
  border-radius: 2px;
  z-index: 2;
}
.map-link:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ──────────────────────────────────────────────
   PASS 10 - BRAND LOCKUPS + ATMOSPHERIC TEXTURES
   ────────────────────────────────────────────── */

/* Brand lockup: small logo mark + wordmark name in horizontal pair */
.lockup-marquee {
  margin-top: clamp(40px, 5vw, 72px);
  overflow: hidden;
  position: relative;
  padding: clamp(20px, 2.4vw, 36px) 0;
  border-top: 1px solid rgba(201,169,110,0.18);
  border-bottom: 1px solid rgba(201,169,110,0.18);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.lockup-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
  white-space: nowrap;
  width: max-content;
  animation: lockupScroll 70s linear infinite;
}
.lockup-marquee:hover .lockup-marquee-track { animation-play-state: paused; }
@keyframes lockupScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--white);
  opacity: 0.78;
  transition: opacity 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
  cursor: pointer;
}
.brand-lockup:hover { opacity: 1; transform: translateY(-2px); }
.brand-lockup-mark {
  width: clamp(54px, 5.5vw, 76px);
  height: clamp(54px, 5.5vw, 76px);
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(1.05) saturate(0.9);
}
.brand-lockup-name {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.1vw, 30px);
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  .lockup-marquee-track { animation: none; }
}
@media (max-width: 600px) {
  .brand-lockup { gap: 10px; }
  .brand-lockup-mark { width: 44px; height: 44px; }
}

/* Old wordmark marquee - keep CSS but hide since we use lockup now */
.wordmark-marquee { display: none; }

/* ───── ATMOSPHERIC BACKGROUND TEXTURES (restrained) ───── */

/* Subtle dot grid behind specific content sections (no body grain, no hero stripes) */
.about, .services, .testimonials-section, .faq-section, #booking {
  position: relative;
}
.about::after, .services::after, .testimonials-section::after, .faq-section::after, #booking::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle at center, rgba(201, 169, 110, 0.07) 1px, transparent 1.5px);
  background-size: 38px 38px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
          mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
}
.about > *, .services > *, .testimonials-section > *, .faq-section > *, #booking > * {
  position: relative; z-index: 1;
}

/* Section-divider hairlines removed per user feedback - useless visual noise */
.section-divider { height: clamp(24px, 4vw, 56px); background: transparent; }
.section-divider::before,
.section-divider::after { content: none !important; }

/* Statement section - warm gold radial glow centered */
.statement-section {
  position: relative;
  overflow: hidden;
}
.statement-section::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 80vw; height: 80vw;
  max-width: 1200px; max-height: 1200px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 169, 110, 0.09), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.statement-section > * { position: relative; z-index: 1; }

/* Brand strip section - soft side gradient accents */
.brand-strip-section {
  position: relative;
  overflow: hidden;
}
.brand-strip-section::after {
  content: "";
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 320px;
  transform: translateY(-50%);
  background:
    radial-gradient(ellipse at 0% 50%, rgba(201, 169, 110, 0.07), transparent 55%),
    radial-gradient(ellipse at 100% 50%, rgba(201, 169, 110, 0.07), transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.brand-strip-section > * { position: relative; z-index: 1; }

/* ──────────────────────────────────────────────
   PASS 11 - LOGO CIRCLES (full color, uniform, no text)
   ────────────────────────────────────────────── */

/* Hide the previous lockup attempt entirely */
.lockup-marquee, .brand-lockup, .brand-lockup-mark, .brand-lockup-name { display: none !important; }

.logo-circles {
  margin-top: clamp(36px, 4vw, 64px);
  overflow: hidden;
  position: relative;
  padding: clamp(20px, 2.4vw, 36px) 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-circles-track {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.2vw, 56px);
  width: max-content;
  animation: logoCirclesScroll 55s linear infinite;
  will-change: transform;
}
.logo-circles:hover .logo-circles-track { animation-play-state: paused; }
@keyframes logoCirclesScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Each logo: uniform size, perfect circle, no cropping (object-fit: contain),
   plus a soft gold ring + drop shadow so they "float" off the dark canvas. */
.logo-circle {
  flex: 0 0 auto;
  width: clamp(78px, 8.5vw, 124px);
  height: clamp(78px, 8.5vw, 124px);
  border-radius: 50%;
  object-fit: contain;       /* never crops the logo */
  object-position: center;
  display: block;
  background: transparent;
  box-shadow:
    0 0 0 1px rgba(201, 169, 110, 0.32),
    0 8px 24px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}
.logo-circle:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 0 0 1px rgba(201, 169, 110, 0.6),
    0 12px 32px rgba(0, 0, 0, 0.55);
}

@media (max-width: 600px) {
  .logo-circle { width: 66px; height: 66px; }
  .logo-circles-track { gap: 18px; animation-duration: 40s; }
}
@media (prefers-reduced-motion: reduce) {
  .logo-circles-track { animation: none; }
}

/* Hide previously-introduced wordmark-only marquee as well */
.wordmark-marquee, .wordmark, .wordmark-sep { display: none !important; }

/* Pass 11: hero text size override (above stability rule force-cream) */
@media (min-width: 1200px) {
  .hero-title { font-size: clamp(120px, 13vw, 180px) !important; letter-spacing: clamp(8px, 1.8vw, 26px) !important; }
}
@media (max-width: 600px) {
  .hero-title { font-size: clamp(56px, 16vw, 88px) !important; letter-spacing: 4px !important; }
  .hero-pre { font-size: 11px; letter-spacing: 4px; }
  .hero-tagline { font-size: 14px; }
}

/* ──────────────────────────────────────────────
   PASS 12 - BRAND REEL (logo + name + description)
   ────────────────────────────────────────────── */

/* Hide previous attempts entirely */
.logo-circles, .logo-circle, .lockup-marquee, .brand-lockup,
.brand-lockup-mark, .brand-lockup-name, .wordmark-marquee, .wordmark, .wordmark-sep {
  display: none !important;
}

/* Override any leftover .brand-card definition from old CSS - fresh styling below */
.brand-card { all: revert; }

.brand-reel {
  margin-top: clamp(40px, 5vw, 72px);
  overflow: hidden;
  position: relative;
  padding: clamp(20px, 2.4vw, 36px) 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.brand-reel-track {
  display: flex;
  align-items: stretch;
  gap: clamp(20px, 2.6vw, 40px);
  width: max-content;
  animation: brandReelScroll 70s linear infinite;
  will-change: transform;
}
.brand-reel:hover .brand-reel-track { animation-play-state: paused; }
@keyframes brandReelScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brand-card {
  flex: 0 0 auto;
  width: clamp(180px, 17vw, 220px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(24px, 2.4vw, 32px) clamp(16px, 1.6vw, 22px);
  background: rgba(245, 232, 199, 0.018);
  border: 1px solid rgba(201, 169, 110, 0.18);
  border-radius: 6px;
  transition: border-color 0.4s ease, transform 0.4s var(--ease-out-expo);
}
.brand-card:hover {
  border-color: rgba(201, 169, 110, 0.42);
  transform: translateY(-4px);
}
.brand-card-logo {
  width: clamp(76px, 8vw, 112px);
  height: clamp(76px, 8vw, 112px);
  border-radius: 50%;
  object-fit: contain;
  display: block;
  margin: 0 auto clamp(14px, 1.6vw, 22px);
  box-shadow:
    0 0 0 1px rgba(201, 169, 110, 0.22),
    0 6px 18px rgba(0, 0, 0, 0.4);
}
.brand-card-name {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.1;
}
.brand-card-desc {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.78;
}

@media (max-width: 600px) {
  .brand-card { width: 160px; padding: 22px 14px; }
  .brand-card-logo { width: 64px; height: 64px; }
  .brand-card-name { font-size: 14px; letter-spacing: 1.6px; }
  .brand-card-desc { font-size: 10px; letter-spacing: 0.14em; }
  .brand-reel-track { gap: 14px; animation-duration: 55s; }
}
@media (prefers-reduced-motion: reduce) {
  .brand-reel-track { animation: none; }
}

/* ──────────────────────────────────────────────
   PASS 13 - HERO OUTLINE STAMP + GALLERY POLISH
   ────────────────────────────────────────────── */

/* Hero NELO CUTZ - clean stamped treatment + single-pass gold sheen on load */
.hero-title {
  position: relative;
  display: inline-block;
}
.hero-title span {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: linear-gradient(
    90deg,
    var(--white) 0%,
    var(--white) 38%,
    var(--gold-light) 50%,
    var(--white) 62%,
    var(--white) 100%
  ) !important;
  background-size: 250% 100% !important;
  background-position: 100% 0 !important;
  -webkit-background-clip: text !important;
          background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  animation: heroSheen 4.5s ease-out 0.4s both;
}
@keyframes heroSheen {
  0%   { background-position: 100% 0; }
  100% { background-position: 0%   0; }
}
/* Static outline echo behind - no movement, no animation */
.hero-title::before {
  content: "NELO CUTZ";
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
  font-family: var(--font-display);
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 110, 0.22);
          text-stroke: 1px rgba(201, 169, 110, 0.22);
  pointer-events: none;
  white-space: nowrap;
  width: 100%;
  text-align: center;
  opacity: 0.7;
}
@media (prefers-reduced-motion: reduce) {
  .hero-title span { animation: none !important; background-position: 50% 0 !important; }
}

/* ══════════════════════════════════════════════════════════════
   PASS 14 - DESIGN DE-AI-IFICATION
   Stripping the cinematic/decorative AI clutter that gives away
   "AI-built" energy. Goal: restraint, not theatre.
   ══════════════════════════════════════════════════════════════ */

/* ── Custom cursor flair - KILL (Del's rule: no cursor flash) ── */
.cursor-dot, .cursor-ring { display: none !important; }
body { cursor: auto !important; }

/* ── Page-transition overlay (already display:none earlier, keep enforced) ── */
.page-transition { display: none !important; }

/* ── Scroll-progress bar at top - AI dashboard tell, KILL ── */
.scroll-progress { display: none !important; }

/* ── Hero gimmicks - kill the sheen sweep AND the outline echo stamp ── */
.hero-title::before { content: none !important; }
.hero-title span {
  background: none !important;
  -webkit-background-clip: initial !important;
          background-clip: initial !important;
  -webkit-text-fill-color: var(--white) !important;
  color: var(--white) !important;
  animation: none !important;
}

/* ── Letter-by-letter split reveals - KILL (AI text-animation tell) ── */
[data-split] .char, [data-split] .word { animation: none !important; opacity: 1 !important; transform: none !important; }
[data-split] { animation: none !important; }

/* ── Magnetic / tilt / parallax data-attributes - disable transforms ── */
[data-magnetic], [data-tilt], [data-parallax] { transform: none !important; }
/* Note: JS still attaches listeners but transforms are forced flat. */

/* ── Curtain reveal + ornament frame decorations on images - KILL ── */
.curtain-reveal::before, .curtain-reveal::after { content: none !important; }
.ornament-frame::before, .ornament-frame::after { content: none !important; }

/* ── Draw-line heading underscore animation - KILL ── */
.draw-line::after { content: none !important; }
.draw-line { background: none !important; }

/* ── Gold-line accent under hero/section titles - KILL ── */
.gold-line { display: none !important; }

/* ── Pulsing dots on sticky CTA + chair-status - kill the pulse animation ── */
.sticky-cta-dot, .chair-status-dot { animation: none !important; }

/* ── Atmospheric decorations from Pass 10/13 - KILL the gold glows ── */
.statement-section::before,
.brand-strip-section::after,
.brand-strip-section::before,
#booking::before,
#booking::after,
.about::before, .about::after,
.craft-section::before, .craft-section::after,
.services::before, .services::after,
.testimonials-section::before, .testimonials-section::after,
.faq-section::before, .faq-section::after {
  content: none !important;
  background: none !important;
}

/* ── Hero video vignette / grain / lines overlays - these are video gimmicks
   that read as "designer cinematic" tells. Soften but don't fully kill, since
   the dark gradient helps text legibility against the video. ── */
.hero-grain { display: none !important; }
.hero-lines { display: none !important; }
.hero-vignette {
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.75) 100%) !important;
}
.hero::after { content: none !important; }

/* ── Side label (vertical sticker) - already removed from HTML, enforce hide ── */
.side-label { display: none !important; }

/* ── Section reveal animations - keep the basic fade but kill the transform
   gimmicks (slide-in left/right, scale-in, etc) ── */
.reveal-left, .reveal-right, .reveal-scale, .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ── Hover transforms on logos / cards - keep modest. Kill the lift on
   brand cards since hover-lift is an AI-design pattern too ── */
.brand-card:hover { transform: none !important; box-shadow: none !important; }
.logo-mark:hover { transform: none !important; }

/* ── Inline CTA decorative gradient + border - flatten ── */
.inline-cta {
  background: rgba(245,232,199,0.025) !important;
  border: 1px solid rgba(201,169,110,0.18) !important;
}

/* ── Testimonial-card backgrounds: kill the gold gradient sheen ── */
.testimonial-card {
  background: transparent !important;
}

/* ── Gallery item hover transforms - keep brightness shift only, no scale ── */
.gallery-page-item:hover img { transform: none !important; }
.gallery-page-item::after { display: none !important; }

/* ──────────────────────────────────────────────
   PASS 15 - LIVE INSTAGRAM CAROUSEL
   ────────────────────────────────────────────── */

.ig-carousel-wrap {
  position: relative;
  max-width: 1500px;
  margin: clamp(28px, 4vw, 56px) auto 0;
  padding: 0 clamp(36px, 5vw, 56px);
}
.ig-carousel {
  display: flex;
  gap: clamp(10px, 1.2vw, 18px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.ig-carousel::-webkit-scrollbar { display: none; }
.ig-card {
  flex: 0 0 auto;
  width: clamp(220px, 28vw, 320px);
  aspect-ratio: 1 / 1;
  background: var(--black-card, #16140f);
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  display: block;
}
.ig-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92);
  transition: filter 0.3s ease;
}
.ig-card:hover img { filter: brightness(1); }
.ig-card-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: var(--white);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.ig-card:hover .ig-card-caption { opacity: 1; transform: translateY(0); }

/* Skeleton placeholder while loading */
.ig-skeleton {
  background: linear-gradient(110deg, #16140f 30%, #1d1a13 50%, #16140f 70%);
  background-size: 300% 100%;
  animation: igSkeletonShimmer 1.6s ease-in-out infinite;
}
@keyframes igSkeletonShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Arrow controls */
.ig-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border: 1px solid rgba(201,169,110,0.32);
  background: rgba(10,10,10,0.7);
  color: var(--gold);
  font-size: 24px;
  font-family: serif;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.ig-carousel-arrow[data-dir="-1"] { left: 0; }
.ig-carousel-arrow[data-dir="1"]  { right: 0; }
.ig-carousel-arrow:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.ig-carousel-arrow:disabled { opacity: 0.35; cursor: default; }
.ig-carousel-arrow:disabled:hover { background: rgba(10,10,10,0.7); color: var(--gold); border-color: rgba(201,169,110,0.32); }

@media (max-width: 600px) {
  .ig-carousel-arrow { display: none; }
  .ig-carousel-wrap { padding: 0 16px; }
  .ig-card { width: 70vw; }
}

.ig-carousel-footer {
  text-align: center;
  margin-top: clamp(28px, 3vw, 44px);
}

/* ──────────────────────────────────────────────
   PASS 16 - IG CAROUSEL POLAROID UPGRADE
   Auto-scrolling carousel with photo-print card framing
   ────────────────────────────────────────────── */

.ig-carousel-wrap {
  position: relative;
  max-width: 1500px;
  margin: clamp(28px, 4vw, 56px) auto 0;
  padding: 0 clamp(36px, 5vw, 56px);
}

.ig-carousel-frame {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
}

/* Override the older overflow:auto on .ig-carousel so the JS rAF scroller drives it
   without showing a horizontal scrollbar */
.ig-carousel {
  display: flex;
  gap: clamp(14px, 1.6vw, 22px);
  overflow-x: scroll;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: none;
  padding: clamp(20px, 2.2vw, 32px) 0 clamp(24px, 2.6vw, 36px);
}
.ig-carousel::-webkit-scrollbar { display: none; }

/* ── Polaroid-style card ── */
.ig-card {
  flex: 0 0 auto;
  width: clamp(220px, 26vw, 300px);
  display: block;
  background: linear-gradient(180deg, #1a1611 0%, #100c08 100%);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  position: relative;
  box-shadow:
    0 12px 28px rgba(0,0,0,0.5),
    0 2px 4px rgba(0,0,0,0.35),
    inset 0 0 0 1px rgba(245,232,199,0.03);
  transform: translateZ(0) translateY(0) rotate(0deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s ease,
              border-color 0.4s ease;
  overflow: hidden;
  /* Photo print padding around the image - like a polaroid */
  padding: 12px 12px 0 12px;
}
.ig-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,169,110,0.55);
  box-shadow:
    0 22px 44px rgba(0,0,0,0.65),
    0 4px 8px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(245,232,199,0.08);
}

/* Image inside the card "frame" */
.ig-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  filter: brightness(0.94) contrast(1.02);
  transition: filter 0.4s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  background: #0c0a08;
  border-radius: 2px;
}
.ig-card:hover img {
  filter: brightness(1.04) contrast(1.06);
  transform: scale(1.02);
}

/* IG icon corner badge */
.ig-card-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 26px; height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,10,0.55);
  border: 1px solid rgba(201,169,110,0.32);
  color: var(--gold);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.ig-card:hover .ig-card-badge {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* Footer band under image (polaroid white space) */
.ig-card::after {
  content: "";
  display: block;
  height: clamp(42px, 4.6vw, 58px);
}

/* Hover caption overlay - slides up over the image */
.ig-card-overlay {
  position: absolute;
  left: 12px; right: 12px;
  bottom: 12px;
  background: linear-gradient(to top, rgba(10, 8, 6, 0.97) 30%, rgba(10, 8, 6, 0.82) 70%, transparent 100%);
  padding: 18px 16px 12px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}
.ig-card:hover .ig-card-overlay {
  opacity: 1;
  transform: translateY(0);
}
.ig-card-caption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  line-height: 1.45;
  color: var(--white);
  margin: 0 0 10px 0;
}
.ig-card-caption:empty { display: none; }
.ig-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ig-card-time {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-muted);
}
.ig-card-view {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Permanent caption strip below image when NOT hovered (the polaroid "label" area) */
.ig-card-time-bottom {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-muted);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.ig-card:hover .ig-card-time-bottom { opacity: 0; }

/* Skeleton placeholder (override earlier rule for new card shape) */
.ig-card.ig-skeleton {
  background: linear-gradient(110deg, #1a1611 30%, #221d15 50%, #1a1611 70%);
  background-size: 300% 100%;
  animation: igSkeletonShimmer 1.6s ease-in-out infinite;
}
.ig-card.ig-skeleton img,
.ig-card.ig-skeleton .ig-card-badge,
.ig-card.ig-skeleton .ig-card-overlay,
.ig-card.ig-skeleton::after { display: none; }
.ig-card.ig-skeleton {
  aspect-ratio: 0.85;
  width: clamp(220px, 26vw, 300px);
}

@media (max-width: 600px) {
  .ig-card { width: 240px; padding: 10px; }
  .ig-card::after { height: 40px; }
  .ig-card-badge { width: 24px; height: 24px; top: 14px; right: 14px; }
  .ig-carousel-arrow { display: none; }
  .ig-carousel-wrap { padding: 0 16px; }
}

/* Arrow buttons sit OUTSIDE the masked frame so they're not faded out */
.ig-carousel-arrow {
  z-index: 5;
}

/* ══════════════════════════════════════════════════════════════
   PASS 17 - LAYOUT TIGHTENING
   Unify container widths so content doesn't drift left/right
   between sections. Cut vertical padding ~30%. Tighten dividers.
   ══════════════════════════════════════════════════════════════ */

/* ── Unified container max-width (1280px) ── */
:root { --rail: 1280px; }

/* Apply to the inner content containers of every centred section */
.about,
.craft-grid,
.services,
.testimonials-section,
.brand-strip-section,
.faq-section,
.ig-carousel-wrap,
.location,
.booking {
  max-width: var(--rail) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: clamp(20px, 3vw, 48px) !important;
  padding-right: clamp(20px, 3vw, 48px) !important;
  box-sizing: border-box;
}

/* Sections that should stay narrow for readability keep their narrower widths */
.faq-section { max-width: 920px !important; }
.story-section { max-width: 760px !important; }
.statement-section { max-width: 1100px !important; padding-left: clamp(20px, 4vw, 56px) !important; padding-right: clamp(20px, 4vw, 56px) !important; }

/* The brand-reel + ig-carousel tracks intentionally bleed past the rail
   so the marquee fade effect works. Restore their internal flow but keep
   the SECTION (header + reel) inside the 1280 rail. */
.brand-strip-section .brand-reel,
.brand-strip-section .brand-reel-track {
  /* Allow horizontal overflow beyond the rail */
  max-width: none !important;
}

/* ── Section vertical padding - cut ~30% ── */
section,
.brand-strip-section,
.ig-feed-section,
.testimonials-section,
.faq-section,
.statement-section,
#booking,
#location,
#services,
#about,
.craft-section {
  padding-top: clamp(48px, 6vw, 84px) !important;
  padding-bottom: clamp(48px, 6vw, 84px) !important;
}

/* Hero exempted - it's a viewport-height section */
.hero { padding-top: 0 !important; padding-bottom: 0 !important; }

/* ── Section dividers - halve ── */
.section-divider {
  height: clamp(12px, 2vw, 28px) !important;
}

/* ── Tighten section header internal spacing ── */
.section-label,
.clients-eyebrow,
.craft-eyebrow,
.statement-meta,
.page-hero-pre {
  margin-bottom: clamp(12px, 1.4vw, 18px) !important;
}
.section-title,
.clients-title,
.page-hero-title,
.craft-title {
  margin-bottom: clamp(14px, 1.6vw, 22px) !important;
}
.section-subtitle,
.brand-strip-sub,
.page-hero-tagline,
.craft-body {
  margin-bottom: clamp(20px, 2.2vw, 32px) !important;
}

/* Center-rail tighten on the testimonials grid container */
.testimonials-section { padding-top: clamp(48px, 6vw, 84px) !important; padding-bottom: clamp(48px, 6vw, 84px) !important; }

/* IG carousel wrap - internal padding tighter so it aligns to the rail edges */
.ig-carousel-wrap { padding-left: clamp(36px, 5vw, 56px) !important; padding-right: clamp(36px, 5vw, 56px) !important; max-width: var(--rail) !important; }

/* Brand strip section header - keep header within rail, marquee bleeds */
.brand-strip-section { overflow: visible; }
.brand-strip-section .clients-eyebrow,
.brand-strip-section .clients-title,
.brand-strip-section .brand-strip-sub {
  max-width: var(--rail);
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}

/* Inline CTAs sit inside their section padding - tighten internal pad */
.inline-cta { margin: clamp(28px, 3.5vw, 48px) auto 0 !important; padding: clamp(22px, 3vw, 36px) clamp(18px, 3vw, 32px) !important; }

/* ── PASS 17b: zero horizontal padding on sections so inner containers
   do all the alignment work - fixes left-edge drift between sections ── */
section:not(.hero):not(.statement-section),
#about, #services, #booking, #location {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Booking container - pull into the same rail */
.booking-container, #booking .booking {
  max-width: var(--rail) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: clamp(20px, 3vw, 48px) !important;
  padding-right: clamp(20px, 3vw, 48px) !important;
  box-sizing: border-box;
}

/* Brand strip section - keep marquee bleeding, but align inner header
   to the same left edge as other sections */
.brand-strip-section { padding-left: 0 !important; padding-right: 0 !important; }
.brand-strip-section > * {
  max-width: var(--rail);
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: clamp(20px, 3vw, 48px);
  padding-right: clamp(20px, 3vw, 48px);
  box-sizing: border-box;
}
.brand-strip-section .brand-reel {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: var(--rail) !important;
  overflow: hidden;
}

/* FAQ stays narrow but its container also needs alignment to rail-relative */
.faq-section { padding-left: 0 !important; padding-right: 0 !important; }
.faq-section > * {
  max-width: 920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: clamp(20px, 3vw, 48px);
  padding-right: clamp(20px, 3vw, 48px);
  box-sizing: border-box;
}

/* IG carousel - its wrap IS the rail container */
.ig-feed-section { padding-left: 0 !important; padding-right: 0 !important; }
.ig-feed-section > *:not(.ig-carousel-wrap) {
  max-width: var(--rail) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: clamp(20px, 3vw, 48px);
  padding-right: clamp(20px, 3vw, 48px);
  box-sizing: border-box;
}
