/* ═══════════════════════════════════════════════════════════
   LUV — Locita360 Weddings · Design System
   Ivory / Charcoal / Gold — editorial cinematic wedding
   ═══════════════════════════════════════════════════════════ */

:root {
  --ivory: #FAF7F2;
  --ivory-2: #F3EDE3;
  --charcoal: #1C1917;
  --charcoal-soft: #57534E;
  --gold: #C9A24B;
  --gold-soft: #E5CE9E;
  --white: #FFFFFF;
  --line: rgba(28, 25, 23, 0.12);
  --shadow: 0 20px 60px rgba(28, 25, 23, 0.10);
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Instrument Sans', 'Helvetica Neue', Arial, sans-serif;
  --mono: 'IBM Plex Mono', monospace;
  --radius: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ─────────────────────────────────────── */
.serif { font-family: var(--serif); }
.mono { font-family: var(--mono); }
h1, h2, h3 { font-family: var(--serif); font-weight: 560; line-height: 1.12; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.display { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.h3 { font-size: 1.35rem; }
.lead { font-size: 1.08rem; color: var(--charcoal-soft); }
.muted { color: var(--charcoal-soft); }
.center { text-align: center; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px; border-radius: 999px;
  font-weight: 600; font-size: 14px; letter-spacing: 0.02em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  border: 1px solid transparent;
}
.btn-gold { background: var(--gold); color: var(--charcoal); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201, 162, 75, 0.35); }
.btn-dark { background: var(--charcoal); color: var(--ivory); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(28,25,23,.3); }
.btn-ghost { border-color: var(--charcoal); color: var(--charcoal); background: transparent; }
.btn-ghost:hover { background: var(--charcoal); color: var(--ivory); }

/* ── Header / Nav ───────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--charcoal); color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 17px; font-weight: 650;
}
.logo-text { font-family: var(--serif); font-size: 17px; font-weight: 560; }
.logo-text small { display: block; font-family: var(--mono); font-size: 9px; letter-spacing: .28em; color: var(--gold); text-transform: uppercase; }
.nav-links { display: flex; gap: 30px; align-items: center; font-size: 14px; }
.nav-links a { opacity: .75; transition: opacity .15s; }
.nav-links a:hover { opacity: 1; }
.nav-cta { padding: 10px 22px; }
.burger { display: none; background: none; border: none; font-size: 22px; color: var(--charcoal); }

/* ── Hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 110px 0 90px;
  text-align: center;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(201,162,75,.16), transparent 60%),
    linear-gradient(180deg, var(--ivory) 0%, var(--ivory-2) 100%);
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg,
    rgba(28, 25, 23, 0.45) 0%,
    rgba(28, 25, 23, 0.25) 40%,
    rgba(250, 247, 242, 0.3) 80%,
    var(--ivory) 100%
  );
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(28,25,23,.05) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero .eyebrow { color: var(--gold-soft); }
.hero .display { margin: 6px auto 22px; max-width: 18ch; color: var(--ivory); }
.hero .lead { max-width: 52ch; margin: 0 auto 34px; color: rgba(250, 247, 242, 0.8); }
.hero .btn-ghost { border-color: var(--ivory); color: var(--ivory); }
.hero .btn-ghost:hover { background: var(--ivory); color: var(--charcoal); }
.hero .hero-note { color: rgba(250, 247, 242, 0.6); }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 26px; font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--charcoal-soft); }

/* ── Sections ───────────────────────────────────────── */
.section { padding: 90px 0; }
.section-alt { background: var(--ivory-2); }
.section-head { max-width: 620px; margin: 0 auto 54px; text-align: center; }

/* Value props */
.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.value {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .2s ease, box-shadow .2s ease;
}
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value .icon { width: 46px; height: 46px; border-radius: 14px; background: rgba(201,162,75,.12); display: grid; place-items: center; margin-bottom: 18px; font-size: 20px; }
.value h3 { margin-bottom: 8px; font-size: 1.15rem; }
.value p { font-size: .92rem; color: var(--charcoal-soft); }

/* Gallery strip */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.frame {
  aspect-ratio: 4 / 5; border-radius: var(--radius);
  background: linear-gradient(150deg, #2a2622, #141210 70%);
  position: relative; overflow: hidden;
  display: grid; place-items: center;
}
.frame::before {
  content: attr(data-cap);
  font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(229,206,158,.85);
}
.frame::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 30% 20%, rgba(229,206,158,.14), transparent 60%);
}

/* Testimonials */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.quote { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.quote p { font-family: var(--serif); font-style: italic; font-size: 1.05rem; margin-bottom: 18px; }
.quote footer { font-size: .82rem; color: var(--charcoal-soft); }
.quote footer strong { color: var(--charcoal); display: block; font-family: var(--serif); font-size: .95rem; }

/* ── Packages ───────────────────────────────────────── */
.packages { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: start; }
.pkg {
  background: var(--white); border: 1px solid var(--line); border-radius: 24px;
  padding: 36px 30px; position: relative; transition: transform .2s ease, box-shadow .2s ease;
}
.pkg:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pkg.featured { border: 2px solid var(--gold); background: linear-gradient(180deg, #FFFDF8, var(--white)); }
.pkg .tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--charcoal);
  font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; white-space: nowrap;
}
.pkg .price { font-family: var(--serif); font-size: 2.4rem; margin: 18px 0 2px; }
.pkg .price small { font-family: var(--sans); font-size: 13px; color: var(--charcoal-soft); font-weight: 400; }
.pkg .per { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; color: var(--gold); text-transform: uppercase; }
.pkg ul { list-style: none; margin: 26px 0 30px; }
.pkg li { padding: 9px 0; border-top: 1px solid var(--line); font-size: .92rem; display: flex; gap: 10px; align-items: flex-start; }
.pkg li::before { content: "✦"; color: var(--gold); font-size: 11px; margin-top: 3px; }
.pkg .btn { width: 100%; }

/* ── Booking / Intake ───────────────────────────────── */
.intake-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }
.form-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 24px; padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12px; font-weight: 600; letter-spacing: .04em; margin-bottom: 7px; }
.field label .req { color: #B45309; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 12px;
  border: 1px solid rgba(28,25,23,.16); background: var(--ivory);
  font-family: inherit; font-size: 14px; color: var(--charcoal); outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,.15); background: var(--white);
}
.field textarea { min-height: 96px; resize: vertical; }
.field .hint { font-size: 11px; color: var(--charcoal-soft); margin-top: 5px; }
.field.error input, .field.error select, .field.error textarea { border-color: #DC2626; }
.field .err { display: none; font-size: 11px; color: #DC2626; margin-top: 5px; }
.field.error .err { display: block; }

/* Add-ons */
.addons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 6px; }
.addon {
  display: flex; align-items: center; gap: 10px; padding: 11px 13px;
  border: 1px solid var(--line); border-radius: 12px; font-size: 13px; cursor: pointer;
  transition: border-color .15s, background .15s;
}
.addon:hover { border-color: var(--gold); }
.addon input { accent-color: var(--gold); width: 15px; height: 15px; }
.addon .price { margin-left: auto; font-family: var(--mono); font-size: 11px; color: var(--gold); white-space: nowrap; }

/* Budget chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--white); font-size: 13px; transition: all .15s;
}
.chip.active { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }

/* Summary side */
.summary-card {
  position: sticky; top: 90px;
  background: var(--charcoal); color: var(--ivory);
  border-radius: 24px; padding: 32px;
}
.summary-card h3 { color: var(--gold); margin-bottom: 18px; font-size: 1.3rem; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-top: 1px solid rgba(250,247,242,.12); font-size: 14px; }
.summary-row.total { border-top: 2px solid var(--gold); font-weight: 700; font-size: 17px; margin-top: 6px; }
.summary-row .val { color: var(--gold); font-family: var(--mono); }
.summary-note { margin-top: 20px; font-size: 12px; color: rgba(250,247,242,.6); line-height: 1.5; }

/* Honeypot (spam trap) */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* Success */
.success { display: none; text-align: center; padding: 70px 20px; }
.success.show { display: block; }
.success .check {
  width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 26px;
  background: rgba(201,162,75,.14); color: var(--gold);
  display: grid; place-items: center; font-size: 30px;
}
.success h2 { margin-bottom: 12px; }
.success .ref { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; color: var(--gold); }

/* ── Recording dot ─────────────────────────────────── */
.rec-dot {
  color: #DC2626; font-size: 18px; margin-left: 10px;
  animation: blink 1.2s ease-in-out infinite; vertical-align: middle;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.15; } }

/* ── About quote ───────────────────────────────────── */
.about-quote { max-width: 720px; margin: 0 auto; }
.about-quote blockquote {
  background: var(--white); border: 1px solid var(--line); border-radius: 24px;
  padding: 40px 36px; text-align: center;
}
.about-quote blockquote p {
  font-family: var(--serif); font-size: 1.15rem; font-style: italic;
  line-height: 1.7; color: var(--charcoal-soft); margin-bottom: 18px;
}
.about-quote blockquote footer {
  border: none; padding: 0; margin: 0;
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
  color: var(--gold); text-transform: uppercase;
}

/* ── Reels grid ────────────────────────────────────── */
.reels-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.reel-card { cursor: pointer; transition: transform .2s ease; }
.reel-card:hover { transform: translateY(-4px); }
.reel-thumb {
  aspect-ratio: 16/9; border-radius: 18px;
  position: relative; overflow: hidden;
  display: grid; place-items: center;
}
.reel-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 30% 20%, rgba(229,206,158,.12), transparent 60%);
}
.reel-badge {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  background: rgba(28,25,23,.7); color: var(--gold);
  font-family: var(--mono); font-size: 9px; letter-spacing: .16em;
  padding: 4px 10px; border-radius: 999px; text-transform: uppercase;
}
.reel-play {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(28,25,23,.55); color: var(--ivory);
  display: grid; place-items: center; font-size: 18px;
  border: 1px solid rgba(250,247,242,.25);
  transition: background .2s, border-color .2s;
  z-index: 1;
}
.reel-card:hover .reel-play { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.reel-label {
  font-size: 13px; font-weight: 500; margin-top: 10px;
  text-align: center; color: var(--charcoal-soft);
}

/* ── Page hero (non-home pages) ───────────────────── */
.page-hero {
  padding: 80px 0 50px; text-align: center;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-2) 100%);
}
.page-hero .lead { max-width: 56ch; margin: 14px auto 0; }

/* ── Footer ────────────────────────────────────────── */
footer { border-top: 1px solid var(--line); padding: 56px 0 36px; margin-top: 40px; }
.foot { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; }
.foot-brand { max-width: 340px; }
.foot-tagline { font-size: 13px; color: var(--charcoal-soft); margin-top: 12px; line-height: 1.6; }
.foot-links { text-align: right; }
.foot-label { display: block; margin-bottom: 10px; font-size: 10px; }
.social-links { display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-end; }
.social-links a {
  font-size: 13px; color: var(--charcoal-soft); transition: color .15s;
}
.social-links a:hover { color: var(--gold); }
.foot-bottom {
  width: 100%; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  align-items: center;
}
.foot-bottom .mono { font-size: 11px; letter-spacing: .16em; color: var(--charcoal-soft); }
.foot-extra { display: flex; gap: 12px; align-items: center; }
.foot-extra a { font-size: 12px; color: var(--charcoal-soft); }
.foot-extra a:hover { color: var(--gold); }
.foot .mono { font-size: 11px; letter-spacing: .16em; color: var(--charcoal-soft); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 18px; position: absolute;
    top: 100%; left: 0; right: 0; background: var(--ivory);
    padding: 22px 24px; border-bottom: 1px solid var(--line);
    align-items: flex-start;
  }
  .intake-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .addons { grid-template-columns: 1fr; }
  .hero { padding: 80px 0 64px; }
  .section { padding: 64px 0; }
  .reels-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
  .foot { flex-direction: column; gap: 24px; }
  .foot-links { text-align: left; }
  .social-links { justify-content: flex-start; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .about-quote blockquote { padding: 28px 24px; }
  .about-quote blockquote p { font-size: 1rem; }
}
