/* ==========================================================================
   The Elegant DJ — stylesheet
   Plain CSS, no build step. Tokens live in :root and are reused throughout.
   ========================================================================== */

:root {
  --ink: #0e1b2a;
  --ink-light: #16283d;
  --cream: #f7f1e6;
  --cream-dim: #efe6d4;
  --gold: #c9a24b;
  --gold-soft: #dcc58c;
  --gold-deep: #9c7b33;
  --emerald: #1f4d3e;
  --emerald-light: #2c6b57;
  --blush: #c97a82;
  --vinyl: #14100d;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-content: 1240px;
  --shadow-card: 0 12px 30px -12px rgba(14, 27, 42, 0.25);
  --shadow-soft: 0 20px 60px -20px rgba(14, 27, 42, 0.35);
  --shadow-lift: 0 30px 70px -25px rgba(14, 27, 42, 0.45);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p, dl, dd, figure, blockquote { margin: 0; }
input, textarea, select { font: inherit; color: inherit; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 8px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.container {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

.skip-link {
  position: fixed; top: 1rem; left: 1rem; z-index: 100;
  background: var(--ink); color: var(--cream);
  padding: 0.65rem 1.25rem; border-radius: 999px;
  font-size: 0.9rem; transform: translateY(-6rem);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Typography ---------- */
.eyebrow {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--emerald);
}
.eyebrow--light { color: var(--gold); }

.section-heading {
  max-width: 640px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
}
.section-heading.is-visible { opacity: 1; transform: translateY(0); }
.section-heading--center { margin: 0 auto; text-align: center; }

.section-heading h2 {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: var(--ink);
}
.section-heading--light h2 { color: var(--cream); }

.section-heading p {
  margin-top: 1.15rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(14, 27, 42, 0.7);
}
.section-heading--light p { color: rgba(247, 241, 230, 0.75); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 0.9rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: var(--shadow-lift); }
.btn-ink { background: var(--ink); color: var(--cream); box-shadow: var(--shadow-card); }
.btn-ink:hover { background: var(--emerald); }
.btn-outline-cream { border: 1px solid rgba(247, 241, 230, 0.4); color: var(--cream); }
.btn-outline-cream:hover { background: rgba(247, 241, 230, 0.1); }
.btn-block { display: block; width: 100%; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.navbar.is-scrolled {
  background: rgba(247, 241, 230, 0.92);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
}
@media (min-width: 1024px) { .navbar-inner { padding: 1rem 2.5rem; } }

.logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  transition: color 0.2s ease;
}
.logo:hover { color: var(--emerald); }

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(14, 27, 42, 0.8);
}
.nav-links a { transition: color 0.2s ease; }
.nav-links a:hover { color: var(--emerald); }

.nav-actions { display: none; align-items: center; gap: 1rem; }
.nav-phone { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: rgba(14,27,42,0.7); transition: color 0.2s ease; }
.nav-phone:hover { color: var(--emerald); }

.nav-toggle {
  display: inline-flex; padding: 0.5rem; border-radius: 999px;
}
@media (min-width: 768px) {
  .nav-links, .nav-actions { display: flex; }
  .nav-toggle { display: none; }
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(14,27,42,0.1);
  background: var(--cream);
  padding: 0.5rem 1.5rem 1.5rem;
}
.mobile-menu.is-open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.25rem; font-size: 1rem; }
.mobile-menu a { display: block; padding: 0.75rem 0.5rem; border-radius: 0.5rem; transition: background-color 0.2s ease, color 0.2s ease; }
.mobile-menu a:hover { background: rgba(14,27,42,0.05); color: var(--emerald); }
.mobile-menu .btn { margin-top: 0.75rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex; align-items: flex-end;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.8; }

/* Subtle parallax: layer images are oversized so a scroll-linked translate
   never reveals an edge. JS sets the transform; this just reserves the room. */
[data-parallax] .hero-media img[data-parallax-layer] {
  position: absolute;
  left: 0;
  width: 100%;
  height: 140%;
  top: -20%;
  will-change: transform;
}
.hero-scrim-1 { position: absolute; inset: 0; background: linear-gradient(to top, var(--ink) 0%, rgba(14,27,42,0.5) 55%, rgba(14,27,42,0.1) 100%); }
.hero-scrim-2 { position: absolute; inset: 0; background: linear-gradient(to right, rgba(14,27,42,0.7) 0%, transparent 60%); }

.hero-content { position: relative; z-index: 1; width: 100%; padding: 10rem 1.5rem 5rem; }
@media (min-width: 1024px) { .hero-content { padding: 10rem 2.5rem 7rem; } }
.hero-content > * { max-width: var(--max-content); margin-left: auto; margin-right: auto; }

.hero-eyebrow {
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold);
  margin-bottom: 1rem; opacity: 0; animation: fadeUp 0.8s ease-out forwards;
}
.hero h1 {
  max-width: 640px;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  line-height: 1.05;
  color: var(--cream);
  opacity: 0; animation: fadeUp 0.9s ease-out 0.1s forwards;
}
.hero-tagline {
  margin-top: 1.5rem; max-width: none;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.1rem, 3.4vw, 1.9rem); color: rgba(247,241,230,0.9);
  opacity: 0; animation: fadeUp 0.9s ease-out 0.25s forwards;
  white-space: nowrap;
  text-align: center;
}
@media (max-width: 420px) {
  .hero-tagline { white-space: normal; }
}
.hero-actions {
  margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem;
  opacity: 0; animation: fadeUp 0.9s ease-out 0.4s forwards;
}
@media (min-width: 640px) { .hero-actions { flex-direction: row; align-items: center; } }
.hero-note {
  margin-top: 2rem; font-size: 0.9rem; color: rgba(247,241,230,0.7);
  opacity: 0; animation: fadeIn 0.9s ease-out 0.6s forwards;
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Sections (generic) ---------- */
.section { padding: 6rem 0; }
@media (min-width: 1024px) { .section { padding: 8rem 0; } }
.section--dark { background: var(--ink); }
.section--cream { background: var(--cream); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3.5rem; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 0.85fr 1fr; gap: 5rem; } }

.about-photo,
.detail-story,
.detail-photo {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
}
.about-photo.is-visible,
.detail-story.is-visible,
.detail-photo.is-visible { opacity: 1; transform: translateY(0); }

.about-photo { position: relative; }
.about-photo-frame {
  position: relative; width: 100%; aspect-ratio: 4 / 5;
  overflow: hidden; border-radius: 28px; box-shadow: var(--shadow-soft);
  background: var(--cream);
}
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 57% top; }
.about-stat-card {
  position: absolute; bottom: -2rem; right: -1.5rem; width: 10rem;
  border: 1px solid rgba(14,27,42,0.1); background: var(--cream);
  border-radius: 1rem; padding: 1rem; box-shadow: var(--shadow-card);
  display: none;
}
@media (min-width: 640px) { .about-stat-card { display: block; } }
.about-stat-card .num { font-family: var(--font-display); font-size: 1.9rem; color: var(--emerald); }
.about-stat-card .label { font-size: 0.7rem; text-transform: uppercase; color: rgba(14,27,42,0.6); }

.about-personal-card {
  position: absolute; top: -1.75rem; left: -1.5rem; width: 6.5rem; height: 6.5rem;
  border-radius: 1rem; overflow: hidden; border: 4px solid var(--cream);
  box-shadow: var(--shadow-card); display: none;
}
@media (min-width: 640px) { .about-personal-card { display: block; } }
.about-personal-card img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.about-copy { margin-top: 2rem; }
.about-copy p { margin-bottom: 1.2rem; line-height: 1.75; color: rgba(14,27,42,0.75); }

.faq-list { max-width: 760px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  border: 1px solid rgba(247,241,230,0.15); border-radius: 1rem;
  padding: 1.25rem 1.5rem; background: rgba(247,241,230,0.03);
}
.faq-item summary {
  cursor: pointer; font-family: var(--font-display); font-size: 1.1rem;
  color: var(--cream); list-style: none; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.4rem; color: var(--gold); flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 1rem; line-height: 1.7; color: rgba(247,241,230,0.75); }
.faq-item p a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.video-embed {
  position: relative; max-width: 640px; margin: 3rem auto 0;
  border-radius: 1.25rem; overflow: hidden; box-shadow: var(--shadow-soft);
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
}
.video-embed.is-visible { opacity: 1; transform: translateY(0); }
.video-embed::before { content: ""; display: block; padding-top: 56.07%; }
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

.stat-grid {
  margin-top: 2.5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  border-top: 1px solid rgba(14,27,42,0.1); padding-top: 2rem;
}
@media (min-width: 640px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-grid .num { font-family: var(--font-display); font-size: 1.9rem; color: var(--ink); }
.stat-grid .label { margin-top: 0.25rem; font-size: 0.75rem; text-transform: uppercase; color: rgba(14,27,42,0.55); }

/* ---------- Services ---------- */
.service-grid { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  height: 100%; border: 1px solid rgba(247,241,230,0.1);
  background: rgba(22, 40, 61, 0.4); border-radius: 1rem; padding: 1.75rem;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  opacity: 0; transform: translateY(24px);
}
.service-card.is-visible { opacity: 1; transform: translateY(0); transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1); }
.service-card:hover { transform: translateY(-4px); border-color: rgba(201,162,75,0.4); background: rgba(22,40,61,0.7); }

.service-icon {
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  background: rgba(201,162,75,0.15); color: var(--gold);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.service-card:hover .service-icon { background: var(--gold); color: var(--ink); }
.service-card h3 { margin-top: 1.25rem; font-family: var(--font-display); font-size: 1.25rem; color: var(--cream); }
.service-card p { margin-top: 0.75rem; font-size: 0.9rem; line-height: 1.6; color: rgba(247,241,230,0.65); }
.service-link {
  display: inline-block; margin-top: 1rem; font-size: 0.8rem; font-weight: 600;
  color: var(--gold); text-decoration: underline; text-underline-offset: 3px;
}
.service-link:hover { color: var(--gold-soft); }

/* ---------- Gallery ---------- */
.gallery-head { display: flex; flex-direction: column; gap: 2rem; justify-content: space-between; }
@media (min-width: 1024px) { .gallery-head { flex-direction: row; align-items: flex-end; } }

.filter-group { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-btn {
  border: 1px solid rgba(14,27,42,0.2); border-radius: 999px; padding: 0.5rem 1rem;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em;
  color: rgba(14,27,42,0.7); transition: all 0.2s ease;
}
.filter-btn:hover { border-color: rgba(14,27,42,0.5); }
.filter-btn.is-active { border-color: var(--ink); background: var(--ink); color: var(--cream); }

.gallery-grid { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-card {
  position: relative; min-height: 280px; height: 100%; overflow: hidden;
  border-radius: 1rem; box-shadow: var(--shadow-card);
  opacity: 0; transform: translateY(24px);
}
.gallery-card.is-visible { opacity: 1; transform: translateY(0); transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1); }
.gallery-card.is-hidden { display: none; }
.gallery-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  clip-path: inset(0 100% 0 0);
  transition: transform 0.7s ease, clip-path 1s cubic-bezier(.22,1,.36,1) 0.15s;
}
.gallery-card.is-visible img { clip-path: inset(0 0 0 0); }
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,27,42,0.9), rgba(14,27,42,0.1) 60%, transparent); }
.gallery-card-copy { position: absolute; inset: auto 0 0 0; padding: 1.5rem; }
.gallery-card-copy .tag { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); }
.gallery-card-copy h3 { margin-top: 0.25rem; font-family: var(--font-display); font-size: 1.5rem; color: var(--cream); }
.gallery-card-copy h3 a { color: inherit; text-decoration: none; }
.gallery-card-copy h3 a:hover { text-decoration: underline; text-underline-offset: 3px; }
.gallery-card-copy .venue { font-size: 0.85rem; color: rgba(247,241,230,0.7); }
.gallery-card-copy button {
  margin-top: 0.85rem; display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.85rem; color: var(--cream); text-decoration: underline; text-decoration-color: rgba(201,162,75,0.6);
  text-underline-offset: 4px;
}
.gallery-card-copy button:hover { color: var(--gold); }

.gallery-more { margin-top: 3.5rem; text-align: center; }
.gallery-more a { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--emerald); text-decoration: underline; text-underline-offset: 4px; }
.gallery-more a:hover { color: var(--emerald-light); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 60; display: none;
  align-items: center; justify-content: center; padding: 0 1rem;
  background: rgba(14, 27, 42, 0.95); backdrop-filter: blur(4px);
}
.lightbox.is-open { display: flex; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; border-radius: 999px; padding: 0.6rem;
  background: rgba(247,241,230,0.1); color: var(--cream); transition: background-color 0.2s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(247,241,230,0.2); }
.lightbox-close { top: 1.25rem; right: 1.25rem; }
.lightbox-prev { left: 0.75rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 0.75rem; top: 50%; transform: translateY(-50%); }
@media (min-width: 640px) { .lightbox-prev { left: 1.5rem; } .lightbox-next { right: 1.5rem; } }
.lightbox-figure { position: relative; height: 70vh; width: 100%; max-width: 900px; }
.lightbox-figure img { width: 100%; height: 100%; object-fit: contain; }

/* ---------- Music ---------- */
.music-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 1rem; }
.music-row {
  display: flex; align-items: center; gap: 1.25rem;
  border: 1px solid rgba(14,27,42,0.1); background: rgba(255,255,255,0.4);
  border-radius: 1rem; padding: 1.25rem;
  opacity: 0; transform: translateY(24px);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.music-row.is-visible { opacity: 1; transform: translateY(0); transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1); }
.music-row.is-playing { border-color: var(--emerald); background: rgba(31,77,62,0.05); }
@media (min-width: 640px) { .music-row { padding: 1.5rem; } }

.play-btn {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem; border-radius: 999px;
  background: var(--ink); color: var(--cream); box-shadow: var(--shadow-card);
  transition: background-color 0.2s ease;
}
.play-btn:hover { background: var(--emerald); }
.music-row.is-playing .play-btn { background: var(--emerald); }
.play-btn svg { width: 20px; height: 20px; }

.music-info { min-width: 0; flex: 1; }
.music-info-top { display: flex; align-items: baseline; justify-content: space-between; gap: 0.75rem; }
.music-info-top h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.music-info-top span { flex-shrink: 0; font-size: 0.75rem; color: rgba(14,27,42,0.5); }
.music-info p { margin-top: 0.25rem; font-size: 0.85rem; color: rgba(14,27,42,0.6); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.waveform { display: none; align-items: center; gap: 3px; height: 40px; flex-shrink: 0; color: rgba(14,27,42,0.25); }
@media (min-width: 640px) { .waveform { display: flex; } }
.music-row.is-playing .waveform { color: var(--emerald); }
.waveform span { width: 3px; border-radius: 999px; background: currentColor; transform: scaleY(0.35); }
.music-row.is-playing .waveform span { animation: wave 1.2s ease-in-out infinite; }
@keyframes wave { 0%, 100% { transform: scaleY(0.3); } 50% { transform: scaleY(1); } }

.music-note { margin-top: 1.5rem; font-size: 0.75rem; color: rgba(14,27,42,0.4); }
.music-note code { background: rgba(14,27,42,0.05); padding: 0.15rem 0.4rem; border-radius: 0.25rem; }

/* ---------- Testimonials ---------- */
.testimonial-wrap { position: relative; margin: 3.5rem auto 0; max-width: 640px; text-align: center; }
.testimonial-quote-icon { margin: 0 auto 1.5rem; color: rgba(201,162,75,0.6); }
.testimonial-slide { min-height: 180px; display: none; }
.testimonial-slide.is-active { display: block; animation: fadeIn 0.5s ease; }
.testimonial-slide blockquote { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.9rem); line-height: 1.35; color: var(--cream); }
.testimonial-slide figcaption { margin-top: 1.5rem; font-size: 0.9rem; color: rgba(247,241,230,0.6); }
.testimonial-slide figcaption .dot { color: var(--gold); }

.testimonial-controls { margin-top: 2rem; display: flex; align-items: center; justify-content: center; gap: 1.5rem; }
.testimonial-arrow { border: 1px solid rgba(247,241,230,0.2); border-radius: 999px; padding: 0.5rem; color: var(--cream); transition: all 0.2s ease; }
.testimonial-arrow:hover { border-color: var(--gold); color: var(--gold); }
.testimonial-dots { display: flex; gap: 0.5rem; }
.testimonial-dots button { height: 8px; width: 8px; border-radius: 999px; background: rgba(247,241,230,0.25); transition: all 0.2s ease; }
.testimonial-dots button:hover { background: rgba(247,241,230,0.5); }
.testimonial-dots button.is-active { width: 24px; background: var(--gold); }

/* ---------- Booking form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 5rem; } }

.contact-links { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-link { display: flex; align-items: center; gap: 0.75rem; font-size: 1rem; color: rgba(14,27,42,0.8); transition: color 0.2s ease; }
.contact-link:hover { color: var(--emerald); }
.contact-link .icon-circle { display: flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: 999px; background: rgba(14,27,42,0.05); }
.contact-note { margin-top: 2.5rem; max-width: 320px; font-size: 0.85rem; color: rgba(14,27,42,0.5); }

.booking-form {
  border: 1px solid rgba(14,27,42,0.1); background: rgba(255,255,255,0.5);
  border-radius: 1.5rem; padding: 2rem; box-shadow: var(--shadow-card);
}
@media (min-width: 640px) { .booking-form { padding: 2.5rem; } }

.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }

.field { display: flex; flex-direction: column; }
.field label { margin-bottom: 0.4rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(14,27,42,0.6); }
.field label .req { color: var(--blush); }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid rgba(14,27,42,0.15); background: #fff;
  border-radius: 0.75rem; padding: 0.75rem 1rem; font-size: 0.9rem; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--emerald); }
.field-full { margin-top: 1.25rem; }

.form-submit {
  margin-top: 1.75rem; width: 100%; border-radius: 999px; padding: 0.95rem;
  background: var(--ink); color: var(--cream); font-size: 0.85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.form-submit:hover { transform: translateY(-2px); background: var(--emerald); }
.form-submit:disabled { opacity: 0.6; cursor: default; transform: none; }

.form-success {
  display: none; height: 100%; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; border: 1px solid rgba(31,77,62,0.2); background: rgba(31,77,62,0.05);
  border-radius: 1.5rem; padding: 3rem;
}
.form-success.is-visible { display: flex; }
.form-success h3 { margin-top: 1rem; font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); }
.form-success p { margin-top: 0.5rem; max-width: 280px; font-size: 0.9rem; color: rgba(14,27,42,0.6); }

/* ---------- Footer ---------- */
.site-footer { background: var(--vinyl); color: rgba(247,241,230,0.7); padding: 3.5rem 0; }
.footer-top { display: flex; flex-direction: column; gap: 2.5rem; }
@media (min-width: 768px) { .footer-top { flex-direction: row; justify-content: space-between; } }
.footer-brand { max-width: 300px; }
.footer-brand p:first-child { font-family: var(--font-display); font-size: 1.5rem; color: var(--cream); }
.footer-brand .tagline { margin-top: 0.75rem; font-style: italic; color: rgba(247,241,230,0.5); }
.footer-brand .region { margin-top: 1.25rem; font-size: 0.9rem; }
.footer-nav ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem 2rem; font-size: 0.9rem; }
@media (min-width: 640px) { .footer-nav ul { grid-template-columns: repeat(3, 1fr); } }
.footer-nav a:hover { color: var(--gold); }
.footer-contact p { margin-top: 0.5rem; }
.footer-contact a:hover { color: var(--gold); }
.footer-social { margin-top: 1.25rem; display: flex; gap: 1rem; }
.footer-social a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 3rem; display: flex; flex-direction: column; gap: 0.75rem;
  border-top: 1px solid rgba(247,241,230,0.1); padding-top: 1.5rem;
  font-size: 0.75rem; color: rgba(247,241,230,0.4);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-legal { display: flex; flex-wrap: wrap; gap: 0.35rem 1.1rem; }
.footer-legal a:hover { color: var(--gold); }

/* ---------- Simple content pages (Sitemap / Privacy / Terms) ---------- */
.legal-page h2 { margin-top: 2.5rem; font-family: var(--font-display); font-size: 1.4rem; color: var(--ink); }
.legal-page h2:first-child { margin-top: 0; }
.legal-page p, .legal-page li { line-height: 1.75; color: rgba(14,27,42,0.75); margin-top: 0.9rem; }
.legal-page ul, .legal-page ol { margin-top: 0.9rem; padding-left: 1.25rem; }
.legal-page li { margin-top: 0.4rem; }
.legal-page .updated-note { margin-top: 0.5rem; font-size: 0.85rem; color: rgba(14,27,42,0.55); }
.legal-page-wrap { max-width: 760px; margin: 0 auto; }

.sitemap-grid { margin-top: 3rem; display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 640px) { .sitemap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sitemap-grid { grid-template-columns: repeat(4, 1fr); } }
.sitemap-col h2 { margin-top: 0; font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); }
.sitemap-col ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.sitemap-col a { font-size: 0.95rem; color: rgba(14,27,42,0.75); transition: color 0.2s ease; }
.sitemap-col a:hover { color: var(--emerald); }

/* ---------- Wedding detail page ---------- */
.detail-hero {
  position: relative; display: flex; align-items: flex-end; min-height: 70vh; background: var(--ink);
  overflow: hidden;
}
.detail-hero-content { position: relative; z-index: 1; width: 100%; padding: 8rem 1.5rem 4rem; }
@media (min-width: 1024px) { .detail-hero-content { padding: 8rem 2.5rem 4rem; } }
.detail-hero-content > * { max-width: var(--max-content); margin: 0 auto; }
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; font-size: 0.9rem; color: rgba(247,241,230,0.7); }
.back-link:hover { color: var(--gold); }
.detail-hero h1 { margin-top: 0.75rem; font-family: var(--font-display); font-size: clamp(2.25rem, 5vw, 3rem); color: var(--cream); }
.detail-hero .venue-line { margin-top: 0.5rem; font-size: 1.1rem; color: rgba(247,241,230,0.7); }

.detail-story { max-width: 640px; }
.detail-story h2 { font-family: var(--font-display); font-size: 1.9rem; color: var(--ink); }
.detail-story p { margin-top: 1.25rem; font-size: 1.1rem; line-height: 1.7; color: rgba(14,27,42,0.7); }

.detail-photo-grid { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .detail-photo-grid { grid-template-columns: repeat(2, 1fr); } }
.detail-photo { position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: 1rem; box-shadow: var(--shadow-card); }
.detail-photo img {
  width: 100%; height: 100%; object-fit: cover;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s cubic-bezier(.22,1,.36,1) 0.15s;
}
.detail-photo.is-visible img { clip-path: inset(0 0 0 0); }

.detail-cta {
  margin-top: 4rem; display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start;
  border-radius: 1.5rem; background: var(--ink); padding: 2.5rem;
}
@media (min-width: 640px) { .detail-cta { flex-direction: row; align-items: center; justify-content: space-between; } }
.detail-cta h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--cream); }
.detail-cta p { margin-top: 0.5rem; font-size: 0.9rem; color: rgba(247,241,230,0.6); }

.detail-more { margin-top: 5rem; }
.detail-more h3 { font-family: var(--font-display); font-size: 1.75rem; color: var(--ink); }
.detail-more-grid { margin-top: 1.5rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .detail-more-grid { grid-template-columns: repeat(2, 1fr); } }
.detail-more-card { position: relative; aspect-ratio: 16/10; overflow: hidden; border-radius: 1rem; box-shadow: var(--shadow-card); }
.detail-more-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.detail-more-card:hover img { transform: scale(1.05); }
.detail-more-card .scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,27,42,0.85), transparent); }
.detail-more-card .copy { position: absolute; left: 1rem; bottom: 1rem; }
.detail-more-card .copy p:first-child { font-family: var(--font-display); font-size: 1.1rem; color: var(--cream); }
.detail-more-card .copy p:last-child { font-size: 0.75rem; color: rgba(247,241,230,0.6); }
