/* Lumière Events — Drill 019
   Vertical: Event planning / venue / catering
   Palette: deep charcoal #1a1a2e + warm gold #c9922a + champagne #f5ede0
*/

:root {
  color-scheme: light;
  --charcoal: #1a1a2e;
  --charcoal-mid: #242440;
  --charcoal-light: #32325a;
  --gold: #c9922a;
  --gold-dark: #a07218;
  --gold-light: #dfa94a;
  --gold-pale: #fdf6e8;
  --champagne: #f5ede0;
  --champagne-dark: #e8d9c4;
  --white: #ffffff;
  --ink: #1a1a2e;
  --muted: #5c5c7a;
  --line: #e0d5c4;
  --panel: #faf6f0;
  --shadow: 0 4px 24px rgba(26, 26, 46, 0.09);
  --shadow-lg: 0 16px 56px rgba(26, 26, 46, 0.14);
  --radius: 8px;
  --radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--champagne);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  font-size: 1rem;
}
a { color: var(--gold-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.skip-link {
  position: absolute; left: 1rem; top: 1rem; z-index: 10;
  transform: translateY(-200%);
  background: var(--charcoal); color: var(--white);
  padding: 0.6rem 1.2rem; border-radius: var(--radius); font-weight: 600;
}
.skip-link:focus { transform: translateY(0); }
.noscript-warning {
  background: #fff3cd; color: #664d03;
  padding: 0.75rem 1.5rem; text-align: center; margin: 0;
  border-bottom: 1px solid #ffc107;
}

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding: 0 clamp(1rem, 4vw, 4rem); height: 68px;
  background: rgba(245, 237, 224, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand { display: flex; align-items: center; gap: 0.75rem; color: var(--ink); text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--charcoal); color: var(--gold);
  display: grid; place-items: center;
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.05em;
  flex-shrink: 0;
}
.brand strong { display: block; font-size: 0.95rem; color: var(--charcoal); font-weight: 700; }
.brand small { display: block; font-size: 0.72rem; color: var(--muted); font-weight: 400; }
.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav a {
  padding: 0.4rem 0.8rem; border-radius: 6px;
  color: var(--muted); font-size: 0.88rem; font-weight: 500;
  transition: color 0.15s, background 0.15s;
}
.nav a:hover { color: var(--charcoal); background: var(--champagne-dark); text-decoration: none; }
.nav-cta {
  background: var(--charcoal) !important; color: var(--gold) !important;
  padding: 0.45rem 1.1rem !important; border-radius: 6px !important; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--charcoal-mid) !important; }

/* ── BUTTONS ── */
.button {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.75rem; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  border: 2px solid transparent; text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
}
.button:hover { transform: translateY(-1px); text-decoration: none; }
.button.primary { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.button.primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }
.button.secondary { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.button.secondary:hover { background: var(--champagne-dark); }
.button.outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.button.outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.button.ghost { background: transparent; color: rgba(255,255,255,0.85); border-color: transparent; }
.button.ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.button.cta-light { background: var(--champagne); color: var(--charcoal); border-color: var(--champagne); }
.button.cta-light:hover { background: var(--champagne-dark); }

/* ── HERO ── */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 50%, var(--charcoal-light) 100%);
  color: var(--white);
  padding: clamp(5rem, 12vw, 9rem) clamp(1rem, 4vw, 4rem);
  display: grid; grid-template-columns: 1fr 260px;
  gap: 3rem; align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201, 146, 42, 0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-overlay { display: none; }
.hero-content { position: relative; z-index: 1; max-width: 640px; }
.eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--gold-light); margin: 0 0 1rem;
}
.hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800;
  line-height: 1.12; letter-spacing: -0.02em;
}
.hero-copy { font-size: 1.05rem; color: rgba(255,255,255,0.82); margin: 0 0 2rem; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-stats {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 1.25rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(201,146,42,0.25);
  border-radius: var(--radius-lg); padding: 2rem 1.75rem;
}
.hero-stats > div { text-align: center; }
.hero-stats strong { display: block; font-size: 2.2rem; font-weight: 800; color: var(--gold-light); line-height: 1.1; }
.hero-stats span { font-size: 0.8rem; color: rgba(255,255,255,0.65); }
.hero-stats em { font-size: 0.7rem; font-style: italic; }

/* ── TRUST STRIP ── */
.trust-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  background: var(--charcoal); color: var(--white);
}
.trust-strip > div { padding: 1.25rem 1.75rem; border-right: 1px solid rgba(201,146,42,0.2); }
.trust-strip > div:last-child { border-right: none; }
.trust-strip strong { display: block; font-size: 0.9rem; color: var(--gold-light); margin-bottom: 0.3rem; }
.trust-strip span { font-size: 0.8rem; color: rgba(255,255,255,0.68); }

/* ── SECTIONS ── */
.section-heading { max-width: 680px; margin: 0 auto 3rem; text-align: center; }
.section-heading h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800;
  margin: 0.4rem 0 0.75rem; line-height: 1.2; color: var(--charcoal);
}
.section-heading p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* ── SERVICES ── */
.services {
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 4rem);
  background: var(--panel);
}
.service-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem; max-width: 1200px; margin: 0 auto;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; border: 1px solid var(--line);
  box-shadow: var(--shadow); transition: box-shadow 0.2s, transform 0.2s;
  position: relative; overflow: hidden;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.service-card.featured { border-color: var(--gold); }
.service-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--charcoal-light);
}
.featured-accent { background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 100%); }
.service-card h3 { margin: 0 0 0.75rem; color: var(--charcoal); font-size: 1.1rem; font-weight: 700; }
.service-card p { color: var(--muted); margin: 0 0 0.875rem; font-size: 0.88rem; }
.service-card ul { margin: 0; padding-left: 1.1rem; }
.service-card li { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.25rem; }

/* ── EXPERIENCE ── */
.experience {
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 4rem);
  background: var(--champagne);
}
.experience-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; max-width: 1200px; margin: 0 auto 2rem;
}
.experience-grid article {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.75rem; border: 1px solid var(--line);
}
.step-num {
  display: block; font-size: 2rem; font-weight: 800;
  color: var(--gold); line-height: 1; margin-bottom: 0.75rem;
}
.experience-grid h3 { margin: 0 0 0.5rem; color: var(--charcoal); font-size: 1rem; font-weight: 700; }
.experience-grid p { margin: 0; color: var(--muted); font-size: 0.875rem; }
.policy-notice {
  max-width: 800px; margin: 0 auto;
  background: var(--gold-pale); border: 1px solid #f0d490;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius); padding: 1rem 1.25rem; font-size: 0.875rem; color: var(--muted);
}
.policy-notice strong { color: var(--charcoal); }

/* ── ABOUT ── */
.about {
  display: grid; grid-template-columns: 1fr auto;
  gap: 4rem; align-items: center;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 4rem);
  background: var(--charcoal);
  color: var(--white);
}
.about-content { max-width: 580px; }
.about .eyebrow { color: var(--gold-light); }
.about h2 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); margin: 0.4rem 0 1rem; color: var(--white); font-weight: 800; }
.about p { color: rgba(255,255,255,0.78); margin: 0 0 0.875rem; font-size: 0.95rem; }
.about-numbers {
  display: flex; flex-direction: column; gap: 2rem;
  background: rgba(201,146,42,0.1); border: 1px solid rgba(201,146,42,0.25);
  border-radius: var(--radius-lg); padding: 2rem 2.5rem; min-width: 200px;
}
.about-numbers > div { text-align: center; }
.about-numbers strong { display: block; font-size: 2.4rem; font-weight: 800; color: var(--gold-light); line-height: 1; }
.about-numbers span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--charcoal-mid) 0%, var(--charcoal) 100%);
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 4rem);
  text-align: center; color: var(--white);
}
.cta-content { max-width: 660px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(1.5rem, 3vw, 2.3rem); margin: 0 0 0.875rem; font-weight: 800; }
.cta-content > p { color: rgba(255,255,255,0.8); margin: 0 0 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 1.5rem; }
.cta-note { font-size: 0.78rem; color: rgba(255,255,255,0.45); max-width: 580px; margin: 0 auto; }

/* ── FOOTER ── */
.site-footer { background: #0f0f1e; color: rgba(255,255,255,0.75); }
.footer-top {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 2rem; padding: 2.5rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(201,146,42,0.15);
}
.footer-brand { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-brand strong { color: var(--gold-light); font-size: 1rem; }
.footer-brand span { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; align-items: center; }
.footer-nav a { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.footer-nav a:hover { color: var(--gold-light); text-decoration: none; }
.footer-bottom { padding: 1.25rem clamp(1rem, 4vw, 4rem); font-size: 0.77rem; color: rgba(255,255,255,0.38); }
.footer-bottom p { margin: 0 0 0.25rem; }

/* ── CONTACT PAGE ── */
.contact-main { padding: 0 clamp(1rem, 4vw, 4rem) 4rem; max-width: 1200px; margin: 0 auto; }
.contact-header { padding: 3rem 0 2rem; max-width: 640px; }
.contact-header .eyebrow { color: var(--gold-dark); }
.contact-header h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 0.4rem 0 0.75rem; color: var(--charcoal); font-weight: 800; }
.contact-lede { font-size: 1rem; color: var(--muted); margin: 0; }
.contact-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
.intake-notice {
  background: var(--gold-pale); border: 1px solid #f0d490;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius); padding: 1rem 1.25rem; margin-bottom: 1.5rem; font-size: 0.875rem;
}
.intake-notice strong { color: var(--charcoal); display: block; margin-bottom: 0.5rem; }
.intake-notice ul { margin: 0; padding-left: 1.25rem; }
.intake-notice li { color: var(--muted); margin-bottom: 0.3rem; }

/* Form */
.intake-form { display: flex; flex-direction: column; gap: 0; }
.form-section {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.75rem; margin-bottom: 1.25rem; background: var(--white);
}
.form-section legend { font-weight: 700; font-size: 0.95rem; color: var(--charcoal); padding: 0 0.5rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; margin-top: 1rem; }
.field:first-of-type { margin-top: 0.5rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.field label { font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.field-note { font-weight: 400; color: var(--muted); font-size: 0.8rem; }
.required { color: #c0392b; margin-left: 2px; }
.field input, .field select, .field textarea {
  padding: 0.6rem 0.875rem;
  border: 1.5px solid var(--line); border-radius: var(--radius);
  background: var(--champagne); color: var(--ink);
  transition: border-color 0.15s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold); outline: none;
  box-shadow: 0 0 0 3px rgba(201, 146, 42, 0.12);
}
.field textarea { resize: vertical; min-height: 140px; }
.field-help { font-size: 0.78rem; color: var(--muted); margin: 0.25rem 0 0; }
.consent-block { margin: 1rem 0; }
.consent-label { display: flex; gap: 0.75rem; align-items: flex-start; cursor: pointer; font-size: 0.875rem; color: var(--muted); }
.consent-label input[type="checkbox"] { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.15rem; accent-color: var(--gold-dark); }
.form-notice {
  background: var(--gold-pale); border: 1px solid #f0d490;
  border-radius: var(--radius); padding: 0.875rem 1rem; font-size: 0.8rem; color: var(--muted); margin-bottom: 1.25rem;
}
.form-notice strong { color: var(--charcoal); }
.form-actions .button { width: 100%; padding: 0.9rem; font-size: 1rem; }
.form-result { margin-top: 1rem; font-size: 0.9rem; }
.form-result.success { color: #166534; background: #dcfce7; padding: 1rem; border-radius: var(--radius); }
.form-result.error { color: #7f1d1d; background: #fee2e2; padding: 1rem; border-radius: var(--radius); }

/* Sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 88px; }
.sidebar-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; }
.sidebar-card h2 { margin: 0 0 0.75rem; font-size: 0.95rem; color: var(--charcoal); font-weight: 700; }
.sidebar-card p { margin: 0 0 0.5rem; font-size: 0.85rem; color: var(--muted); }
.sidebar-card ul { margin: 0.5rem 0 0; padding-left: 1.1rem; }
.sidebar-card li { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.3rem; }
.next-steps { padding-left: 1.25rem; margin: 0; }
.next-steps li { font-size: 0.875rem; color: var(--muted); margin-bottom: 0.5rem; }
.next-steps strong { color: var(--ink); }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { font-size: 0.875rem; color: var(--muted); margin-bottom: 0.4rem; }
.contact-list strong { color: var(--ink); }
.contact-list a { color: var(--gold-dark); }

/* ── PRIVACY ── */
.prose-main { padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 4vw, 4rem); }
.prose-article { max-width: 760px; margin: 0 auto; }
.prose-article .eyebrow { color: var(--gold-dark); }
.prose-article h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--charcoal); margin: 0.4rem 0 0.25rem; font-weight: 800; }
.prose-meta { font-size: 0.82rem; color: var(--muted); margin: 0 0 2rem; }
.prose-article h2 { font-size: 1.1rem; color: var(--charcoal); margin: 2rem 0 0.5rem; font-weight: 700; }
.prose-article p { color: var(--muted); margin: 0 0 0.75rem; line-height: 1.7; }
.prose-article a { color: var(--gold-dark); }
.prose-drill-note {
  margin-top: 2rem; padding: 0.875rem 1rem;
  background: var(--gold-pale); border: 1px solid #f0d490;
  border-radius: var(--radius); font-size: 0.8rem; color: var(--muted); font-style: italic;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; justify-content: flex-start; }
  .hero-stats > div { flex: 1; min-width: 120px; text-align: left; }
  .about { grid-template-columns: 1fr; }
  .about-numbers { flex-direction: row; justify-content: center; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav a:not(.nav-cta) { display: none; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
}
