/* LocalWeddingVenues.com — styles.css v20260613a */
:root {
  --dark:       #06091a;
  --dark-2:     #0c1128;
  --dark-3:     #111830;
  --accent:     #d4a847;
  --accent-str: #c49432;
  --accent-sft: #a89ad8;
  --gold:       #d4a847;
  --text:       rgba(255,255,255,0.88);
  --text-2:     rgba(255,255,255,0.55);
  --text-3:     rgba(255,255,255,0.28);
  --border:     rgba(255,255,255,0.08);
  --radius:     10px;
  --font-sans:  'IBM Plex Sans', system-ui, sans-serif;
  --font-serif: 'IBM Plex Serif', Georgia, serif;
  --wrap:       1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background: var(--dark); color: var(--text); font-family: var(--font-sans); font-size: 1rem; line-height: 1.65; overflow-x: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1,h2,h3,h4 { line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-family: var(--font-serif); font-style: italic; font-weight: 400; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.1rem; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: 1rem; }
button { cursor: pointer; border: none; background: none; }

/* ── BACKGROUND ── */
.bg-glow {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 0%, rgba(212,168,71,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 100%, rgba(168,152,216,0.05) 0%, transparent 70%);
}
body > * { position: relative; z-index: 1; }

/* ── WRAP ── */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ── FLOAT CTA ── */
.float-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: var(--accent); color: #000; font-size: 0.85rem; font-weight: 700;
  padding: 10px 20px; border-radius: 999px; letter-spacing: 0.03em;
  box-shadow: 0 4px 24px rgba(212,168,71,0.35);
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.float-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-cta:hover { background: var(--accent-str); text-decoration: none; }

/* ── HEADER ── */
.lwv-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,9,26,0.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 32px; height: 60px; }
.brand { font-size: 0.78rem; font-weight: 700; color: var(--text); letter-spacing: 0.06em; white-space: nowrap; }
.brand:hover { text-decoration: none; }
.brand .dot { color: var(--accent); }
.nav-toggle { display: none; flex-direction: column; gap: 4px; padding: 6px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.25s; }
.primary-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.primary-nav a { font-size: 0.85rem; color: var(--text-2); transition: color 0.2s; }
.primary-nav a:hover { color: var(--text); text-decoration: none; }
.nav-cta { background: var(--accent); color: #000 !important; padding: 7px 16px; border-radius: 6px; font-weight: 700 !important; font-size: 0.82rem !important; }
.nav-cta:hover { background: var(--accent-str); }

/* ── HERO ── */
.hero { padding: 80px 0 72px; }
.hero-inner { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.hero-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); border: 1px solid rgba(212,168,71,0.35);
  padding: 5px 12px; border-radius: 4px; margin-bottom: 20px;
  background: rgba(212,168,71,0.06);
}
.hero .lede { font-size: 1.1rem; color: var(--text-2); margin-top: 18px; max-width: 600px; line-height: 1.75; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 22px; font-size: 0.82rem; color: var(--text-3); }
.hero-meta li::before { content: '✓ '; color: var(--accent); }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-note { font-size: 0.75rem; color: var(--text-3); margin-top: 16px; }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; position: sticky; top: 72px;
}
.hero-price-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; color: var(--text-3); text-transform: uppercase; margin-bottom: 10px; }
.hero-stat { font-size: 1rem; color: var(--text-2); line-height: 1.5; }
.hero-stat span { color: var(--accent); font-weight: 600; }
.card-divider { border: none; border-top: 1px solid var(--border); margin: 18px 0; }
.hero-includes { display: flex; flex-direction: column; gap: 9px; }
.hero-includes li { display: flex; align-items: center; gap: 8px; font-size: 0.87rem; color: var(--text-2); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--accent); color: #000; font-weight: 700; font-size: 0.88rem;
  padding: 11px 22px; border-radius: 7px; border: none; cursor: pointer; white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
}
.btn:hover { background: var(--accent-str); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(212,168,71,0.3); text-decoration: none; color: #000; }
.btn.btn-lg { padding: 13px 28px; font-size: 0.95rem; }
.btn.ghost { background: transparent; color: var(--text-2); border: 1px solid var(--border); }
.btn.ghost:hover { background: rgba(255,255,255,0.05); color: var(--text); box-shadow: none; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--dark-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 22px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 12px 36px; }
.stat-num { font-size: 1.6rem; font-weight: 700; color: var(--accent); line-height: 1; }
.stat-label { font-size: 0.72rem; color: var(--text-3); text-align: center; }
.stat-div { width: 1px; height: 40px; background: var(--border); }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-alt { background: var(--dark-2); }
.section-heading { margin-bottom: 48px; }
.section-heading.centered { text-align: center; }
.section-heading p { color: var(--text-2); margin-top: 10px; font-size: 1.05rem; }

/* ── VENUE SELECTOR (Ticketmaster 3-col) ── */
.venue-sel {
  display: grid;
  grid-template-columns: 220px 1fr 280px;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.015);
  min-height: 540px;
}
.vsel-col { display: flex; flex-direction: column; }
.vsel-types { background: var(--dark-2); border-right: 1px solid var(--border); }
.vsel-floor { background: var(--dark-3); padding: 0; border-right: 1px solid var(--border); }
.vsel-detail { background: var(--dark-2); }

.col-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-3); padding: 14px 16px 10px; border-bottom: 1px solid var(--border);
}

/* Venue type buttons */
.vtype-btns { display: flex; flex-direction: column; }
.vtype-btn {
  display: flex; flex-direction: column; gap: 2px; text-align: left;
  padding: 13px 16px; border: none; background: transparent;
  border-bottom: 1px solid var(--border); cursor: pointer;
  transition: background 0.15s;
}
.vtype-btn:hover { background: rgba(255,255,255,0.03); }
.vtype-btn.active { background: rgba(212,168,71,0.08); border-left: 3px solid var(--accent); padding-left: 13px; }
.vbtn-icon { font-size: 1.1rem; line-height: 1; }
.vbtn-name { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.vbtn-cap { font-size: 0.7rem; color: var(--text-3); }

/* Layout toggle */
.layout-toggle {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--border);
}
.lay-btn {
  flex: 1; display: flex; flex-direction: column; gap: 2px; align-items: center;
  padding: 10px 6px; background: transparent; border: none; border-right: 1px solid var(--border);
  cursor: pointer; transition: background 0.15s;
}
.lay-btn:last-child { border-right: none; }
.lay-btn.active { background: rgba(212,168,71,0.1); }
.lay-btn.active .lay-name { color: var(--accent); }
.lay-name { font-size: 0.8rem; font-weight: 700; color: var(--text-2); }
.lay-sub { font-size: 0.65rem; color: var(--text-3); }

/* Blueprint SVG panel */
.blueprint-wrap { flex: 1; overflow: hidden; position: relative; min-height: 420px; }
.blueprint { display: none; width: 100%; height: 100%; }
.blueprint.active { display: block; }
.blueprint svg { width: 100%; height: 100%; display: block; }

.blueprint-legend {
  display: flex; flex-wrap: wrap; gap: 10px 20px;
  padding: 10px 16px; border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
}
.bleg { font-size: 0.65rem; color: rgba(255,255,255,0.4); }
.bleg { color: var(--c, rgba(255,255,255,0.4)); }

/* Detail panel */
.vdetail-card { margin: 16px; height: calc(100% - 32px); display: flex; flex-direction: column; gap: 0; }
.vdetail-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; background: rgba(212,168,71,0.12); color: var(--accent);
  padding: 4px 10px; border-radius: 4px; margin-bottom: 14px;
}
.vdetail-cap { display: flex; flex-direction: column; gap: 6px; }
.vcap-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.82rem; }
.vcap-label { color: var(--text-3); }
.vcap-num { font-size: 1.05rem; font-weight: 700; color: var(--accent); }
.vcap-num::after { content: ' guests'; font-size: 0.65rem; color: var(--text-3); font-weight: 400; }
.vprice-row { display: flex; justify-content: space-between; align-items: baseline; }
.vprice-label { font-size: 0.75rem; color: var(--text-3); }
.vprice-val { font-size: 1.2rem; font-weight: 700; color: var(--text); }
.vprice-unit { font-size: 0.65rem; color: var(--text-3); font-weight: 400; }
.vdetail-section-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; color: var(--text-3); text-transform: uppercase; margin-bottom: 8px; }
.vamenity-list { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.vamenity-list li { font-size: 0.78rem; color: var(--text-2); display: flex; align-items: flex-start; gap: 6px; }
.vamenity-list li::before { content: '·'; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.vdetail-note { font-size: 0.7rem; color: var(--text-3); text-align: center; margin-top: 6px; }
.inline-link { color: var(--accent); font-size: 0.8rem; }
.inline-link:hover { text-decoration: underline; }

/* ── CARD (generic) ── */
.card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

/* ── TIMELINE (How it works) ── */
.timeline-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; counter-reset: steps; }
.timeline-step { display: flex; gap: 16px; }
.t-num {
  font-size: 1.8rem; font-weight: 700; color: rgba(212,168,71,0.18); line-height: 1;
  flex-shrink: 0; min-width: 40px;
}
.timeline-step p { font-size: 0.88rem; color: var(--text-2); margin-top: 6px; }
.timeline-step strong { color: var(--text); }

/* ── CARD GRID ── */
.card-grid { display: grid; gap: 24px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid .card h3 { margin-bottom: 8px; }
.card-grid .card p { font-size: 0.9rem; color: var(--text-2); margin-top: 6px; }

/* ── PRICING STRIP ── */
.pricing-strip {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 20px;
  margin-top: 48px;
  align-items: start;
}
.pricing-card { text-align: center; position: relative; }
.pricing-card.featured-card { border-color: rgba(212,168,71,0.4); background: rgba(212,168,71,0.05); transform: scale(1.03); }
.featured-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #000; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 99px;
}
.pc-tier { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; color: var(--text-3); text-transform: uppercase; margin-bottom: 8px; }
.pc-price { font-size: 2.2rem; font-weight: 700; color: var(--accent); line-height: 1; }
.pc-price span { font-size: 0.9rem; color: var(--text-3); font-weight: 400; }
.pc-desc { font-size: 0.82rem; color: var(--text-2); margin-top: 12px; }

/* ── FAQ ── */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: block; padding: 18px 0; cursor: pointer; font-size: 1rem; font-weight: 600;
  list-style: none; color: var(--text); transition: color 0.2s;
}
.faq-q::marker { display: none; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; float: right; color: var(--accent); font-size: 1.2rem; line-height: 1.2; transition: transform 0.25s; }
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 0 18px; }
.faq-a p { font-size: 0.92rem; color: var(--text-2); }

/* ── INQUIRY FORM ── */
.inquiry-form { max-width: 700px; margin: 0 auto; }
.form-type-toggle {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.ftype-label {
  display: flex; align-items: center; gap: 8px; cursor: pointer; padding: 10px 18px;
  border: 1px solid var(--border); border-radius: 7px; font-size: 0.88rem; color: var(--text-2);
  transition: border-color 0.2s, background 0.2s; flex: 1; min-width: 200px;
}
.ftype-label input { position: absolute; opacity: 0; width: 0; }
.ftype-label.active { border-color: rgba(212,168,71,0.5); background: rgba(212,168,71,0.07); color: var(--text); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { display: flex; flex-direction: column; gap: 5px; font-size: 0.82rem; color: var(--text-3); }
.form-label span { font-weight: 600; font-size: 0.78rem; letter-spacing: 0.04em; }
.form-label input, .form-label select, .form-label textarea {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 6px; padding: 10px 12px; color: var(--text); outline: none;
  transition: border-color 0.2s;
}
.form-label input:focus, .form-label select:focus, .form-label textarea:focus { border-color: rgba(212,168,71,0.5); }
.form-label.full { grid-column: 1 / -1; }
.form-label textarea { resize: vertical; min-height: 100px; }
.form-label select option { background: var(--dark-2); }
.form-actions { margin-top: 20px; }
.fine-print { font-size: 0.72rem; color: var(--text-3); }
.form-success { margin-top: 16px; padding: 14px 18px; background: rgba(100,200,100,0.08); border: 1px solid rgba(100,200,100,0.2); border-radius: 7px; font-size: 0.9rem; color: rgba(200,255,200,0.85); }

/* ── FOOTER ── */
.lwv-footer { background: var(--dark-2); border-top: 1px solid var(--border); padding: 48px 0 20px; }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 40px; align-items: start; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.footer-brand .brand { font-size: 0.75rem; }
.footer-brand p { font-size: 0.78rem; color: var(--text-3); margin-top: 6px; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { font-size: 0.82rem; color: var(--text-3); }
.footer-nav a:hover { color: var(--accent); text-decoration: none; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-link { font-size: 0.82rem; color: var(--text-3); }
.footer-link:hover { color: var(--accent); }
.footer-legal { padding-top: 18px; text-align: center; font-size: 0.72rem; color: var(--text-3); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.revealed { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .venue-sel { grid-template-columns: 1fr; }
  .vsel-types { display: none; }
  .vsel-detail { border-left: none; border-top: 1px solid var(--border); }
  .card-grid.three { grid-template-columns: 1fr; }
  .pricing-strip { grid-template-columns: 1fr; }
  .pricing-card.featured-card { transform: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .timeline-list { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .nav-toggle { display: flex; margin-left: auto; }
  .primary-nav { display: none; position: absolute; top: 60px; left: 0; right: 0; background: rgba(6,9,26,0.97); flex-direction: column; gap: 0; padding: 12px 0; border-bottom: 1px solid var(--border); }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 12px 24px; font-size: 0.95rem; }
  .nav-cta { border-radius: 0; }
  .hero { padding: 48px 0 40px; }
  .section { padding: 56px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .layout-toggle { gap: 0; }
  .lay-sub { display: none; }
  .trust-bar-inner { flex-wrap: wrap; gap: 0; }
  .stat-div { display: none; }
  .stat-item { padding: 10px 20px; }
  .form-type-toggle { flex-direction: column; }
}
