:root {
  --cream: #f6f0e6;
  --paper: #fffaf3;
  --ink: #2c211c;
  --muted: #7a6a5f;
  --gold: #9c7548;
  --gold-2: #c4a06a;
  --line: rgba(156, 117, 72, 0.22);
  --max: 1080px;
  --nav: 72px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 20;
  height: var(--nav);
  display: flex; align-items: center;
  background: rgba(246, 240, 230, .78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  letter-spacing: .04em;
}
.nav-links { display: flex; gap: 22px; font-size: 14px; color: var(--muted); }
.nav-links a:hover { color: var(--gold); }
.burger { display: none; background: none; border: 0; font-size: 22px; cursor: pointer; }

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  background: var(--ink);
  color: var(--cream);
}
.hero-photo {
  min-height: 100svh;
  background: #1a1411 url("../images/trouw-auto.jpg") center 20% / cover no-repeat;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 48px 64px;
}
.kicker {
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--gold-2);
  margin-bottom: 16px;
}
h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(48px, 8vw, 86px);
  line-height: .92;
  letter-spacing: -0.03em;
}
.hero-copy p { margin-top: 20px; max-width: 420px; color: #d8cbb8; }
.hero-meta { margin-top: 36px; display: flex; gap: 28px; flex-wrap: wrap; color: var(--gold-2); font-size: 13px; letter-spacing: .08em; }

section { padding: 88px 0; }
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 500;
  line-height: 1.1;
  margin: 10px 0 18px;
}
.intro { max-width: 640px; color: var(--muted); }

.story {
  background: var(--paper) url("../images/linnen.jpg") center / cover;
}
.story .wrap { background: rgba(255,250,243,.88); padding: 12px 0; }

.moments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 40px;
}
.moment {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px 24px;
}
.moment time {
  display: block;
  color: var(--gold);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 8px;
}
.moment h3 { font-family: "Cormorant Garamond", serif; font-size: 26px; font-weight: 500; margin-bottom: 8px; }
.moment p { color: var(--muted); font-size: 15px; }

.wedding {
  padding: 0;
}
.wedding img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  object-position: center 30%;
}
.caption {
  text-align: center;
  padding: 22px 20px 8px;
  color: var(--muted);
  font-size: 14px;
}

.family { background: #efe6d8; }
.family-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.family img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 4px;
}
.kids { display: grid; gap: 16px; margin-top: 24px; }
.kid {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.kid strong { display: block; font-family: "Cormorant Garamond", serif; font-size: 24px; font-weight: 500; }
.kid span { color: var(--muted); font-size: 14px; }

.album {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.album figure { margin: 0; }
.album img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 4px;
}
.album .wide { grid-column: 1 / -1; }
.album .wide img { height: 460px; object-position: center 40%; }
.album figcaption {
  padding: 10px 2px 0;
  color: var(--muted);
  font-size: 13px;
}

footer {
  background: var(--ink);
  color: #d8cbb8;
  padding: 28px 0 36px;
  font-size: 13px;
}
.foot { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
footer a { color: var(--gold-2); }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-photo { min-height: 62svh; }
  .hero-copy { padding: 40px 24px 48px; }
  .moments, .family-grid, .album { grid-template-columns: 1fr; }
  .album img, .album .wide img { height: 280px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: var(--nav); left: 0; right: 0;
    background: var(--cream); padding: 16px 24px 22px;
    border-bottom: 1px solid var(--line);
  }
  .burger { display: block; }
}
