:root{
  --bg: #fbfbfc;
  --surface: #ffffff;
  --surfaceAlt: #f5f7fb;
  --text: #111827;      /* slate-900 */
  --muted: #4b5563;     /* slate-600 */
  --line: #e5e7eb;      /* gray-200 */

  /* soft scout-ish accents (not fluorescent) */
  --blue: #1f4e8c;      /* calm navy */
  --blueSoft: #e8f0fb;  /* very light blue */
  --gold: #caa03a;      /* muted gold */
  --goldSoft:#fbf4df;   /* warm light */

  --radius: 14px;
  --max: 1100px;
  --pad: 20px;
  --shadow: 0 10px 22px rgba(17,24,39,0.08);

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background: var(--bg);
}

a{color:var(--blue); text-decoration:none}
a:hover{text-decoration:underline}

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 var(--pad);
}

/* Header */
.siteHeader{
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  position: sticky;
  top:0;
  z-index:10;
}
.headerRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  color:inherit;
}
.brandMark{
  width:40px; height:40px;
  border-radius: 12px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, var(--blueSoft), var(--goldSoft));
  border:1px solid var(--line);
  font-weight:800;
}
.brandText{display:flex; flex-direction:column; line-height:1.1}
.brandName{font-weight:800}
.brandSub{font-size:0.9rem; color:var(--muted)}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.nav a{font-weight:650; color:var(--muted)}
.nav a:hover{color:var(--text); text-decoration:none}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-weight:750;
  box-shadow: 0 6px 14px rgba(17,24,39,0.06);
}
.btn:hover{filter:brightness(0.99)}
.btnPrimary{
  background: linear-gradient(180deg, #e9d08a, #d9b24a);
  border-color: rgba(202,160,58,0.55);
  color:#1f2937;
}
.btnGhost{
  background: transparent;
}

/* Hero */
.hero{
  padding:34px 0 10px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:18px;
  align-items:start;
}
.eyebrow{
  margin:0 0 10px;
  color: var(--blue);
  font-weight:800;
  letter-spacing:0.2px;
  text-transform: uppercase;
  font-size:0.82rem;
}
h1{
  margin:0 0 10px;
  font-size: clamp(2.0rem, 4vw, 2.8rem);
  letter-spacing:-0.4px;
}
.lead{
  margin:0 0 18px;
  color: var(--muted);
  font-size:1.08rem;
  line-height:1.5;
  max-width: 62ch;
}
.smallNote{
  margin:12px 0 0;
  color: var(--muted);
  font-size:0.95rem;
}

.facts{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
  margin:16px 0;
}
.fact{
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:12px 14px;
  box-shadow: var(--shadow);
}
.factLabel{
  font-size:0.82rem;
  color: var(--muted);
  font-weight:750;
}
.factValue{
  margin-top:3px;
  font-weight:800;
}
.factNote{
  margin-top:2px;
  color: var(--muted);
  font-size:0.92rem;
}

.ctaRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:4px}

/* Side card */
.sideCard{
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding:16px;
  box-shadow: var(--shadow);
}
.sideCard h2{
  margin:0 0 10px;
  font-size:1.2rem;
}
.list{
  margin:0 0 12px;
  padding-left:18px;
  color: var(--muted);
  line-height:1.5;
}
.pillRow{display:flex; gap:8px; flex-wrap:wrap}
.pill{
  display:inline-flex;
  padding:6px 10px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: var(--surfaceAlt);
  color: var(--text);
  font-weight:750;
  font-size:0.88rem;
}

/* Sections */
.section{padding: 20px 0px 20px 0px; }
.sectionAlt{
  background: var(--surfaceAlt);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.sectionHead{
  margin-bottom:16px;
}
.sectionHead h2{margin:0 0 6px; font-size:1.75rem}
.sectionHead p{margin:0; color: var(--muted); line-height:1.5}

.twoCol{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.block{
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.block h3{margin:0 0 10px}

.bullets{
  margin:0;
  padding-left:18px;
  color: var(--muted);
}
.bullets li{margin:8px 0}

.softBox{
  margin-top:12px;
  padding:12px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blueSoft), var(--goldSoft));
  border: 1px solid rgba(229,231,235,0.9);
}

/* Minimal FAQ */
.faq{margin-top:14px; display:grid; gap:10px}
.faq details{
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:12px 14px;
}
.faq summary{
  cursor:pointer;
  font-weight:800;
}
.faq p{margin:10px 0 0; color: var(--muted); line-height:1.5}

/* Map placeholder */
.mapPlaceholder{
  background: repeating-linear-gradient(
    135deg,
    rgba(31,78,140,0.06),
    rgba(31,78,140,0.06) 12px,
    rgba(202,160,58,0.05) 12px,
    rgba(202,160,58,0.05) 24px
  );
  border:1px solid var(--line);
  border-radius: var(--radius);
  min-height: 220px;
  display:grid;
  place-items:center;
  text-align:center;
  padding:16px;
}
.mapTitle{font-weight:900}
.mapText{color: var(--muted); margin-top:6px}

/* RSVP card */
.rsvpCard{
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding:18px;
  box-shadow: var(--shadow);
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:14px;
  align-items:start;
}
.rsvpCopy h2{margin:0 0 8px; font-size:1.6rem}
.rsvpCopy p{margin:0; color:var(--muted); line-height:1.5}

.form{display:flex; flex-direction:column; gap:10px}
label span{
  display:block;
  font-weight:800;
  color: var(--muted);
  font-size:0.9rem;
  margin-bottom:6px;
}
input{
  width:100%;
  padding:12px 12px;
  border-radius: 12px;
  border:1px solid var(--line);
  background: #ffffff;
  color: var(--text);
  outline:none;
}
input:focus{
  border-color: rgba(31,78,140,0.5);
  box-shadow: 0 0 0 4px rgba(31,78,140,0.12);
}

/* Footer */
.footer{
  border-top:1px solid var(--line);
  padding:22px 0;
}
.footerRow{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.footerBrand{font-weight:900}
.muted{color:var(--muted)}

/* Responsive */
@media (max-width: 980px){
  .heroGrid{grid-template-columns: 1fr}
  .twoCol{grid-template-columns: 1fr}
  .rsvpCard{grid-template-columns: 1fr}
  .nav{display:none}
}
