/* ===================== TOKENS ===================== */
:root {
  --bg: #0d0b12;
  --bg-2: #14111c;
  --panel: #1a1622;
  --ink: #f5f1ea;
  --muted: #b3aab8;
  --gold: #e7b64b;
  --gold-2: #f4d27a;
  --crimson: #d5342f;
  --crimson-2: #ff5a4d;
  --line: rgba(255,255,255,.10);
  --radius: 16px;
  --maxw: 1180px;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
}

/* ===================== RESET ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 90%; max-width: var(--maxw); margin: 0 auto; }
.container.narrow { max-width: 820px; }
.center { text-align: center; }

/* ===================== TYPOGRAPHY ===================== */
.eyebrow {
  font-size: .8rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 14px;
}
.eyebrow.center { display: block; }
.section-title {
  font-family: 'Anton', sans-serif; font-weight: 400;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  line-height: 1.05; letter-spacing: .01em; text-transform: uppercase;
}
.section-lead { color: var(--muted); max-width: 640px; margin: 16px auto 0; font-size: 1.05rem; }
.text-gradient {
  background: linear-gradient(100deg, var(--gold-2), var(--crimson-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px; border-radius: 100px; font-weight: 700;
  font-size: .98rem; letter-spacing: .02em; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(100deg, var(--gold), var(--crimson));
  color: #1a0f06; box-shadow: 0 12px 30px rgba(215,52,47,.35);
}
.btn-primary:hover { box-shadow: 0 16px 40px rgba(215,52,47,.5); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 44px; font-size: 1.1rem; }

/* ===================== HEADER ===================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0; transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(13,11,18,.85); backdrop-filter: blur(14px);
  padding: 10px 0; box-shadow: 0 8px 30px rgba(0,0,0,.35);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 46px; width: auto; transition: height .3s ease; }
.site-header.scrolled .brand-logo { height: 38px; }
.footer-logo { height: 60px; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { color: var(--muted); font-weight: 600; font-size: .95rem; transition: color .18s; }
.main-nav a:hover { color: var(--ink); }
.main-nav .nav-cta {
  color: #1a0f06; background: linear-gradient(100deg, var(--gold), var(--crimson));
  padding: 10px 22px; border-radius: 100px;
}
.main-nav .nav-cta:hover { color: #1a0f06; transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== HERO (logo banner) ===================== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-media {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(231,182,75,.16), transparent 42%),
    radial-gradient(circle at 20% 75%, rgba(213,52,47,.20), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(213,52,47,.14), transparent 45%),
    linear-gradient(180deg, #17131f 0%, #0d0b12 70%);
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    conic-gradient(from 210deg at 50% 0%, transparent 0deg, rgba(231,182,75,.05) 20deg, transparent 40deg,
    rgba(213,52,47,.05) 60deg, transparent 80deg);
  opacity: .8;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,11,18,.2) 0%, rgba(13,11,18,.4) 70%, rgba(13,11,18,.95) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 120px 0 80px; text-align: center; }
.hero-logo {
  width: min(620px, 82%); height: auto; margin: 0 auto 30px;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,.55));
  animation: fadeUp .9s ease both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero-sub { color: var(--muted); max-width: 620px; font-size: 1.15rem; margin: 0 auto 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px 28px; list-style: none; justify-content: center; }
.hero-badges li { color: var(--ink); font-weight: 600; font-size: .92rem; position: relative; padding-left: 20px; }
.hero-badges li::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 10px; height: 6px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  rotate: -45deg;
}
.scroll-cue {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: var(--gold); font-size: 1.5rem; animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ===================== TRUST STRIP ===================== */
.trust-strip { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 34px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.trust-grid div { display: flex; flex-direction: column; }
.stat-num { font-family: 'Anton', sans-serif; font-size: 2.2rem; color: var(--gold-2); }
.stat-label { color: var(--muted); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }

/* ===================== SECTIONS ===================== */
.section { padding: 100px 0; }
.experience { background: var(--bg-2); }
.faq { background: var(--bg-2); }

/* ===================== SERVICE CARDS ===================== */
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 54px; }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 30px; transition: transform .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(231,182,75,.45); }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; margin-bottom: 22px; border-radius: 13px;
  background: linear-gradient(150deg, rgba(231,182,75,.16), rgba(213,52,47,.10));
  border: 1px solid rgba(231,182,75,.28); color: var(--gold-2);
}
.card-icon svg { width: 26px; height: 26px; }
.card:hover .card-icon { border-color: rgba(231,182,75,.6); }
.card h3 {
  font-family: 'Anton', sans-serif; font-weight: 400; letter-spacing: .03em;
  text-transform: uppercase; font-size: 1.35rem; margin-bottom: 12px;
}
.card p { color: var(--muted); font-size: .98rem; }

/* ===================== SPLIT ===================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split-copy .section-title { margin-bottom: 18px; }
.split-copy p { color: var(--muted); margin-bottom: 22px; }
.feature-list { list-style: none; display: grid; gap: 14px; margin-bottom: 30px; }
.feature-list li { position: relative; padding-left: 28px; color: var(--muted); }
.feature-list li::before { content: ""; position: absolute; left: 2px; top: 8px; width: 11px; height: 7px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); rotate: -45deg; }
.feature-list strong { color: var(--ink); }

/* ===================== REVIEWS ===================== */
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 50px; }
.review { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.stars { color: var(--gold); letter-spacing: .15em; margin-bottom: 14px; }
.review p { font-size: 1.05rem; margin-bottom: 18px; }
.review cite { color: var(--muted); font-style: normal; font-weight: 600; }

/* ===================== CONTACT / FORM ===================== */
.contact-list { list-style: none; display: grid; gap: 16px; margin-top: 26px; }
.contact-list li { display: flex; gap: 14px; align-items: baseline; color: var(--muted); }
.contact-list span { color: var(--gold); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; min-width: 76px; }
.contact-list a:hover { color: var(--gold-2); }

.lead-form { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--bg); color: var(--ink); font-family: inherit; font-size: 1rem;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; }
.form-hint { color: var(--muted); font-size: .78rem; margin-top: 14px; text-align: center; }
.form-hint code { background: var(--bg); padding: 2px 6px; border-radius: 5px; color: var(--gold-2); }

/* ===================== FAQ ===================== */
.accordion { margin-top: 44px; display: grid; gap: 12px; }
.accordion details {
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 4px 24px;
}
.accordion summary {
  cursor: pointer; list-style: none; padding: 18px 0; font-weight: 700; font-size: 1.08rem;
  display: flex; justify-content: space-between; align-items: center;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; color: var(--gold); font-size: 1.5rem; transition: transform .2s; }
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion p { color: var(--muted); padding: 0 0 20px; }

/* ===================== FINAL CTA ===================== */
.final-cta {
  padding: 100px 0; text-align: center;
  background:
    linear-gradient(180deg, rgba(13,11,18,.6), rgba(13,11,18,.85)),
    url('img/wedding.jpg') center/cover fixed no-repeat;
}
.final-cta .section-lead { margin-bottom: 32px; }

/* ===================== FOOTER ===================== */
.site-footer { background: #08070c; padding: 60px 0 30px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; align-items: start; }
.footer-tag { color: var(--muted); margin-top: 14px; max-width: 320px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: var(--muted); } .footer-nav a:hover { color: var(--gold-2); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { color: var(--muted); } .footer-contact a:hover { color: var(--gold-2); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: .85rem; }

/* ===================== REVEAL ANIMATION ===================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .cards, .review-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(78%, 320px);
    background: var(--bg-2); flex-direction: column; align-items: flex-start;
    padding: 100px 34px 40px; gap: 22px; transform: translateX(100%);
    transition: transform .3s ease; box-shadow: -20px 0 60px rgba(0,0,0,.5);
  }
  .main-nav.open { transform: none; }
  .main-nav a { font-size: 1.1rem; }
  .nav-toggle { display: flex; z-index: 101; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .cards, .review-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid, .footer-bottom { grid-template-columns: 1fr; text-align: left; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .section { padding: 70px 0; }
  .final-cta { background-attachment: scroll; }
  .hero-logo { width: 90%; }
}
