/* ===================================================================
   SHINE NINJAS AUTO DETAIL — cinematic site styles
   Deep ink base · sunset orange + gold accents · cream type
   =================================================================== */

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

:root {
  --ink:      #0a0c10;
  --ink-2:    #0c0f15;
  --panel:    #12151c;
  --panel-2:  #161a22;
  --gold:     #C8941F;
  --gold-lt:  #e3b85a;
  --orange:   #ff9a44;
  --orange-d: #d07a3c;
  --text:     #f4f4f6;
  --dim:      #9aa0ad;
  --dim-2:    #6c727e;
  --line:     rgba(255,255,255,0.08);
  --line-2:   rgba(255,255,255,0.05);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--ink);
  overflow-x: hidden;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }

/* ── BRAND LOCKUP (matches real Shine Ninjas logo) ── */
.logo { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; gap: 5px; text-decoration: none; }
.logo .logo-name { font-family: Georgia, 'Times New Roman', serif; font-weight: 700; font-size: 19px; letter-spacing: 0.18em; color: #fff; padding-left: 0.18em; }
.logo .logo-rule { width: 100%; height: 1.5px; background: var(--gold); opacity: 0.95; }
.logo .logo-sub  { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 8.5px; letter-spacing: 0.46em; color: var(--gold); padding-left: 0.46em; }
.logo-loader .logo-name { font-size: 26px; }

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0; z-index: 500;
  background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  transition: opacity 0.8s ease;
}
#loader.hide { opacity: 0; pointer-events: none; }
.bar { width: 210px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--orange)); transition: width 0.3s ease; }
#loader-pct { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--dim); }

/* ── 3D CANVAS + SCROLL TRACK ── */
#scene-canvas { position: fixed; inset: 0; width: 100vw; height: 100vh; z-index: 0; display: block; transition: opacity 0.4s ease; }
#scroll-space { position: relative; z-index: 1; height: 520vh; pointer-events: none; }

/* ── CINEMATIC BEATS (overlay copy) ── */
.beat {
  position: fixed; left: 0; right: 0; z-index: 2; pointer-events: none;
  opacity: 0; transition: opacity 0.6s ease; padding: 0 8vw;
}
.beat.show { opacity: 1; }
.beat .eyebrow {
  font-family: 'Sora', sans-serif; font-weight: 700; letter-spacing: 0.32em;
  text-transform: uppercase; font-size: 12px; color: var(--gold); margin-bottom: 14px;
}
.beat h1 { font-family: 'Sora', sans-serif; font-weight: 800; line-height: 1.02; letter-spacing: -0.02em; font-size: clamp(34px, 6.2vw, 84px); }
.beat h1 .thin { font-weight: 300; color: var(--dim); }
.beat p { margin-top: 18px; max-width: 440px; color: var(--dim); font-size: clamp(15px, 1.5vw, 18px); line-height: 1.6; }
.beat-1 { top: 50%; transform: translateY(-50%); text-align: center; }
.beat-1 .eyebrow { display: inline-block; }
.beat-2 { bottom: 14vh; }
.beat-3 { top: 18vh; }
.beat-4 { top: 50%; transform: translateY(-50%); right: 8vw; left: auto; text-align: right; max-width: 560px; }
.beat-4 p { margin-left: auto; }

/* ── SCROLL HINT ── */
.scroll-hint {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 5;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--dim);
  display: flex; flex-direction: column; align-items: center; gap: 10px; transition: opacity 0.5s ease;
}
.scroll-hint .line { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: drop 1.8s ease-in-out infinite; }
@keyframes drop { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 50.1%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 76px; padding: 0 6vw;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent; transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease, height 0.35s ease;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  height: 66px;
  background: rgba(10,12,16,0.82); backdrop-filter: blur(14px);
  border-bottom-color: rgba(200,148,31,0.22);
}
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  pointer-events: auto; font-family: 'Sora', sans-serif; font-weight: 600 !important; font-size: 12px !important;
  letter-spacing: 0.04em !important; color: var(--ink) !important; background: var(--gold);
  padding: 11px 20px; border-radius: 100px; text-decoration: none; text-transform: none !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease; box-shadow: 0 8px 30px rgba(232,184,75,0.25);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232,184,75,0.45); color: var(--ink) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; }

.mobile-menu {
  display: none; position: fixed; top: 66px; left: 0; right: 0;
  background: rgba(10,12,16,0.97); backdrop-filter: blur(14px);
  padding: 16px 6vw 26px; z-index: 99; border-bottom: 1px solid rgba(200,148,31,0.2);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 15px 0; font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.78);
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.07); transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }

#top { position: absolute; top: 0; }

/* ── CONTENT WRAPPER (opaque, scrolls over fixed canvas) ── */
#content { position: relative; z-index: 3; }

/* ── BUTTONS ── */
.btn {
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 15px;
  padding: 16px 30px; border-radius: 100px; text-decoration: none; display: inline-block;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s, color 0.25s, background 0.25s;
}
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 10px 36px rgba(232,184,75,0.3); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(232,184,75,0.5); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.18); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-primary {
  background: var(--gold); color: var(--ink);
  padding: 13px 28px; border-radius: 100px;
  font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-decoration: none; display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 8px 26px rgba(232,184,75,0.22);
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 12px 34px rgba(232,184,75,0.4); }

.btn-secondary {
  background: transparent; color: rgba(255,255,255,0.75);
  padding: 14px 30px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.2);
  font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  text-decoration: none; display: inline-block; transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.85s cubic-bezier(.2,.7,.2,1), transform 0.85s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ── SECTION BASICS ── */
section { padding: 110px 0; position: relative; }
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.eyebrow {
  font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.section-header h2 {
  font-family: 'Sora', sans-serif; font-size: clamp(34px, 4.4vw, 60px); font-weight: 800;
  line-height: 1.06; letter-spacing: -0.025em; color: var(--text);
}
.section-sub { font-size: 16px; font-weight: 300; color: var(--dim); max-width: 540px; margin: 16px auto 0; line-height: 1.7; }

/* ── ENTER / TRANSITION HERO ── */
.enter {
  min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 18vh 8vw 12vh;
  background:
    radial-gradient(ellipse 70% 55% at 50% 30%, rgba(200,148,31,0.13), transparent 70%),
    var(--ink);
}
.enter-inner { max-width: 900px; }
.enter h2 {
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: clamp(38px, 6vw, 78px);
  line-height: 1.03; letter-spacing: -0.03em; color: #fff; margin-bottom: 22px;
}
.enter-sub { font-size: clamp(15px, 1.5vw, 19px); font-weight: 300; color: var(--dim); max-width: 560px; margin: 0 auto 40px; line-height: 1.7; }
.enter-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 56px; margin-top: 76px; padding-top: 44px;
  border-top: 1px solid var(--line); flex-wrap: wrap; justify-content: center;
}
.stat-num { font-family: 'Sora', sans-serif; font-size: 42px; font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -0.02em; }
.stat-label { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim-2); margin-top: 8px; }

/* ── MARQUEE ── */
.marquee { overflow: hidden; background: var(--ink); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); padding: 22px 0; }
.marquee-track { display: inline-flex; align-items: center; gap: 34px; white-space: nowrap; animation: scrollX 28s linear infinite; }
.marquee-track span { font-family: 'Sora', sans-serif; font-weight: 700; font-size: clamp(18px, 2.4vw, 30px); letter-spacing: 0.04em; color: rgba(255,255,255,0.16); text-transform: uppercase; }
.marquee-track span.dot { color: var(--gold); opacity: 0.7; font-size: 16px; }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SERVICES ── */
.services { background: var(--ink); }
.stage3-notice {
  max-width: 820px; margin: 0 auto 44px;
  background: rgba(200, 148, 31, 0.09);
  border: 1px solid rgba(200, 148, 31, 0.45);
  border-radius: 12px;
  padding: 20px 26px 16px;
  text-align: center;
}
.stage3-notice .stage3-title {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 18px;
}
.stage3-notice .stage3-until {
  display: inline-block; margin-left: 10px; padding: 3px 10px;
  font-size: 10.5px; letter-spacing: 0.1em; border-radius: 100px;
  background: rgba(200, 148, 31, 0.18); color: var(--gold-lt);
  vertical-align: middle;
}
.s3-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.s3-point {
  display: flex; align-items: center; gap: 12px; text-align: left;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 13px 15px;
}
.s3-point .s3-ico {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  background: rgba(200, 148, 31, 0.18); color: var(--gold-lt);
}
.s3-point.s3-no .s3-ico { background: rgba(214, 69, 69, 0.16); color: #e07070; }
.s3-point p { font-size: 13.5px; font-weight: 300; color: #b9bec9; line-height: 1.45; margin: 0; }
.s3-point p strong { display: inline; color: #fff; font-weight: 600; font-size: 14px; }
.s3-foot { font-size: 11.5px; color: var(--dim-2); margin: 14px 0 0; }
@media (max-width: 768px) { .s3-points { grid-template-columns: 1fr; } }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 16px;
  padding: 44px 34px; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 16px;
  background: radial-gradient(120% 80% at 50% -10%, rgba(200,148,31,0.10), transparent 60%);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(200,148,31,0.35); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  background: linear-gradient(180deg, #1a1d26 0%, #14171e 100%);
  border-color: rgba(200,148,31,0.45); box-shadow: 0 24px 70px rgba(0,0,0,0.55);
}
.service-card.featured::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange)); border-radius: 16px 16px 0 0;
}
.service-label {
  font-family: 'Sora', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); background: rgba(200,148,31,0.12);
  border: 1px solid rgba(200,148,31,0.3); display: inline-block; padding: 5px 12px; border-radius: 100px; margin-bottom: 22px;
}
.service-name { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.service-price { font-family: 'Sora', sans-serif; font-size: 52px; font-weight: 300; color: var(--gold); letter-spacing: -0.03em; line-height: 1; margin-bottom: 26px; }
.service-price sup { font-size: 22px; font-weight: 500; vertical-align: top; margin-top: 10px; display: inline-block; }
.service-price sub { font-size: 16px; color: var(--dim); }
.service-list { list-style: none; margin-bottom: 32px; }
.service-list li { font-size: 14px; color: var(--dim); padding: 9px 0; border-bottom: 1px solid var(--line-2); display: flex; align-items: flex-start; gap: 10px; line-height: 1.4; }
.service-list li::before { content: '✓'; color: var(--gold); font-weight: 700; font-size: 12px; margin-top: 2px; }
.service-card .btn-primary { width: 100%; text-align: center; }
.service-card:not(.featured) .btn-primary { background: transparent; color: var(--gold); border: 1px solid rgba(200,148,31,0.45); box-shadow: none; }
.service-card:not(.featured) .btn-primary:hover { background: var(--gold); color: var(--ink); }
.services-note { text-align: center; font-size: 13px; color: var(--dim-2); margin-top: 36px; max-width: 760px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* ── HOW IT WORKS ── */
.how-it-works { background: var(--ink-2); }
.hiw-grid { display: flex; align-items: center; gap: 0; max-width: 980px; margin: 0 auto; }
.hiw-step { flex: 1; text-align: center; padding: 40px 32px; }
.hiw-number { font-family: 'Sora', sans-serif; font-size: 60px; font-weight: 800; line-height: 1; margin-bottom: 18px;
  background: linear-gradient(180deg, var(--gold-lt), var(--orange-d)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; opacity: 0.9; }
.hiw-title { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 12px; letter-spacing: 0.01em; }
.hiw-text { font-size: 14px; font-weight: 300; color: var(--dim); line-height: 1.7; }
.hiw-divider { width: 1px; height: 90px; background: linear-gradient(transparent, var(--line), transparent); flex-shrink: 0; }

/* ── GALLERY ── */
.gallery { background: var(--ink); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.gallery-item { aspect-ratio: 4/3; overflow: hidden; position: relative; border-radius: 10px; cursor: pointer; background: var(--panel); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05); border-radius: 10px; pointer-events: none; }
.gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); opacity: 0; transform: translateY(6px); transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .gallery-label { opacity: 1; transform: none; }

/* LIGHTBOX */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(5,6,9,0.96); z-index: 1000; align-items: center; justify-content: center; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 6px; box-shadow: 0 30px 90px rgba(0,0,0,0.7); }
.lightbox-close { position: absolute; top: 22px; right: 28px; background: none; border: none; color: rgba(255,255,255,0.6); font-size: 26px; cursor: pointer; transition: color 0.2s; }
.lightbox-close:hover { color: #fff; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.06);
  border: 1px solid var(--line); color: #fff; font-size: 32px; padding: 10px 18px; cursor: pointer; transition: background 0.2s, border-color 0.2s; border-radius: 100px;
}
.lightbox-prev { left: 24px; } .lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.12); border-color: var(--gold); }

/* ── BEFORE & AFTER ── */
.beforeafter { background: var(--ink-2); }
.ba-container { max-width: 880px; margin: 0 auto; }
.ba-item { margin-top: 44px; }
.ba-slider { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; border-radius: 14px; cursor: ew-resize; user-select: none; box-shadow: 0 24px 60px rgba(0,0,0,0.45); }
.ba-before, .ba-after { position: absolute; inset: 0; }
.ba-before img, .ba-after img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--gold); transform: translateX(-50%); cursor: ew-resize; }
.ba-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 46px; height: 46px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; gap: 2px; font-size: 12px; color: var(--ink); font-weight: 700; box-shadow: 0 4px 18px rgba(0,0,0,0.5); }
.ba-note { text-align: center; font-size: 12px; color: var(--dim-2); margin-top: 28px; letter-spacing: 0.1em; text-transform: uppercase; }
.ba-tags { display: flex; justify-content: space-between; margin-top: 12px; }
.ba-tag { font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); }
.ba-desc { font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); text-align: center; margin-top: 8px; }

/* ── REVIEWS ── */
.reviews { background: var(--ink); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.review-card { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 34px; position: relative; transition: transform 0.3s, border-color 0.3s; }
.review-card::before { content: '“'; position: absolute; top: 14px; right: 24px; font-family: Georgia, serif; font-size: 64px; color: rgba(200,148,31,0.18); line-height: 1; }
.review-card:hover { transform: translateY(-5px); border-color: rgba(200,148,31,0.3); }
.review-stars { color: var(--gold); font-size: 16px; margin-bottom: 16px; letter-spacing: 3px; }
.review-text { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.85); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.review-author { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 600; color: var(--gold); }
.review-cta { text-align: center; margin-bottom: 8px; }

/* ── WHY ── */
.why { background: var(--ink-2); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-card { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 40px 28px; text-align: center; transition: transform 0.3s, border-color 0.3s, background 0.3s; }
.why-card:hover { transform: translateY(-5px); border-color: rgba(200,148,31,0.3); background: var(--panel-2); }
.why-icon { font-size: 34px; margin-bottom: 20px; display: block; }
.why-title { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 12px; }
.why-text { font-size: 13px; color: var(--dim); line-height: 1.7; }

/* ── FAQ ── */
.faq { background: var(--ink); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0; font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 500; color: var(--text); text-align: left; gap: 16px; transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon { font-size: 24px; font-weight: 300; color: var(--gold); flex-shrink: 0; transition: transform 0.3s ease; line-height: 1; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s ease; }
.faq-answer.open { max-height: 340px; padding-bottom: 26px; }
.faq-answer p { font-size: 14px; color: var(--dim); line-height: 1.8; }
.faq-answer p strong { color: var(--text); font-weight: 600; }

/* ── BOOKING ── */
.booking { background: var(--ink-2); }
.form-wrap {
  max-width: 720px; margin: 0 auto; background: var(--panel); border: 1px solid var(--line);
  padding: 48px; border-radius: 20px; box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 22px; }
.form-group label { font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); margin-bottom: 9px; }
.form-group input, .form-group select, .form-group textarea {
  padding: 14px 16px; border: 1px solid var(--line); border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 15px;
  color: var(--text); background: var(--ink); transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--dim-2); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,148,31,0.12); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--ink); color: var(--text); }
.form-group input[type="date"] { color-scheme: dark; }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  width: 100%; padding: 17px; background: var(--gold); color: var(--ink); border: none; border-radius: 100px;
  font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; margin-top: 6px; box-shadow: 0 10px 30px rgba(232,184,75,0.25);
}
.btn-submit:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(232,184,75,0.4); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-success { margin-top: 18px; padding: 15px; background: rgba(45,122,45,0.15); border: 1px solid rgba(120,200,120,0.35); border-radius: 10px; font-size: 14px; color: #9be29b; text-align: center; }
.form-error { margin-top: 18px; padding: 15px; background: rgba(122,45,45,0.15); border: 1px solid rgba(200,120,120,0.35); border-radius: 10px; font-size: 14px; color: #f0a0a0; text-align: center; }

/* ── INSTAGRAM ── */
.instagram-strip { background: var(--ink); }
.insta-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 24px; }
.insta-header h2 { font-family: 'Sora', sans-serif; font-size: clamp(28px, 3.2vw, 44px); font-weight: 800; color: #fff; margin-top: 8px; letter-spacing: -0.02em; }
.insta-sub { font-size: 14px; font-weight: 300; color: var(--dim); margin-top: 8px; }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.insta-item { aspect-ratio: 1; border-radius: 10px; overflow: hidden; display: block; position: relative; transition: transform 0.3s; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s, filter 0.3s; filter: grayscale(0.15); }
.insta-item:hover img { transform: scale(1.08); filter: grayscale(0); }
.insta-item::after { content: '↗'; position: absolute; top: 10px; right: 12px; color: #fff; opacity: 0; transition: opacity 0.3s; font-size: 14px; }
.insta-item:hover::after { opacity: 0.9; }

/* ── CONTACT STRIP ── */
.contact-strip {
  background: linear-gradient(180deg, var(--ink-2), #0c0a08);
  padding: 110px 6vw; text-align: center; border-top: 1px solid var(--line-2); position: relative; overflow: hidden;
}
.contact-strip::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 50% at 50% 0%, rgba(255,154,68,0.10), transparent 70%); pointer-events: none; }
.contact-strip h2 { font-family: 'Sora', sans-serif; font-size: clamp(34px, 5vw, 62px); font-weight: 800; color: #fff; margin-bottom: 14px; letter-spacing: -0.02em; }
.contact-strip p { font-size: 17px; font-weight: 300; color: var(--dim); margin-bottom: 38px; }
.contact-details { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; margin-top: 54px; padding-top: 48px; border-top: 1px solid var(--line); position: relative; }
.contact-item { text-align: center; }
.contact-label { font-family: 'Sora', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 9px; }
.contact-value { font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.82); }
.contact-value a { color: inherit; text-decoration: none; transition: color 0.2s; }
.contact-value a:hover { color: var(--gold); }

/* ── FOOTER ── */
footer { background: #07080b; padding: 34px 6vw; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line-2); flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 12px; color: var(--dim-2); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 12px; color: var(--dim-2); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ── MOBILE FLOATING CTA ── */
.mobile-book-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: linear-gradient(90deg, var(--gold), var(--orange)); color: var(--ink); text-align: center;
  padding: 18px; font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none; z-index: 200;
}

/* ── RESPONSIVE ── */
/* collapse nav to hamburger before the links can crowd the logo / CTA */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

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

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  section { padding: 80px 0; }
  .enter { padding: 16vh 24px 12vh; }
  .hero-stats { gap: 30px 40px; margin-top: 56px; }
  .stat-num { font-size: 34px; }

  .form-wrap { padding: 32px 22px; }
  .form-row { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }

  .review-card { padding: 26px 22px; }
  .why-card { padding: 30px 20px; }

  .contact-strip { padding: 80px 24px; }
  .contact-details { gap: 30px; }
  footer { padding: 26px 24px; flex-direction: column; align-items: flex-start; }

  .hiw-grid { flex-direction: column; }
  .hiw-divider { width: 80px; height: 1px; }

  .mobile-book-cta { display: block; }

  .beat-4 { right: 6vw; left: 6vw; text-align: left; max-width: none; }
  .beat-4 p { margin-left: 0; }
}
