:root {
  --bg: #f8f1e8;
  --paper: #fffaf3;
  --text: #2d2520;
  --muted: #75685f;
  --gold: #a47a45;
  --gold-dark: #73522d;
  --line: rgba(45, 37, 32, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(25, 18, 14, 0.48), rgba(25, 18, 14, 0.58)),
    url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1800&q=80') center/cover;
  color: white;
  display: flex;
  flex-direction: column;
}

.nav {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  color: white;
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
}

.language-switcher {
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  padding: 6px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.language-switcher button {
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.language-switcher button.active {
  background: white;
  color: var(--text);
}

.hero-content {
  width: min(920px, calc(100% - 40px));
  margin: auto;
  text-align: center;
  padding-bottom: 80px;
}

.eyebrow, .section-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}

.hero .eyebrow { color: #f4d5a2; }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  margin: 0;
}

h1 {
  font-size: clamp(72px, 12vw, 150px);
  line-height: 0.9;
  margin: 20px 0;
}

h1 span { color: #f4d5a2; }
h2 { font-size: clamp(42px, 6vw, 72px); line-height: 1; }
h3 { font-size: 30px; }

.hero-subtitle {
  max-width: 680px;
  margin: 0 auto 24px;
  font-size: 20px;
  line-height: 1.6;
}

.hero-date {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  font-weight: 600;
}

.primary-button, .secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.primary-button {
  background: var(--gold);
  color: white;
}

.secondary-button {
  border: 1px solid var(--gold);
  color: var(--gold-dark);
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.intro {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.08;
}

.grid-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.card, .detail-card, .location-box, .rsvp {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(83, 56, 32, 0.08);
}

.card {
  padding: 42px;
  font-size: 20px;
  line-height: 1.8;
  color: var(--muted);
}

.details { text-align: center; }
.details-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.detail-card { padding: 32px; }
.detail-card span {
  display: block;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 36px;
}
.detail-card p, .location p, .rsvp p, .timeline p {
  color: var(--muted);
  line-height: 1.7;
}

.location-box {
  padding: 64px;
  text-align: center;
}
.location-box p { max-width: 620px; margin: 24px auto; }

.schedule { border-top: 1px solid var(--line); }
.timeline {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.timeline div {
  padding: 24px;
  border-left: 2px solid var(--gold);
  background: rgba(255,255,255,0.35);
}

.rsvp {
  text-align: center;
  padding: 72px 32px;
}
.rsvp p { max-width: 640px; margin: 24px auto 32px; }

footer {
  padding: 48px 20px;
  text-align: center;
  color: var(--muted);
}
footer p:first-child {
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  margin: 0 0 8px;
}

@media (max-width: 800px) {
  .nav { width: calc(100% - 28px); }
  .brand { font-size: 24px; }
  .hero-content { width: calc(100% - 28px); }
  .section { width: calc(100% - 28px); padding: 70px 0; }
  .grid-section, .details-grid, .timeline { grid-template-columns: 1fr; }
  .location-box { padding: 42px 24px; }
  .language-switcher button { padding: 7px 10px; }
}
