*, *::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;
  --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: 12px; font-weight: 500; letter-spacing: 6px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  opacity: 0; animation: fadeUp 1s 0.3s var(--ease-out-expo) forwards;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(80px, 15vw, 200px);
  letter-spacing: clamp(8px, 2vw, 30px); line-height: 0.9;
  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-serif); font-size: clamp(18px, 2.5vw, 28px); font-weight: 400;
  font-style: italic; color: var(--white-dim); margin-top: 30px; letter-spacing: 4px;
  opacity: 0; animation: fadeUp 1s 0.8s var(--ease-out-expo) forwards;
}
.hero-tagline em { color: var(--gold); font-style: italic; }
.hero-cta { margin-top: 50px; opacity: 0; animation: fadeUp 1s 1.1s var(--ease-out-expo) forwards; }
.hero-cta .btn-book { padding: 18px 48px; font-size: 13px; letter-spacing: 4px; }
.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(80px, 10vw, 140px) 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; display: block; filter: brightness(0.9) contrast(1.05); }
.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: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.about-image-sublabel { font-size: 11px; color: var(--white-muted); margin-top: 4px; }
.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: 48px; color: var(--gold); line-height: 1; }
.about-stat-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--white-muted); margin-top: 6px; }
@media (max-width: 800px) { .about { grid-template-columns: 1fr; } .about-image { max-height: 500px; } }

/* ═══ 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_img6.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: 180px clamp(20px, 5vw, 80px) 100px;
  text-align: center; overflow: hidden;
  background: linear-gradient(180deg, rgba(10,10,10,0.85), rgba(10,10,10,0.95)),
              url('nelo_character_art.jpg') center/cover no-repeat;
  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); }

/* ═══ 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; }
.story-section p:first-of-type::first-letter {
  font-family: var(--font-display); font-size: 72px; float: left;
  color: var(--gold); margin-right: 12px; line-height: 0.85; padding-top: 6px;
}
.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(3, 1fr); gap: 12px; max-width: 1400px; margin: 0 auto;
}
.gallery-page-item {
  position: relative; overflow: hidden; aspect-ratio: 4/5; cursor: pointer;
  transition: opacity 0.4s, transform 0.4s; background: var(--black-card);
}
.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(--white-muted); letter-spacing: 2px; text-transform: uppercase; }
.contact-cta-text .cta-value { font-size: 15px; font-weight: 500; margin-top: 2px; }
.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 40%, rgba(10,10,10,0.6) 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;
  opacity: 0; animation: fadeUp 1s 1.8s var(--ease-out-expo) forwards;
}
.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(32px, 5vw, 64px);
  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);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 600;
}
.marquee-item::after {
  content: "✦";
  margin-left: clamp(32px, 5vw, 72px);
  color: var(--gold);
  font-size: 0.5em;
  opacity: 0.6;
}
@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: clamp(80px, 14vw, 200px);
  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 {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  overflow: hidden;
}
.aurora-bg::before,
.aurora-bg::after {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.35;
  animation: auroraDrift 18s ease-in-out infinite;
}
.aurora-bg::before {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(201,169,110,0.22), transparent 65%);
  top: -180px; left: -120px;
}
.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: 28px;
  color: var(--gold);
  line-height: 1;
}
.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(44px, 6vw, 84px);
  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-serif);
  font-style: italic;
  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;
  transform: translateY(100%);
  transition: transform 0.7s var(--ease-out-expo), opacity 0.5s;
}
.page-transition.out {
  opacity: 1;
  transform: translateY(0);
}

/* ─── 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 {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 169, 110, 0.35);
  pointer-events: none;
  z-index: 3;
}

/* ─── 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; }
}
