/* =========================================================
   Bright Beats — Global Styles
   Palette: near-black · gold #F5C027 · orange #E8600A · white
   Fonts: Barlow Condensed (display) + Outfit (body)
   ========================================================= */

/* ── Tokens ── */
:root {
  --bg:           #0a0a0a;
  --bg-card:      #111111;
  --bg-raised:    #1a1a1a;
  --gold:         #F5C027;
  --gold-dim:     rgba(245, 192, 39, 0.12);
  --gold-glow:    rgba(245, 192, 39, 0.22);
  --gold-mid:     rgba(245, 192, 39, 0.4);
  --orange:       #E8600A;
  --orange-dim:   rgba(232, 96, 10, 0.12);
  --orange-glow:  rgba(232, 96, 10, 0.28);
  --text:         #F0EDE6;
  --text-muted:   #888880;
  --text-light:   #BBB5AA;
  --border:       rgba(245, 192, 39, 0.14);
  --border-hi:    rgba(245, 192, 39, 0.38);
  --shadow:       0 24px 60px rgba(0, 0, 0, 0.7);
  --radius:       12px;
  --nav-h:        68px;
  color-scheme:   dark;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-mid) transparent;
  background-color: var(--bg);
}
html::-webkit-scrollbar { width: 5px; }
html::-webkit-scrollbar-track { background: transparent; }
html::-webkit-scrollbar-thumb { background: var(--gold-mid); border-radius: 99px; }

body {
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── Noise Texture Overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ── Layout ── */
.shell {
  width: min(100% - 3rem, 1160px);
  margin-inline: auto;
}

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245, 192, 39, 0.1);
  transition: background 0.3s, border-color 0.3s;
  /* FIX: extend far upward so Safari overscroll bounce never shows page bg above nav */
  box-shadow: 0 -9999px 0 9999px rgba(10, 10, 10, 0.92);
}
.site-nav.scrolled {
  background: rgba(10, 10, 10, 0.98);
  border-color: var(--border);
  box-shadow: 0 -9999px 0 9999px rgba(10, 10, 10, 0.98);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* ── Logo: image + text combo ── */
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.nav-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-logo-text span:first-child { color: var(--gold); }
.nav-logo-text span:last-child { color: var(--text-muted); font-size: 0.7rem; letter-spacing: 0.12em; font-weight: 600; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-links a {
  min-height: 38px;
  padding: 0 1rem;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  color: var(--text-muted);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--gold); background: var(--gold-dim); }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  margin-left: 0.75rem !important;
  display: inline-flex !important;
  align-items: center !important;
  min-height: 40px;
  padding: 0 1.5rem !important;
  border-radius: 8px !important;
  background: var(--gold) !important;
  color: #0a0a0a !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  transition: transform 0.15s, box-shadow 0.2s !important;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px var(--gold-glow) !important;
  background: var(--gold) !important;
  color: #0a0a0a !important;
}

/* ── Hamburger ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-left: auto;
  flex-shrink: 0;
  /* FIX: ensure no residual content around spans */
  overflow: hidden;
  padding: 0;
  line-height: 0;
  font-size: 0;
}
.nav-hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 99px;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), opacity 0.2s;
  flex-shrink: 0;
  pointer-events: none;
}
/* FIX: clean X transform — hide middle bar, cross the other two */
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile nav drawer ── */
.nav-links.open {
  display: flex !important;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0 2rem;
  border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold);
  color: #0a0a0a;
  box-shadow: 0 8px 24px var(--gold-glow);
}
.btn-primary:hover {
  box-shadow: 0 14px 36px rgba(245, 192, 39, 0.4);
}
.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 24px var(--orange-glow);
}
.btn-orange:hover {
  box-shadow: 0 14px 36px rgba(232, 96, 10, 0.45);
}
.btn-outline {
  border: 2px solid var(--border-hi);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
}
.btn-sm { min-height: 42px; padding: 0 1.25rem; font-size: 0.95rem; }

/* ── Back link ── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 40px;
  padding: 0 1rem 0 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
  width: fit-content;
}
.back-link svg { width: 15px; height: 15px; flex-shrink: 0; }
.back-link:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); transform: translateX(-2px); }

/* ── Eyebrow ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--orange);
  border-radius: 99px;
  flex-shrink: 0;
}

/* ── Section ── */
.section { padding: 100px 0; position: relative; z-index: 1; }
.section-tight { padding: 72px 0; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 2.5rem;
  align-items: end;
  margin-bottom: 3rem;
}
.section-head p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0;
}

/* ── Typography ── */
h1, h2, h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(3.2rem, 8vw + 0.5rem, 7rem); }
h2 { font-size: clamp(2.2rem, 4.5vw + 0.5rem, 4rem); margin-bottom: 1rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
p { color: var(--text-light); line-height: 1.75; }

/* ── Gold accent text ── */
.accent-gold { color: var(--gold); }
.accent-orange { color: var(--orange); }

/* ── Grids ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ── Card base ── */
.card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: var(--border-hi);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), inset 0 1px 0 rgba(245,192,39,0.08);
}

/* ── Stat Cards ── */
.stat-card {
  padding: 2rem 2rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
}
.stat-card:hover { border-color: var(--gold-mid); transform: translateY(-3px); }
.stat-card strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.stat-card span {
  display: block;
  color: var(--text-muted);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.stat-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ── Service Cards ── */
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  border-color: var(--gold-mid);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  transform: translateY(-3px);
}
.service-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  filter: brightness(0.65) saturate(0.7);
  transition: filter 0.35s, transform 0.5s;
}
.service-card:hover .service-card-img { filter: brightness(0.8) saturate(1); transform: scale(1.04); }
.service-card-body { padding: 1.25rem 1.5rem 1.75rem; }
.service-card-tag {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 4px;
  background: var(--gold-dim);
  border: 1px solid rgba(245,192,39,0.2);
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.service-card h3 { color: var(--text); font-size: 1.25rem; margin-bottom: 0.4rem; }
.service-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ── Offer banner ── */
.offer-banner {
  padding: 2.5rem 3rem;
  background: linear-gradient(120deg, rgba(232, 96, 10, 0.15), rgba(245, 192, 39, 0.08));
  border: 1px solid rgba(232, 96, 10, 0.35);
  border-radius: var(--radius);
}
.offer-banner h3 {
  color: var(--orange);
  font-size: 1.7rem;
  margin-bottom: 0.6rem;
}
.offer-banner p { color: var(--text-light); margin: 0; }

/* ── Social links ── */
.social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 44px;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
  background: var(--bg-card);
}
.social-link svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.social-link:hover { border-color: var(--gold); background: var(--gold-dim); transform: translateY(-2px); }

/* ── CTA Band ── */
.cta-band {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
  background: var(--bg-card);
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(245, 192, 39, 0.06), transparent 65%);
  pointer-events: none;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.cta-inner h2 { margin-bottom: 0.6rem; }
.cta-inner p { color: var(--text-light); margin: 0; max-width: 540px; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ═══════════════════════════════════════════
   HERO — fills full viewport
   FIX: use justify-content: center so content
   sits in the middle of the viewport on mobile
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.22) saturate(0.6);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.65) 55%, var(--bg) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(232,96,10,0.12), transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(245,192,39,0.08), transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Push content down past the nav bar */
  padding-top: var(--nav-h);
  /* Desktop: breathing room on the left */
  padding-left: clamp(2rem, 5vw, 5rem);
}
.hero h1 {
  font-size: clamp(3rem, 7vw + 0.5rem, 7rem);
  line-height: 0.92;
  margin-bottom: 0.85rem;
  max-width: 14ch;
}
.hero h1 .accent-gold { color: var(--gold); }
.hero h1 .accent-orange { color: var(--orange); }
.hero-sub {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.9rem, 1.3vw + 0.2rem, 1.1rem);
  color: var(--text-light);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--orange);
  border-radius: 99px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   PAGE HERO — fills viewport, back link anchored at top
   ═══════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.18) saturate(0.6);
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.75) 55%, var(--bg) 100%),
    radial-gradient(ellipse at 30% 60%, rgba(232,96,10,0.1), transparent 55%);
}

/* Back link row */
.page-hero-back {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-h) + 1.5rem);
  flex-shrink: 0;
}

/* Main content centred in remaining height */
.page-hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 4rem;
}

.page-hero-content .eyebrow {
  display: flex;
  margin-bottom: 1.1rem;
}

.page-hero h1 {
  font-size: clamp(4rem, 9vw + 0.5rem, 8rem);
  margin-bottom: 1.25rem;
  line-height: 0.9;
  max-width: 18ch;
}

.page-hero p {
  font-size: clamp(0.95rem, 1.2vw + 0.2rem, 1.1rem);
  color: var(--text-light);
  max-width: 520px;
  margin: 0;
  line-height: 1.75;
}

/* ── Horizontal gold rule accent ── */
.gold-rule {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 99px;
  margin-bottom: 1.5rem;
}

/* ── Package grid ── */
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.package-card {
  padding: 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.package-card:hover { border-color: var(--gold-mid); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.package-card.featured {
  border-color: var(--gold-mid);
  background: linear-gradient(160deg, rgba(245,192,39,0.09), var(--bg-card));
  box-shadow: 0 0 0 1px rgba(245,192,39,0.12) inset;
}
.package-label {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.package-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.package-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin: 0.75rem 0 1rem;
  letter-spacing: -0.02em;
}
.package-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.65; }
.package-card ul { list-style: none; display: grid; gap: 0.65rem; margin-bottom: 2rem; }
.package-card li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}
.package-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold-glow);
}
.package-card .btn { margin-top: auto; }

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  background: var(--bg-card);
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
  transition: transform 0.5s, filter 0.3s;
  filter: brightness(0.8) saturate(0.8);
}
.gallery-item.wide img { aspect-ratio: 16/7; }
.gallery-item.tall img { aspect-ratio: 3/5; }
.gallery-item:hover img { transform: scale(1.05); filter: brightness(1) saturate(1.1); }
.gallery-item-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.25rem 1rem;
  background: linear-gradient(0deg, rgba(10,10,10,0.92), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .gallery-item-cap { opacity: 1; transform: none; }
.gallery-item-cap strong { color: var(--text); font-size: 0.95rem; display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.gallery-item-cap span { color: var(--text-muted); font-size: 0.8rem; }

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(16px);
}
.lightbox[hidden] { display: none; }
.lightbox-inner {
  position: relative;
  max-width: 960px;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.lightbox-inner img { width: 100%; max-height: 80vh; object-fit: contain; background: var(--bg-card); }
.lightbox-close {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: rgba(10,10,10,0.9);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.lightbox-close:hover { background: var(--gold-dim); border-color: var(--gold); }

/* ── Contact grid / form ── */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) 1fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-info { display: grid; gap: 1rem; }
.contact-card {
  padding: 1.5rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.contact-card:hover { border-color: var(--gold-mid); }
.contact-card .label {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.contact-card h3 { color: var(--text); font-size: 1.1rem; margin-bottom: 0.3rem; }
.contact-card a { color: var(--text-light); font-size: 0.9rem; transition: color 0.2s; }
.contact-card a:hover { color: var(--gold); }
.contact-phone { font-family: 'Barlow Condensed', sans-serif; font-size: 1.7rem !important; font-weight: 800 !important; color: var(--text) !important; display: block; margin-bottom: 0.75rem; }

.quote-form {
  padding: 2.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
}
.quote-form h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 0.6rem; }
.quote-form > p { color: var(--text-light); margin-bottom: 2rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: grid; gap: 0.4rem; }
.form-field label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(245,192,39,0.15);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,192,39,0.1);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field select option { background: #111; }

.form-services {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
}
.form-services legend {
  padding: 0 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-top: 1rem;
}
.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  cursor: pointer;
}
.checkbox-grid input[type="checkbox"] {
  width: 16px; min-height: 16px;
  accent-color: var(--gold);
}
.form-submit-row { margin-top: 2rem; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.form-note { font-size: 0.82rem; color: var(--text-muted); flex: 1; min-width: 200px; }

/* ── Team / About ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.team-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
}
.team-card:hover { border-color: var(--gold-mid); transform: translateY(-3px); }
.team-card .label {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.team-card h3 { color: var(--text); margin-bottom: 1.25rem; }

.brief-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.brief-card {
  padding: 1.75rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  transition: border-color 0.2s, transform 0.2s;
}
.brief-card:hover { transform: translateY(-3px); }
.brief-card .label {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.brief-card h3 { color: var(--text); font-size: 1.2rem; margin-bottom: 0.5rem; }
.brief-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0; line-height: 1.65; }

/* ── About story ── */
.about-story p { color: var(--text-light); font-size: 1.05rem; line-height: 1.85; }

/* ── About approach grid ── */
.about-approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
  gap: 4rem;
  align-items: start;
}

/* ── Divider ── */
.divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 99px;
  margin-bottom: 1.5rem;
}

/* ── Footer ── */
.site-footer {
  padding: 5rem 0 2.5rem;
  border-top: 1px solid var(--border);
  background: #050505;
  position: relative;
  z-index: 1;
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.footer-logo-wrap img { height: 36px; width: auto; }
.footer-logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.1;
}
.footer-logo-name span { color: var(--gold); }
.footer-tagline { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 0.25rem; }
.footer-nav a {
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  color: var(--text-muted);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
}
.footer-nav a:hover { color: var(--gold); background: var(--gold-dim); }
.footer-right { display: grid; gap: 0.6rem; text-align: right; }
.footer-right a { color: var(--text-muted); font-size: 0.875rem; transition: color 0.2s; }
.footer-right a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245,192,39,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Ambient Canvas ── */
#ambient-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

/* ── Section separator strip ── */
.section-strip {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--gold), transparent);
  opacity: 0.3;
  margin: 0;
}

/* ══════════════════════
   RESPONSIVE — 1024px
══════════════════════ */
@media (max-width: 1024px) {
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: auto; }
  .gallery-item.tall img { aspect-ratio: 4/3; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid, .brief-grid, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; }
  .about-approach-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ══════════════════════
   RESPONSIVE — 768px (MOBILE)
══════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .shell { width: min(100% - 2rem, 100%); }

  /* ── Nav: hide desktop links, show hamburger ── */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* ── On mobile hide the text label, keep just the logo image ── */
  .nav-logo-text { display: none; }
  .nav-logo img { height: 32px; }

  /* ── Mobile nav drawer ── */
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-hi);
    padding: 0.75rem 1rem 1.25rem;
    z-index: 899;
    gap: 0.15rem;
    animation: navSlideDown 0.22s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

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

  .nav-links.open a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 1rem;
    border-radius: 8px;
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    transition: color 0.15s, background 0.15s;
  }
  .nav-links.open a:hover,
  .nav-links.open a.active {
    color: var(--gold);
    background: var(--gold-dim);
  }

  .nav-links.open .nav-cta {
    display: flex !important;
    margin-left: 0 !important;
    margin-top: 0.6rem;
    min-height: 52px;
    justify-content: center;
    background: var(--gold) !important;
    color: #0a0a0a !important;
    border-radius: 8px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
  }

  /* ── FIX: Hero vertically centred on mobile ── */
  .hero {
    height: 100svh;
    min-height: 560px;
    align-items: center;
  }
  .hero-content {
    /* Remove padding-top push — use padding to offset nav but keep content centred */
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    justify-content: center;
    /* Shift content block down by half the nav height so it's optically centred
       accounting for the nav bar occupying the top */
    margin-top: calc(var(--nav-h) / 2);
  }
  .hero-eyebrow { margin-bottom: 0.75rem; }
  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 5.5rem);
    line-height: 0.9;
    margin-bottom: 0.9rem;
  }
  .hero-sub {
    font-size: 0.925rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
    max-width: 100%;
  }

  /* ── Page heroes (inner pages) ── */
  .page-hero {
    height: 100svh;
    min-height: 560px;
  }
  .page-hero-back {
    padding-top: calc(var(--nav-h) + 1.25rem);
  }
  .page-hero-content {
    padding-bottom: 3rem;
  }
  .page-hero h1 {
    font-size: clamp(3rem, 14vw, 5rem);
    line-height: 0.92;
    margin-bottom: 1rem;
  }
  .page-hero p {
    font-size: 0.925rem;
    line-height: 1.7;
    max-width: 100%;
  }

  /* ── Typography ── */
  h2 { font-size: clamp(1.9rem, 7vw, 2.8rem); }

  /* ── Grids ── */
  .service-cards { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; max-width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: auto; }
  .gallery-item img, .gallery-item.wide img { aspect-ratio: 4/3; }
  .team-grid, .brief-grid, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .about-approach-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* ── Contact & form ── */
  .contact-grid { grid-template-columns: 1fr; }
  .quote-form { padding: 1.75rem 1.5rem; }

  /* ── Footer ── */
  .footer-inner { grid-template-columns: 1fr; }
  .footer-right { text-align: left; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* ── Spacing ── */
  .section { padding: 72px 0; }
  .section-tight { padding: 56px 0; }
  .cta-band { padding: 72px 0; }

  /* ── Misc ── */
  #ambient-canvas { display: none; }
  .offer-banner { padding: 1.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
