/* ============================================================
   Disco-Kings | Modern Disco Glow Design System
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..700&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Colors */
  --ink: #0d0a19;          /* deep midnight */
  --ink-2: #1a1430;        /* slightly lifted */
  --ink-3: #251f3c;        /* purple-bruise */
  --cream: #f5f0e6;        /* warm off-white */
  --cream-dim: #c9c2b2;
  --gold: #f1bf4e;         /* signature accent */
  --gold-deep: #cc9923;
  --pink: #ff5e8a;         /* hot accent for energy */
  --muted: rgba(245, 240, 230, 0.6);
  --muted-2: rgba(245, 240, 230, 0.4);
  --line: rgba(245, 240, 230, 0.12);

  /* Type */
  --display: 'Bricolage Grotesque', -apple-system, sans-serif;
  --body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --container: 1240px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);

  /* Easings */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--cream);
  background: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ---------- Atmosphere ---------- */
body::before {
  /* Subtle grain overlay */
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

body::after {
  /* Spotlight ambient */
  content: '';
  position: fixed;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 1400px; height: 1400px;
  background: radial-gradient(circle at center, rgba(241, 191, 78, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ---------- Container ---------- */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 2;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--cream);
  /* font-variation-settings removed - Playfair Display doesn't use variable axes */
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.005em;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  
}

p { color: var(--cream-dim); }
p + p { margin-top: 1em; }

em, .italic {
  font-style: italic;
  font-family: var(--display);
  color: var(--gold);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* ---------- Top contact bar ---------- */
.topbar {
  background: var(--ink-3);
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  padding-block: 0.65rem;
  position: relative;
  z-index: 100;
}
.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}
.topbar__slogan {
  color: var(--cream-dim);
  letter-spacing: 0.05em;
}
.topbar__contacts {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.topbar__contacts a {
  color: var(--cream);
  transition: color 0.25s var(--ease);
}
.topbar__contacts a:hover { color: var(--gold); }
.topbar__contacts a::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 0.6rem;
  vertical-align: middle;
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(13, 10, 25, 0.85);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  gap: 1rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.brand img {
  height: 80px;
  width: auto;
  filter: brightness(1.1) drop-shadow(0 0 20px rgba(241, 191, 78, 0.15));
}

.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__list > li { position: relative; }
.nav__list a {
  display: inline-block;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream);
  transition: color 0.25s var(--ease);
  position: relative;
}
.nav__list a:hover, .nav__list a.is-current { color: var(--gold); }
.nav__list a.is-current::after {
  content: '';
  position: absolute;
  left: 1rem; right: 1rem; bottom: 0.3rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.25s var(--ease);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.nav__has-children:hover > .nav__submenu,
.nav__has-children:focus-within > .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__submenu a {
  display: block;
  padding: 0.55rem 0.85rem;
  border-radius: 3px;
  font-size: 0.88rem;
}
.nav__submenu a:hover {
  background: rgba(241, 191, 78, 0.08);
  color: var(--gold);
}

.nav__has-children > a::after {
  content: '▾';
  font-size: 0.65rem;
  margin-left: 0.35rem;
  opacity: 0.6;
}

.cta-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--ink) !important;
  padding: 0.7rem 1.2rem !important;
  border-radius: 999px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.04em;
  transition: all 0.25s var(--ease) !important;
}
.cta-call:hover {
  background: var(--cream) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(241, 191, 78, 0.25);
}
.cta-call::after { display: none !important; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--cream);
  transition: all 0.25s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: hero-cycle 18s infinite;
}
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.85);
  animation: kenburns 18s ease-out infinite;
}
.hero__slide:nth-child(1) { animation-delay: 0s; }
.hero__slide:nth-child(1) img { animation-delay: 0s; }
.hero__slide:nth-child(2) { animation-delay: 6s; }
.hero__slide:nth-child(2) img { animation-delay: 6s; }
.hero__slide:nth-child(3) { animation-delay: 12s; }
.hero__slide:nth-child(3) img { animation-delay: 12s; }

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 80% at 30% 50%, rgba(241, 191, 78, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 50% 70% at 80% 30%, rgba(255, 94, 138, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, rgba(13, 10, 25, 0.3) 0%, var(--ink) 100%);
}

@keyframes hero-cycle {
  0%, 28%   { opacity: 1; }
  33%, 95%  { opacity: 0; }
  100%      { opacity: 1; }
}

@keyframes kenburns {
  0%   { transform: scale(1.05); }
  33%  { transform: scale(1.18) translate(-1%, -1%); }
  100% { transform: scale(1.05); }
}

.hero__content {
  text-align: center;
  padding-block: 6rem 4rem;
  max-width: 900px;
  position: relative;
}
.hero__content > * {
  opacity: 0;
  transform: translateY(20px);
  animation: rise 0.9s var(--ease) forwards;
}
.hero__content > *:nth-child(1) { animation-delay: 0.15s; }
.hero__content > *:nth-child(2) { animation-delay: 0.3s; }
.hero__content > *:nth-child(3) { animation-delay: 0.5s; }
.hero__content > *:nth-child(4) { animation-delay: 0.7s; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 { margin: 1rem 0 1.25rem; }
.hero h1 em {
  color: var(--gold);
  font-style: italic;
  /* font-variation-settings removed - Playfair Display doesn't use variable axes */
}
.hero p {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--cream);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--gold);
  color: var(--ink);
}
.btn--primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(241, 191, 78, 0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 240, 230, 0.25);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Scroll hint - hidden (was overlapping with hero CTAs) */
.scroll-hint {
  display: none;
}

/* ---------- Page Subheader (sub-pages) ---------- */
.subheader {
  position: relative;
  padding-block: 5rem 4rem;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, var(--ink-3) 0%, var(--ink) 100%);
  border-bottom: 1px solid var(--line);
}
.subheader::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 400px at center, rgba(241, 191, 78, 0.1), transparent 70%);
  z-index: -1;
}

/* Subheader with a background image (mirrors the homepage hero treatment) */
.subheader--image {
  padding-block: 7rem 5.5rem;
  border-bottom: 1px solid var(--line);
}
.subheader--image .subheader__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.subheader--image .subheader__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(0.9);
}
.subheader--image::before {
  /* layered gradient wash so the title text stays crisp over any photo */
  background:
    radial-gradient(ellipse 70% 80% at 50% 40%, rgba(241, 191, 78, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, rgba(13, 10, 25, 0.55) 0%, rgba(13, 10, 25, 0.25) 45%, var(--ink) 100%);
  z-index: -1;
}
.subheader h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  margin-bottom: 0.5rem;
}
.subheader--image h1 {
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}
.subheader p {
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.subheader--image p {
  color: var(--cream-dim);
}

/* ---------- Sections ---------- */
.section {
  padding-block: clamp(4rem, 8vw, 7rem);
  position: relative;
}
.section--tint {
  background: var(--ink-2);
}

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.section__head h2 { margin: 0.75rem 0 1rem; }
.section__head p { font-size: 1.1rem; }
.section__head em {
  color: var(--gold);
  font-style: italic;
}

/* ---------- Service Grid ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}
.service {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  isolation: isolate;
  background: var(--ink-2);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  text-decoration: none;
  color: var(--cream);
  transition: transform 0.5s var(--ease);
  border: 1px solid var(--line);
}
.service:hover { transform: translateY(-4px); }
.service__img {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.service__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s var(--ease);
  filter: brightness(0.5) saturate(0.85);
}
.service:hover .service__img img {
  transform: scale(1.06);
  filter: brightness(0.65) saturate(1);
}
.service__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(13, 10, 25, 0.92) 100%);
}
.service__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.service h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.service__arrow {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  transition: gap 0.3s var(--ease);
}
.service:hover .service__arrow { gap: 0.85rem; }
.service__arrow::after { content: '→'; }

/* Asymmetric grid for homepage */
.services--asym .service:nth-child(1) { grid-column: span 7; min-height: 400px; }
.services--asym .service:nth-child(2) { grid-column: span 5; min-height: 400px; }
.services--asym .service:nth-child(3) { grid-column: span 5; min-height: 400px; }
.services--asym .service:nth-child(4) { grid-column: span 7; min-height: 400px; }

/* Standard 3-col grid for sub-pages */
.services--grid .service { grid-column: span 4; }

/* ---------- Content (article) ---------- */
.article {
  max-width: 820px;
  margin-inline: auto;
}
.article h2, .article h3 { margin-top: 2rem; margin-bottom: 1rem; }
.article h3:first-child { margin-top: 0; }
.article p { font-size: 1.05rem; line-height: 1.75; }
.article ul {
  margin: 1.5rem 0;
  display: grid;
  gap: 0.65rem;
}
.article ul li {
  padding-left: 2rem;
  position: relative;
  color: var(--cream);
  font-size: 1rem;
}
.article ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold), var(--gold-deep));
  box-shadow: 0 0 12px rgba(241, 191, 78, 0.4);
}

.article-img {
  margin: 2.5rem 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
}

/* Pull quote */
.pull {
  margin: 3rem 0;
  padding: 2rem 2.5rem;
  border-left: 3px solid var(--gold);
  background: rgba(241, 191, 78, 0.05);
  border-radius: 0 6px 6px 0;
}
.pull p {
  font-family: var(--display);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--cream);
  
}

/* ---------- Stats (for weddings page) ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  padding: 2.5rem 0;
  border-block: 1px solid var(--line);
}
.stat__num {
  font-family: var(--display);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  /* font-variation-settings removed - Playfair Display doesn't use variable axes */
}
.stat__num sup { font-size: 0.5em; }
.stat__label {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.4;
}

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 2rem;
  border-radius: 6px;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.testimonial:hover {
  transform: translateY(-3px);
  border-color: rgba(241, 191, 78, 0.3);
}
.testimonial::before {
  content: '“';
  font-family: var(--display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-style: italic;
}
.testimonial blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--cream);
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  
}
.testimonial cite {
  display: block;
  font-family: var(--body);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- CTA Section ---------- */
.cta {
  position: relative;
  text-align: center;
  padding-block: 6rem;
  isolation: isolate;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 600px 300px at center, rgba(241, 191, 78, 0.15) 0%, transparent 70%),
    var(--ink);
}
.cta h2 { margin-bottom: 1rem; }
.cta h2 em { color: var(--gold); }
.cta p { font-size: 1.1rem; margin-bottom: 2rem; max-width: 540px; margin-inline: auto; }
.cta__actions { display: inline-flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-info ul { display: grid; gap: 1.25rem; margin-top: 1.5rem; }
.contact-info li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info .ico {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(241, 191, 78, 0.1);
  color: var(--gold);
  font-size: 1rem;
}
.contact-info .meta {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}
.contact-info .val { color: var(--cream); font-weight: 500; }
.contact-info .val a { color: inherit; transition: color 0.25s var(--ease); }
.contact-info .val a:hover { color: var(--gold); }

.form {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 2.5rem;
  border-radius: 8px;
}
.form__row { margin-bottom: 1.25rem; }
.form label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 0.5rem;
}
.form input, .form textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--cream);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.form input:focus, .form textarea:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(241, 191, 78, 0.1);
}
.form textarea { min-height: 140px; resize: vertical; }
.form button[type="submit"] {
  background: var(--gold);
  color: var(--ink);
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.25s var(--ease);
  width: 100%;
}
.form button[type="submit"]:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(241, 191, 78, 0.25);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #050309;
  border-top: 1px solid var(--line);
  padding-block: 4rem 1.5rem;
  position: relative;
  z-index: 2;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.site-footer h4 {
  font-family: var(--body);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.site-footer p, .site-footer li { color: var(--cream-dim); font-size: 0.9rem; line-height: 1.7; }
.site-footer li a { transition: color 0.25s var(--ease); }
.site-footer li a:hover { color: var(--gold); }
.footer__brand img { height: 60px; margin-bottom: 1rem; filter: brightness(1.1); }
.footer__keywords { line-height: 1.9; }
.footer__keywords strong { color: var(--cream); }
.site-footer__base {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.socials {
  display: inline-flex;
  gap: 0.75rem;
}
.socials a {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  transition: all 0.25s var(--ease);
}
.socials a svg {
  width: 20px;
  height: 20px;
  display: block;
}
.socials a:hover {
  color: var(--cream);
  border-color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 233, 215, 0.15);
}

/* ---------- The DJs page ---------- */
.dj-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}
.dj {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.dj:hover {
  transform: translateY(-3px);
  border-color: rgba(241, 191, 78, 0.3);
}
.dj__photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-3);
}
.dj__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.05);
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
}
.dj:hover .dj__photo img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1.1);
}
.dj__body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.dj__body h3 {
  margin: 0.5rem 0 0;
  font-size: 2rem;
}
.dj__tag {
  color: var(--gold);
  font-size: 1rem !important;
  margin-bottom: 0.5rem;
}

/* ---------- Package grid ---------- */
.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto;
}
.package {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2.25rem;
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.package:hover { transform: translateY(-3px); }
.package--featured {
  border-color: rgba(241, 191, 78, 0.5);
  background:
    radial-gradient(ellipse 400px 200px at top, rgba(241, 191, 78, 0.08), transparent 70%),
    var(--ink);
}
.package__label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.7rem;
  background: rgba(241, 191, 78, 0.1);
  border-radius: 99px;
}
.package h3 {
  margin-bottom: 1rem;
}
.package ul {
  list-style: none;
  margin-top: 1.25rem;
  display: grid;
  gap: 0.55rem;
}
.package li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--cream-dim);
  font-size: 0.95rem;
}
.package li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(241, 191, 78, 0.4);
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 1rem;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink-2);
  border: 1px solid var(--line);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
  filter: brightness(0.92) saturate(1);
}
.gallery__item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05) saturate(1.1);
}
.gallery__item--wide {
  grid-column: span 2;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  /* DJ + Package grids collapse to single column */
  .dj-grid, .package-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .dj__body { padding: 1.5rem; }
  .dj__body h3 { font-size: 1.6rem; }
  .package { padding: 1.75rem; }

  /* Gallery becomes 2 columns on mobile */
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 0.5rem;
  }
  .gallery__item--wide { grid-column: span 2; }

  /* Remove backdrop-filter on mobile - cleaner background */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(13, 10, 25, 0.96);
  }

  .nav-toggle { display: block; }

  /* Simple push-down menu: shown/hidden via display, sits in normal flow.
     No fixed positioning, no transforms - works on every browser. */
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    background: var(--ink-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 0 1rem;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 100;
  }
  .nav.is-open {
    display: flex;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .nav__list > li {
    border-bottom: 1px solid rgba(245, 240, 230, 0.05);
  }
  .nav__list > li:last-child { border-bottom: 0; }
  .nav__list a {
    display: block;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }
  .nav__list a.is-current::after { display: none; }
  .nav__list a.is-current { color: var(--gold); }
  .nav__has-children > a::after { display: none; }

  .nav__submenu {
    position: static;
    background: rgba(0, 0, 0, 0.2);
    border: 0;
    border-radius: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin: 0;
    min-width: auto;
  }
  .nav__submenu li {
    border-bottom: 1px solid rgba(245, 240, 230, 0.03);
  }
  .nav__submenu li:last-child { border-bottom: 0; }
  .nav__submenu a {
    font-size: 0.9rem;
    padding: 0.65rem 1.5rem 0.65rem 2.5rem;
    opacity: 0.85;
  }

  .cta-call {
    margin: 1rem 1.5rem 0;
    text-align: center;
    justify-content: center;
  }

  /* Asymmetric grid becomes single column on mobile */
  .services--asym .service,
  .services--grid .service { grid-column: span 12 !important; min-height: 280px !important; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; }

  .topbar__inner { justify-content: center; text-align: center; }
  .topbar__slogan { width: 100%; text-align: center; }
}

@media (max-width: 560px) {
  .hero { min-height: 78vh; }
  .form { padding: 1.75rem; }
  .section { padding-block: 3.5rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__bg img { animation: none; }
}
