*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --terra: #A0522D;
  --terra-light: #B8663D;
  --pine: #3A5F40;
  --pine-light: #4A7A50;
  --parchment: #FDFBF7;
  --stone: #F7F4EF;
  --stone-warm: #EDE8DF;
  --ink: #1E1E1C;
  --ink-light: #4A4A45;
  --ink-faint: #8A8A82;
  --river: #4A6E8A;
  --honey: #CC9933;
  --font-serif: 'Libre Baskerville', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--ink); background: var(--parchment); line-height: 1.6; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253, 251, 247, 0.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(30, 30, 28, 0.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.nav-logo {
  font-family: var(--font-serif); font-size: 1.1rem; color: var(--ink);
  text-decoration: none; font-weight: 700; letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--ink-light); text-decoration: none; font-size: 0.85rem;
  font-weight: 500; transition: color 0.2s; letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--terra); color: #fff; padding: 0.55rem 1.5rem;
  border-radius: 6px; font-size: 0.85rem; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
}
.nav-cta:hover { background: var(--terra-light); }
.mobile-toggle {
  display: none; background: none; border: none; color: var(--ink);
  font-size: 1.5rem; cursor: pointer;
}

/* HERO -- EDITORIAL STYLE */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 8rem 2rem 4rem; background: var(--stone);
}
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-text { max-width: 520px; }
.hero-loc {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--terra); margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15; margin-bottom: 1.5rem; letter-spacing: -0.02em;
}
.hero p {
  color: var(--ink-light); font-size: 1.05rem; line-height: 1.8;
  margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 1rem; }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.75rem; border-radius: 6px; font-size: 0.9rem;
  font-weight: 600; text-decoration: none; transition: all 0.2s;
  cursor: pointer; border: none; font-family: var(--font-sans);
}
.btn-terra { background: var(--terra); color: #fff; }
.btn-terra:hover { background: var(--terra-light); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-pine { background: var(--pine); color: #fff; }
.btn-pine:hover { background: var(--pine-light); }
.btn-outline-terra { background: transparent; color: var(--terra); border: 1.5px solid var(--terra); }
.btn-outline-terra:hover { background: var(--terra); color: #fff; }

.hero-img {
  aspect-ratio: 3/4; background-size: cover; background-position: center;
  border-radius: 12px;
  position: relative; overflow: hidden;
}

/* MARQUEE */
.marquee {
  background: var(--ink); color: var(--stone); padding: 0.9rem 0;
  overflow: hidden; white-space: nowrap;
}
.marquee-track {
  display: inline-block; animation: scroll 25s linear infinite;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-dot { display: inline-block; margin: 0 2rem; opacity: 0.3; }

/* SECTIONS */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.sh { margin-bottom: 3rem; }
.sh.center { text-align: center; }
.sh-label {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--terra); margin-bottom: 0.6rem;
}
.sh h2 {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em; margin-bottom: 0.6rem;
}
.sh p { color: var(--ink-light); font-size: 1rem; max-width: 500px; }
.sh.center p { margin: 0 auto; }

/* BG */
.bg-stone { background: var(--stone); }
.bg-warm { background: var(--stone-warm); }
.bg-ink { background: var(--ink); color: var(--stone); }
.bg-ink .sh p { color: rgba(247, 244, 239, 0.6); }
.bg-pine { background: var(--pine); color: #fff; }

/* ABOUT */
.about-split { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.about-photo {
  aspect-ratio: 1; background-size: cover; background-position: center;
  border-radius: 12px;
}
.about-body p { color: var(--ink-light); margin-bottom: 1rem; line-height: 1.8; font-size: 1rem; }
.about-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem;
}
.about-tag {
  background: var(--parchment); border: 1px solid rgba(30,30,28,0.08);
  padding: 0.4rem 0.9rem; border-radius: 4px; font-size: 0.78rem;
  font-weight: 500; color: var(--ink-light);
}

/* STAY */
.stay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.stay-card {
  background: var(--parchment); border: 1px solid rgba(30,30,28,0.06);
  border-radius: 10px; overflow: hidden; transition: all 0.25s;
}
.stay-card:hover { box-shadow: 0 8px 30px rgba(30,30,28,0.08); transform: translateY(-3px); }
.stay-card-img {
  height: 180px; display: flex; align-items: center; justify-content: center;
}
.stay-card-img svg { width: 52px; height: 52px; opacity: 0.65; }
.stay-card-body { padding: 1.5rem; }
.stay-card-body h3 { font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 0.5rem; }
.stay-card-body p { color: var(--ink-light); font-size: 0.88rem; }

/* EVENTS -- VERTICAL LAYOUT */
.event-nav {
  display: flex; gap: 0; border: 1px solid rgba(30,30,28,0.1); border-radius: 8px;
  overflow: hidden; margin-bottom: 3rem; width: fit-content;
}
.event-nav button {
  background: transparent; border: none; padding: 0.7rem 1.5rem;
  font-family: var(--font-sans); font-size: 0.85rem; font-weight: 500;
  color: var(--ink-light); cursor: pointer; transition: all 0.2s;
  border-right: 1px solid rgba(30,30,28,0.1);
}
.event-nav button:last-child { border-right: none; }
.event-nav button:hover { background: rgba(30,30,28,0.03); }
.event-nav button.active { background: var(--ink); color: var(--stone); }

.ev-panel { display: none; animation: fadeIn 0.3s ease; }
.ev-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.ev-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start; }
.ev-info h3 { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 0.5rem; }
.ev-when {
  display: inline-block; background: rgba(160, 82, 45, 0.1);
  color: var(--terra); padding: 0.3rem 0.8rem; border-radius: 4px;
  font-size: 0.78rem; font-weight: 600; margin-bottom: 1rem;
}
.ev-info p { color: var(--ink-light); line-height: 1.8; margin-bottom: 1rem; }
.ev-list {
  list-style: none; columns: 2; gap: 0.5rem; margin: 1.5rem 0;
}
.ev-list li {
  color: var(--ink-light); font-size: 0.9rem; padding: 0.35rem 0 0.35rem 1.3rem;
  position: relative; break-inside: avoid;
}
.ev-list li::before {
  content: ''; position: absolute; left: 0; top: 0.65rem;
  width: 7px; height: 7px; border-radius: 50%; background: var(--terra);
}

/* FORMS -- LIGHT */
.ev-form {
  background: var(--stone); border: 1px solid rgba(30,30,28,0.06);
  border-radius: 10px; padding: 2rem;
}
.ev-form h4 { font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 1.5rem; }
.ff { margin-bottom: 1rem; }
.ff label {
  display: block; font-size: 0.75rem; font-weight: 600;
  color: var(--ink-faint); margin-bottom: 0.3rem;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.ff input, .ff select, .ff textarea {
  width: 100%; padding: 0.7rem 0.9rem; border-radius: 6px;
  border: 1px solid rgba(30,30,28,0.12); background: var(--parchment);
  color: var(--ink); font-family: var(--font-sans); font-size: 0.9rem;
}
.ff input:focus, .ff select:focus, .ff textarea:focus { outline: none; border-color: var(--terra); }
.ff-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.ff-chk { display: flex; align-items: center; gap: 0.5rem; }
.ff-chk input { width: auto; accent-color: var(--terra); }
.ff-chk label { text-transform: none; font-size: 0.88rem; color: var(--ink-light); margin: 0; }

/* WEDDINGS */
.wed-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.wed-card {
  border: 1px solid rgba(30,30,28,0.08); border-radius: 10px;
  padding: 2rem; background: var(--parchment); transition: all 0.25s;
}
.wed-card:hover { box-shadow: 0 4px 20px rgba(30,30,28,0.06); }
.wed-card-num {
  font-family: var(--font-serif); font-size: 2rem; color: var(--terra);
  opacity: 0.4; margin-bottom: 1rem;
}
.wed-card h3 { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 0.5rem; }
.wed-card p { color: var(--ink-light); font-size: 0.88rem; line-height: 1.7; }

/* CALENDAR -- TABLE STYLE */
.cal-table { width: 100%; border-collapse: separate; border-spacing: 0 0.75rem; }
.cal-table a {
  display: contents; text-decoration: none; color: inherit; cursor: pointer;
}
.cal-tr {
  display: grid; grid-template-columns: 80px 1fr auto auto;
  gap: 1.5rem; align-items: center; padding: 1.25rem 1.5rem;
  background: var(--parchment); border: 1px solid rgba(30,30,28,0.06);
  border-radius: 8px; transition: all 0.2s;
}
.cal-tr:hover { border-color: var(--terra); box-shadow: 0 2px 12px rgba(30,30,28,0.06); }
.cal-mo { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--terra); }
.cal-dy { font-family: var(--font-serif); font-size: 1.8rem; line-height: 1; }
.cal-title { font-weight: 600; font-size: 0.95rem; }
.cal-desc { color: var(--ink-faint); font-size: 0.82rem; }
.cal-badge {
  font-size: 0.65rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 0.25rem 0.65rem; border-radius: 3px;
}
.cal-badge.cb-music { background: rgba(74, 110, 138, 0.12); color: var(--river); }
.cal-badge.cb-vets { background: rgba(58, 95, 64, 0.12); color: var(--pine); }
.cal-badge.cb-kids { background: rgba(204, 153, 51, 0.12); color: var(--honey); }
.cal-badge.cb-private { background: rgba(160, 82, 45, 0.1); color: var(--terra); }
.cal-arrow { color: var(--ink-faint); font-size: 1rem; }

/* CONTACT */
.contact-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.contact-card { text-align: center; }
.contact-card h4 { font-family: var(--font-serif); font-size: 1rem; margin-bottom: 0.5rem; }
.contact-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.6; }
.contact-card a { color: var(--honey); text-decoration: none; }
.bg-ink .contact-card p { color: rgba(247,244,239,0.6); }

.footer {
  background: var(--ink); color: rgba(247,244,239,0.35);
  text-align: center; padding: 1.5rem; font-size: 0.8rem;
  border-top: 1px solid rgba(247,244,239,0.06);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 68px; left: 0; right: 0; background: rgba(253,251,247,0.98);
    padding: 1.5rem 2rem 2rem; gap: 1rem;
  }
  .hero-layout, .about-split, .ev-grid { grid-template-columns: 1fr; }
  .stay-grid, .wed-row { grid-template-columns: 1fr; }
  .contact-row { grid-template-columns: 1fr; }
  .ev-list { columns: 1; }
  .ff-row { grid-template-columns: 1fr; }
  .cal-tr { grid-template-columns: 60px 1fr; gap: 0.75rem; }
  .cal-badge, .cal-arrow { display: none; }
  .event-nav { flex-wrap: wrap; width: 100%; }
}