:root {
  --ivory: #faf6ee;
  --deep-green: #2f3d2f;
  --gold: #b08d57;
  --text: #3a352c;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Playfair Display', Georgia, serif;
  background: var(--ivory);
  color: var(--text);
  line-height: 1.7;
}
.site-nav { position: sticky; top: 0; background: var(--ivory); border-bottom: 1px solid var(--gold); z-index: 10; }
.nav-inner { max-width: 900px; margin: 0 auto; padding: 1rem 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.nav-names { font-weight: 700; letter-spacing: 0.05em; }
.site-nav nav a { color: var(--deep-green); text-decoration: none; margin-left: 1.5rem; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; }
.hero { position: relative; height: 80vh; min-height: 480px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; max-width: none; margin: 0; padding: 0; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.75); }
.hero-content { position: relative; color: #fff; }
.eyebrow { letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 0.5rem; }
.hero h1 { font-size: 4rem; font-weight: 400; margin-bottom: 0.75rem; }
.hero-date { font-size: 1.1rem; }
section { max-width: 800px; margin: 0 auto; padding: 5rem 1.5rem; text-align: center; }
section h2 { font-size: 2rem; font-weight: 400; color: var(--deep-green); margin-bottom: 1.5rem; position: relative; display: inline-block; }
section h2::after { content: ""; display: block; width: 60px; height: 2px; background: var(--gold); margin: 0.75rem auto 0; }
.story p { max-width: 600px; margin: 0 auto 1rem; }
.detail-cards { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.detail-card { border: 1px solid var(--gold); padding: 2rem; flex: 1 1 260px; }
.detail-card h3 { color: var(--gold); font-weight: 400; margin-bottom: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase; font-size: 1rem; }
.gallery { max-width: 1100px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.gallery-grid img { width: 100%; height: 260px; object-fit: cover; border: 4px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
form { display: flex; flex-direction: column; gap: 1.25rem; text-align: left; margin-top: 2rem; }
label { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.9rem; }
input, select, textarea { font-family: inherit; padding: 0.6rem; border: 1px solid #ccc; background: #fff; }
button { align-self: center; padding: 0.75rem 2rem; background: var(--deep-green); color: #fff; border: none; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; margin-top: 0.5rem; }
.mockup-note { font-size: 0.8rem; color: #888; margin-top: 1rem; font-style: italic; }
.registry-link { display: inline-block; margin-top: 1rem; padding: 0.6rem 1.5rem; border: 1px solid var(--gold); color: var(--deep-green); text-decoration: none; letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.85rem; }
.site-footer { text-align: center; padding: 2rem; color: var(--gold); border-top: 1px solid var(--gold); font-size: 0.9rem; letter-spacing: 0.05em; }
@media (max-width: 640px) {
  .hero h1 { font-size: 2.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .site-nav nav a { margin-left: 0.75rem; font-size: 0.75rem; }
}
