/* ==========================================================================
   Dallin the DJ — stylesheet
   Fonts: Calluna (headings) + Calluna Sans (body). Both are Adobe Fonts.
   Until a kit is attached, Crimson Pro / Source Sans 3 stand in.
   ========================================================================== */

:root {
  /* Brand */
  --ink: #111111;        /* deep, club-inspired black */
  --ivory: #faf9f6;
  --blue: #19437d;       /* elegant blue — primary accent */
  --blue-hover: #24528f;
  --blue-deep: #0f3562;
  --blue-soft: #a9c1de;
  --silver: #c0c0c0;
  --silver-soft: #e3e1db;
  --silver-line: #d8d5cd;

  --serif: "Calluna", "Crimson Pro", "Iowan Old Style", Georgia, serif;
  --sans: "Calluna Sans", "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Surfaces — ivory/light is the main tone; ink is used deliberately for
     the header, footer, hero and a few accent bands, never everywhere. */
  --bg: var(--ivory);
  --bg-alt: #f1efe9;
  --surface: #ffffff;
  --text: #2c2c2a;
  --heading: #17171a;
  --muted: #6b6a63;
  --line: var(--silver-line);
  --line-strong: #b9b6ac;
  --link: var(--blue);
  --focus: var(--blue);
  --ph-a: #e7e4dc;
  --ph-b: #f4f2ec;

  --wrap: 1180px;
  --gutter: clamp(20px, 4vw, 40px);
  --section: clamp(64px, 9vw, 120px);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, video, iframe { max-width: 100%; }
a { color: var(--link); text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }
.ink { --focus: var(--blue-soft); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--heading);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: .005em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.3rem; }
p { margin: 0 0 1.1em; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.prose { max-width: 62ch; }
.center { text-align: center; }
.center .prose { margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: #fff; color: var(--ink); padding: .6rem 1rem; }
.skip:focus { left: 8px; }

.band { padding-block: var(--section); }
.band-alt { background: var(--bg-alt); }
.band-ink { background: var(--ink); color: var(--silver-soft); }
.band-ink h1, .band-ink h2, .band-ink h3 { color: #fff; }
.band-ink a:not(.btn) { color: var(--blue-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .9rem 1.75rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font: 600 .93rem/1.2 var(--sans);
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s, border-color .2s, color .2s;
}
.btn-primary { background: var(--blue); color: var(--ivory); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-hover); border-color: var(--blue-hover); }
.btn-ghost { border-color: var(--silver); color: #fff; background: transparent; }
.btn-ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }
.btn-outline { border-color: var(--silver); color: var(--heading); background: transparent; }
.btn-outline:hover { background: var(--heading); color: var(--bg); border-color: var(--heading); }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }
.center .btn-row, .btn-row.center { justify-content: center; }
.text-link { font-weight: 600; letter-spacing: .02em; text-transform: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(9, 17, 20, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 72px; }
.brand { display: flex; align-items: center; gap: .75rem; color: #fff; text-decoration: none; }
.brand img { height: 40px; width: auto; display: block; }
.brand span { font-family: var(--serif); font-size: 1.4rem; letter-spacing: .01em; white-space: nowrap; }

.site-nav ul { display: flex; align-items: center; gap: .15rem; list-style: none; margin: 0; padding: 0; }
.site-nav a {
  display: block; padding: .5rem .7rem;
  color: var(--silver-soft); text-decoration: none;
  font-size: .95rem; letter-spacing: .02em;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover { color: #fff; }
.site-nav a[aria-current="page"] { color: #fff; border-bottom-color: var(--blue-soft); }
.site-nav li:last-child a {
  margin-left: .5rem; padding: .55rem 1.15rem;
  background: var(--blue); color: #fff; border: 1px solid var(--blue);
  border-radius: 2px; font-weight: 600; letter-spacing: .04em;
}
.site-nav li:last-child a:hover { background: var(--blue-hover); border-color: var(--blue-hover); color: #fff; }
.site-nav li:last-child a[aria-current="page"] { background: var(--blue-hover); border-color: var(--blue-hover); }

.nav-toggle {
  display: none; background: none; border: 1px solid rgba(255, 255, 255, .35); color: #fff;
  padding: .5rem .9rem; border-radius: 2px; font: 600 .95rem var(--sans); cursor: pointer;
}

@media (max-width: 1060px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--ink); border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding: .5rem var(--gutter) 1.25rem;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav a { padding: .85rem 0; border-bottom: 1px solid rgba(255, 255, 255, .08); font-size: 1.05rem; }
  .site-nav a[aria-current="page"] { border-bottom-color: rgba(255, 255, 255, .08); color: var(--blue-soft); }
  .site-nav li:last-child a { margin: 1rem 0 0; text-align: center; border-bottom: 1px solid var(--blue); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--ink); color: var(--silver-soft);
  min-height: min(88vh, 780px);
  display: flex; align-items: center;
}
/* Fallback light wash that shows until a hero video is added */
.hero::before {
  content: ""; position: absolute; inset: -20%; z-index: -3;
  background:
    radial-gradient(40% 50% at 18% 30%, rgba(45, 90, 136, .5), transparent 70%),
    radial-gradient(35% 45% at 82% 62%, rgba(157, 187, 216, .2), transparent 70%);
  animation: drift 22s ease-in-out infinite alternate;
}
@keyframes drift { to { transform: translate3d(6%, 4%, 0) scale(1.08); } }
.hero-video { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(9, 17, 20, .82) 0%, rgba(9, 17, 20, .55) 55%, rgba(9, 17, 20, .7) 100%); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: clamp(24px, 5vw, 72px); padding-block: clamp(56px, 8vw, 110px); }
.hero h1 { font-size: clamp(2.9rem, 6.6vw, 5.4rem); color: #fff; line-height: 1.03; margin-bottom: .4em; }
.hero-intro { font-size: clamp(1.1rem, 1.6vw, 1.3rem); max-width: 34em; margin-bottom: 1.8em; color: var(--silver-soft); }
.hero-emblem { width: min(100%, 400px); justify-self: center; height: auto; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-emblem { order: -1; width: min(60vw, 240px); }
  .hero-intro { margin-inline: auto; }
  .hero .btn-row { justify-content: center; }
}

/* Inner page heading band */
.page-head { padding-block: clamp(52px, 7vw, 92px); text-align: center; }
.page-head h1 { margin-bottom: .35em; }
.page-head p { max-width: 44em; margin: 0 auto; color: var(--silver-soft); font-size: 1.15rem; }
.page-head .btn-row { justify-content: center; margin-top: 1.6rem; }

/* ---------- Media placeholders / real media ---------- */
.media {
  position: relative; overflow: hidden; margin: 0;
  background: linear-gradient(135deg, var(--ph-a), var(--ph-b));
  border: 1px solid var(--line);
  aspect-ratio: var(--ar, 4 / 3);
}
.media::after {
  content: attr(data-label); position: absolute; inset: 0;
  display: grid; place-items: center; text-align: center; padding: 1rem;
  color: var(--muted); font-size: .95rem;
}
.media img, .media video { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; display: block; background: var(--ink); }
.media.zoomable img { cursor: zoom-in; }
.ar-portrait { --ar: 4 / 5; }
.ar-square { --ar: 1 / 1; }
.ar-wide { --ar: 3 / 2; }
.ar-video { --ar: 16 / 9; }
.ar-tall { --ar: 3 / 4; }

/* ---------- Home: about ---------- */
.about-split { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 6vw, 88px); align-items: center; }
.about-split blockquote { margin: 0 0 1.6rem; font-family: var(--serif); font-size: clamp(1.9rem, 3.8vw, 3rem); line-height: 1.18; color: var(--heading); }
.about-split .btn-row { justify-content: center; }
@media (max-width: 800px) { .about-split { grid-template-columns: 1fr; } .about-split .media { max-width: 420px; } }

/* ---------- Home: package preview ---------- */
.section-head { max-width: 40rem; margin-bottom: clamp(28px, 4vw, 48px); }
.pkg-preview { display: grid; grid-template-columns: 2fr 1fr; gap: clamp(20px, 3vw, 44px); }
.pkg-group-title { font-size: 1.05rem; font-family: var(--sans); font-weight: 600; letter-spacing: .04em; color: var(--muted); margin-bottom: 1rem; }
.pkg-pair { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 28px); }
.pkg-group { display: flex; flex-direction: column; }
.pkg-pair { flex: 1; }
.pkg-group > .pkg-card { flex: 1; }
.pkg-card { background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--blue); padding: clamp(22px, 3vw, 34px); display: flex; flex-direction: column; }
.pkg-card h4 { margin-bottom: .35em; }
.pkg-price { font-family: var(--serif); font-size: 2.9rem; line-height: 1; color: var(--heading); margin: .2em 0 .15em; }
.pkg-hours { color: var(--muted); margin-bottom: 1rem; }
.pkg-card p:last-child { margin-bottom: 0; }
.pkg-extra { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); font-size: .97rem; color: var(--muted); }
.pkg-card .pkg-link { display: inline-block; margin-top: .9rem; font-size: .95rem; }
.pkg-note { margin-top: 1.5rem; text-align: center; }
.pkg-stack { display: flex; flex-direction: column; gap: clamp(24px, 4vw, 40px); max-width: 640px; margin: 0 auto clamp(24px, 4vw, 40px); }
.pkg-stack .pkg-card { width: 100%; text-align: center; align-items: center; }
.pkg-stack .pkg-card .pkg-extra { border-top: 0; padding-top: .2rem; }
.pkg-photo { margin: 0; }
.pkg-photo .media { max-width: 640px; margin-inline: auto; }
@media (max-width: 980px) { .pkg-preview { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .pkg-pair { grid-template-columns: 1fr; } }

/* ---------- Home: featured testimonial ---------- */
.feature-quote { max-width: 52rem; margin-inline: auto; text-align: center; }
.feature-quote blockquote { margin: 0 0 1.4rem; font-family: var(--serif); font-size: clamp(1.5rem, 2.9vw, 2.25rem); line-height: 1.35; color: #fff; }
.feature-quote cite { display: block; font-style: normal; color: var(--silver); margin-bottom: 1.5rem; }

/* ---------- Home: gallery preview ---------- */
.gallery-preview { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 2vw, 24px); margin-bottom: 2rem; }
@media (max-width: 700px) { .gallery-preview { grid-template-columns: 1fr; } .gallery-preview .media { --ar: 4 / 3; } }

/* ---------- Pricing ---------- */
.pkg-group-block { padding-top: clamp(40px, 6vw, 72px); }
.pkg-group-block > h2 { margin-bottom: .6em; padding-bottom: .5em; border-bottom: 1px solid var(--line-strong); }
.pkg-row { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(20px, 5vw, 72px); padding-block: clamp(28px, 4vw, 44px); border-bottom: 1px solid var(--line); }
.pkg-row:last-child { border-bottom: 0; }
.pkg-row h3 { margin-bottom: .3em; }
.pkg-row .from { display: block; font-size: .95rem; color: var(--muted); }
.pkg-row .amt { font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1.05; color: var(--heading); }
.pkg-row .hours { margin: .35rem 0 0; color: var(--text); font-weight: 600; }
.pkg-row .sub { margin: .25rem 0 0; color: var(--muted); font-size: .97rem; }
.incl-lead { font-weight: 600; margin-bottom: .6rem; color: var(--heading); }
.incl { list-style: none; margin: 0; padding: 0; }
.incl li { position: relative; padding: .45rem 0 .45rem 1.6rem; }
.incl li::before { content: ""; position: absolute; left: .1rem; top: 1.02rem; width: 7px; height: 7px; background: var(--blue); transform: rotate(45deg); }
.pkg-row .btn { margin-top: 1.4rem; }
@media (max-width: 800px) { .pkg-row { grid-template-columns: 1fr; gap: 16px; } }

.addons { margin: 0; }
.addon { display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.addon dt { font-weight: 600; color: var(--heading); }
.addon dd { margin: 0; font-family: var(--serif); font-size: 1.35rem; color: var(--heading); white-space: nowrap; }
.addon small { display: block; font-family: var(--sans); font-weight: 400; font-size: .95rem; color: var(--muted); }

.policies { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px); }
.policy { border-top: 3px solid var(--blue); padding-top: 1.25rem; }
.policy h3 { font-size: 1.45rem; }
.policy p:last-child { margin-bottom: 0; }
@media (max-width: 860px) { .policies { grid-template-columns: 1fr; } }

/* ---------- About ---------- */
.bio-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 6vw, 88px); align-items: start; }
.bio-split .media { position: sticky; top: 100px; }
.pull { font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.3; color: var(--heading); margin-bottom: 1.4em; }
.todo { color: var(--muted); font-style: italic; }
.bio-split .btn-row { justify-content: center; margin-top: 1.8rem; }
@media (max-width: 800px) { .bio-split { grid-template-columns: 1fr; } .bio-split .media { position: static; max-width: 440px; } }

/* ---------- Detail pages (Wedding / Karaoke) ---------- */
.detail-block { max-width: 780px; margin: 0 auto clamp(40px, 6vw, 64px); }
.detail-block:last-of-type { margin-bottom: 0; }
.detail-block h2 { border-bottom: 1px solid var(--line-strong); padding-bottom: .5rem; margin-bottom: .9rem; }
.detail-list { list-style: none; margin: 0; padding: 0; }
.detail-list li { position: relative; padding: .5rem 0 .5rem 1.6rem; }
.detail-list li::before { content: ""; position: absolute; left: .1rem; top: 1.05rem; width: 7px; height: 7px; background: var(--blue); transform: rotate(45deg); }
.detail-note { color: var(--muted); font-size: .97rem; margin-top: .75rem; }
.detail-photo { max-width: 640px; margin: 0 auto clamp(32px, 5vw, 56px); }

/* ---------- Testimonials ---------- */
.incoming { max-width: 40rem; margin: 0 auto; text-align: center; padding-block: clamp(30px, 5vw, 60px); }
.incoming p { font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: var(--heading); }

.review { max-width: 760px; margin-inline: auto; padding-block: clamp(36px, 5vw, 64px); border-bottom: 1px solid var(--line); }
.review:last-of-type { border-bottom: 0; }
.review blockquote { margin: 0 0 1rem; font-family: var(--serif); font-size: clamp(1.3rem, 2.2vw, 1.6rem); line-height: 1.5; color: var(--heading); }
.review blockquote p { margin-bottom: .9em; }
.review cite { display: block; font-style: normal; font-weight: 600; color: var(--heading); }
.review .meta { color: var(--muted); font-size: .97rem; margin-bottom: 1.5rem; }

/* ---------- Gallery ---------- */
.masonry { columns: 3 280px; column-gap: clamp(12px, 2vw, 24px); }
.masonry .media { break-inside: avoid; margin-bottom: clamp(12px, 2vw, 24px); }
.lightbox { border: 0; padding: 0; background: transparent; max-width: 94vw; max-height: 94vh; }
.lightbox::backdrop { background: rgba(9, 17, 20, .92); }
.lightbox img { display: block; max-width: 94vw; max-height: 88vh; margin: auto; }
.lightbox button { display: block; margin: .75rem auto 0; }

/* ---------- Availability ---------- */
.cal-wrap { max-width: 900px; margin: 0 auto; border: 1px solid var(--line-strong); background: #fff; }
.cal-wrap iframe { display: block; width: 100%; height: 620px; border: 0; }
@media (max-width: 600px) { .cal-wrap iframe { height: 520px; } }
.booked-note { max-width: 44rem; margin: 2.5rem auto 0; text-align: center; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--line-strong); }
.faq { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; padding: 1.3rem 0; font-family: var(--serif); font-size: 1.35rem; color: var(--heading); line-height: 1.3; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--sans); font-size: 1.6rem; line-height: 1; color: var(--blue); flex: none; transition: transform .2s; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 0 1.4rem; max-width: 60ch; }

/* ---------- Contact ---------- */
.contact-split { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(32px, 6vw, 88px); align-items: start; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { display: grid; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; color: var(--heading); font-size: .97rem; }
.field .opt { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .9rem; font: inherit; color: var(--text);
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: 2px;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 2px solid var(--focus); outline-offset: 1px; border-color: var(--focus); }
.form-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.form-status { grid-column: 1 / -1; margin: 0; padding: 1rem 1.2rem; border-left: 3px solid var(--blue); background: var(--bg-alt); }
.form-status[hidden] { display: none; }
.contact-card { border-top: 3px solid var(--blue); padding-top: 1.5rem; }
.contact-card h2 { font-size: 1.9rem; }
.contact-list { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.contact-list li { padding: .7rem 0; border-bottom: 1px solid var(--line); }
.contact-list span { display: block; font-size: .95rem; color: var(--muted); }
.contact-list a { font-family: var(--serif); font-size: 1.4rem; color: var(--heading); text-decoration: none; overflow-wrap: anywhere; }
.contact-list a:hover { color: var(--link); text-decoration: underline; }
@media (max-width: 860px) { .contact-split { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- CTA + footer ---------- */
.cta-band { text-align: center; }
.cta-band p { max-width: 34em; margin-inline: auto; margin-bottom: 1.6em; }
.cta-band .btn-row { justify-content: center; }
.site-footer { background: var(--ink); color: var(--silver); padding-block: clamp(48px, 6vw, 80px) 32px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: clamp(28px, 5vw, 72px); }
.site-footer .brand { margin-bottom: 1rem; }
.site-footer h2 { font-size: 1.2rem; color: #fff; margin-bottom: .8em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .4rem; }
.site-footer a { color: var(--silver-soft); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-base { margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .93rem; color: var(--silver); }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero::before { animation: none; }
  .faq summary::after { transition: none; }
}
