/*
Theme Name: Vermont Wedding Association
Theme URI: https://vermontweddingassociation.org
Author: Vermont Wedding Association
Description: Custom theme for the Vermont Wedding Association — four-season venues, trusted introductions, and a quieter way to begin a Vermont wedding.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
Text Domain: vwa
*/

:root {
  --forest: #1e3a2f;
  --forest-deep: #12241d;
  --gold: #c4a35a;
  --gold-soft: #e8d5a3;
  --cream: #f6f1e8;
  --ivory: #fbf8f3;
  --ink: #2a241c;
  --muted: #6b6258;
  --line: rgba(42, 36, 28, 0.12);
  --card: #fffdf8;
  --shadow: 0 18px 50px rgba(18, 36, 29, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); text-decoration: none; }
a:hover { color: var(--gold); }
.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 84px;
}
.brand { display: flex; align-items: center; gap: 12px; color: inherit; }
.brand img { width: 52px; height: 52px; object-fit: cover; border-radius: 50%; }
.brand-text strong { display: block; font-family: "Cormorant Garamond", serif; font-size: 1.15rem; letter-spacing: .02em; }
.brand-text span { display: block; font-size: .78rem; color: var(--muted); }
.menu-toggle { display: none; }
nav ul { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; align-items: center; }
nav a { font-size: .92rem; letter-spacing: .03em; color: var(--ink); }
nav a.active, nav a[aria-current="page"] { color: var(--gold); }
.nav-cta {
  background: var(--forest); color: #fff !important;
  padding: 8px 14px; border-radius: 999px;
}

.hero, .page-hero {
  min-height: 72vh;
  background-size: cover; background-position: center;
  color: #fff; display: grid; align-items: end;
  position: relative;
}
.page-hero { min-height: 42vh; align-items: center; }
.hero::before, .page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,36,29,.25), rgba(18,36,29,.72));
}
.hero .wrap, .page-hero .wrap { position: relative; z-index: 1; padding: 80px 0 64px; }
.eyebrow, .section-kicker, .tag {
  text-transform: uppercase; letter-spacing: .16em;
  font-size: .72rem; color: var(--gold);
  margin: 0 0 10px;
}
.hero .eyebrow { color: var(--gold-soft); }
h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500; line-height: 1.15; margin: 0 0 16px;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.35rem; }
.script { font-family: "Great Vibes", cursive; font-weight: 400; }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 62ch; }
.quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-style: italic; max-width: 28ch;
}

section { padding: 72px 0; }
.split { background: var(--cream); }
.grid-2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow);
}
.card img { width: 100%; height: 210px; object-fit: cover; }
.card-body { padding: 22px; }
.btn {
  display: inline-block; border-radius: 999px; padding: 12px 20px;
  font-weight: 600; border: 1px solid transparent;
}
.btn-gold { background: var(--gold); color: var(--forest-deep); }
.btn-outline { border-color: currentColor; color: inherit; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.season-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.season { background: #fff; border: 1px solid var(--line); padding: 20px; border-radius: 16px; }
.member-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tier { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px; }
.tier.featured { border-color: var(--gold); box-shadow: var(--shadow); }
.price { font-family: "Cormorant Garamond", serif; font-size: 1.6rem; color: var(--forest); }
.list { list-style: none; padding: 0; }
.list li { display: flex; gap: 14px; margin-bottom: 16px; }
.num { font-family: "Cormorant Garamond", serif; color: var(--gold); font-size: 1.3rem; }
form { display: grid; gap: 14px; }
label { display: block; font-size: .85rem; margin-bottom: 4px; }
input, select, textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--line); background: #fff; font: inherit;
}
textarea { min-height: 140px; }
.muted-small, .form-note { color: var(--muted); font-size: .88rem; }

.site-footer { background: var(--forest-deep); color: #efe7d8; padding: 48px 0 24px; }
.site-footer a { color: var(--gold-soft); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
.footer-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.footer-brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.legal { margin-top: 28px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px; font-size: .85rem; }

@media (max-width: 900px) {
  .grid-2, .grid-3, .season-grid, .member-tiers, .footer-grid { grid-template-columns: 1fr; }
  nav ul { display: none; }
  nav.open ul { display: flex; flex-direction: column; position: absolute; right: 20px; top: 84px; background: #fff; padding: 16px; border-radius: 12px; box-shadow: var(--shadow); }
  .menu-toggle { display: inline-flex; background: none; border: 1px solid var(--line); padding: 8px 12px; border-radius: 999px; }
}
