@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Source+Sans+3:wght@300;400;600;700&display=swap');

:root {
  --pine:        #2c3e2d;
  --pine-dark:   #1e2b1f;
  --pine-light:  #3d5440;
  --granite:     #4a4a48;
  --granite-lt:  #6b6b68;
  --gold:        #c8922a;
  --gold-lt:     #e0ad4a;
  --sage:        #7a9e7e;
  --cream:       #f4f0e8;
  --white:       #fdfcfa;
  --light:       #eae6dc;
  --border:      #d0ccc0;
  --font-display: 'Merriweather', Georgia, serif;
  --font-body:    'Source Sans 3', 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 17px; line-height: 1.7; color: var(--granite); background: var(--white); }

/* ── NAV ── */
nav {
  background: var(--pine-dark);
  border-bottom: 3px solid var(--gold);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links { list-style: none; display: flex; gap: 0; }
.nav-links a {
  display: block;
  padding: 0 1.1rem;
  line-height: 58px;
  color: #c8d4c9;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { background: var(--pine); color: var(--gold-lt); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; }

/* ── HEADER ── */
.site-header {
  background: var(--pine-dark);
  background-image: linear-gradient(160deg, var(--pine-dark) 0%, var(--pine) 55%, var(--pine-light) 100%);
  padding: 3.5rem 2rem 3rem;
  text-align: center;
  border-bottom: 4px solid var(--gold);
}
.header-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.7rem;
}
.site-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.9rem;
}
.site-header h1 em { font-style: normal; color: var(--gold-lt); }
.header-sub {
  font-size: 1.1rem;
  color: #b8cbb9;
  max-width: 620px;
  margin: 0 auto 1.8rem;
  font-weight: 300;
  line-height: 1.7;
}
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.18s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); color: #fff; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); margin-left: 1rem; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ── DIVIDER ── */
.divider {
  height: 4px;
  background: linear-gradient(90deg, var(--pine-dark), var(--pine-light), var(--gold), var(--pine-light), var(--pine-dark));
}

/* ── SECTION WRAPPER ── */
.page-wrap { max-width: 1020px; margin: 0 auto; padding: 0 2rem; }

.content-band { padding: 3.5rem 0; border-bottom: 1px solid var(--border); }
.content-band.tinted { background: var(--cream); }
.content-band.dark { background: var(--pine-dark); border-bottom: none; }
.content-band.white { background: var(--white); }

/* ── SECTION HEADER — centered ── */
.section-header {
  text-align: center;
  margin-bottom: 2.8rem;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.dark .section-label { color: var(--gold-lt); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: var(--pine-dark);
  line-height: 1.2;
  margin-bottom: 0.7rem;
}
.dark .section-title { color: #fff; }
.section-sub {
  font-size: 1.05rem;
  color: var(--granite-lt);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.dark .section-sub { color: #a8bea9; }

/* ── ABOUT GRID ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.about-text p {
  font-size: 1.02rem;
  color: var(--granite);
  margin-bottom: 1rem;
  line-height: 1.75;
}
.about-text p:last-child { margin-bottom: 0; }

/* ── STAT ROW ── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 0;
}
.stat-cell {
  background: var(--white);
  padding: 1.2rem 0.8rem;
  text-align: center;
}
.tinted .stat-cell { background: var(--light); }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pine);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-lbl {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--granite-lt);
}

/* ── STEPS ── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.step {
  background: var(--cream);
  border: 1px solid var(--border);
  border-top: 4px solid var(--pine);
  padding: 1.6rem 1.5rem;
  text-align: center;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--pine);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pine-dark);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.step p { font-size: 0.95rem; color: var(--granite-lt); line-height: 1.65; }

/* ── VENUE CARD ── */
.venue-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,146,42,0.3);
  border-left: 5px solid var(--gold);
  padding: 1.5rem 1.8rem;
  max-width: 680px;
  margin: 0 auto;
}
.venue-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-lt);
  margin-bottom: 0.5rem;
}
.venue-card p { font-size: 1rem; color: #a8bea9; margin: 0; line-height: 1.7; }
.venue-note {
  text-align: center;
  font-size: 0.92rem;
  color: var(--sage);
  margin-top: 1.4rem;
  font-style: italic;
}
.venue-note a { color: var(--gold-lt); text-decoration: none; font-weight: 600; }

/* ── FORM ── */
.form-outer {
  border: 1px solid var(--border);
  border-top: 5px solid var(--pine);
  background: var(--cream);
  padding: 2.5rem;
  max-width: 780px;
  margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }

label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pine-dark);
}
label .req { color: #c0392b; margin-left: 2px; }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--granite);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.7rem 1rem;
  width: 100%;
  transition: border-color 0.15s;
  line-height: 1.5;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(44,62,45,0.1);
}
textarea { resize: vertical; min-height: 110px; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236b6b68'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-note {
  font-size: 0.9rem;
  color: var(--granite-lt);
  margin-top: 1.2rem;
  font-style: italic;
  text-align: center;
}
.form-submit { margin-top: 1.6rem; text-align: center; }
.form-success {
  display: none;
  background: #eaf4ea;
  border: 1px solid #a5d6a7;
  border-left: 4px solid #4caf50;
  padding: 1.1rem 1.4rem;
  color: #2e7d32;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 1rem;
  text-align: center;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info {
  text-align: center;
  padding: 2rem;
  background: var(--pine-dark);
  border-top: 4px solid var(--gold);
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 1rem;
}
.contact-info p {
  font-size: 1rem;
  color: #a8bea9;
  margin-bottom: 0.9rem;
  line-height: 1.7;
}
.contact-info a {
  color: var(--gold-lt);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
}
.contact-info a:hover { color: #fff; }
.contact-form-outer {
  background: var(--cream);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  padding: 2rem;
}

/* ── PHOTO STRIP ── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 150px;
  border-top: 4px solid var(--pine-dark);
}
.photo-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--granite-lt);
  border-right: 2px solid rgba(255,255,255,0.4);
}
.photo-ph:last-child { border-right: none; }
.photo-ph:nth-child(1) { background: #cfd8c5; }
.photo-ph:nth-child(2) { background: #c4d0ba; }
.photo-ph:nth-child(3) { background: #bac8af; }
.photo-ph:nth-child(4) { background: #b0bfa5; }
.photo-ph svg { width: 30px; height: 30px; opacity: 0.4; }

/* ── FOOTER ── */
footer {
  background: var(--pine-dark);
  color: var(--sage);
  padding: 2.2rem 2rem;
  text-align: center;
  font-size: 0.9rem;
  border-top: 3px solid var(--pine-light);
}
.footer-inner { max-width: 960px; margin: 0 auto; }
.footer-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #c8d4c9;
  margin-bottom: 0.4rem;
}
footer a { color: var(--sage); text-decoration: none; }
footer a:hover { color: var(--gold-lt); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 58px; left: 0; right: 0;
    background: var(--pine-dark); padding: 1rem 1.5rem; gap: 0;
    border-top: 1px solid var(--pine-light);
  }
  .nav-links.open a { line-height: 2.8; padding: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .steps-row { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); height: 160px; }
  .btn-outline { margin-left: 0; margin-top: 0.7rem; display: block; text-align: center; }
}
