@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:wght@500;600&display=swap');

:root {
  --ink: #2f3130;
  --muted: #707572;
  --paper: #f8f6f1;
  --white: #fffdf9;
  --accent: #66756a;
  --accent-dark: #4e5c52;
  --line: #dedbd3;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.7;
}

.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(rgba(30,34,31,.38), rgba(30,34,31,.48)),
    url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=2200&q=85")
    center / cover;
  color: white;
}

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

.brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: .9rem;
}

.hero-content {
  flex: 1;
  width: min(900px, calc(100% - 40px));
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 8vh;
}

.eyebrow {
  letter-spacing: .22em;
  font-size: .75rem;
  font-weight: 600;
  margin: 0 0 14px;
}

.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 1;
  font-weight: 500;
  margin: 0;
}

.date {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
  margin: 28px 0 0;
}

.location {
  margin: 2px 0 28px;
}

.button {
  display: inline-block;
  border: 1px solid white;
  background: white;
  color: var(--ink);
  padding: 12px 22px;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
}

.section {
  padding: 100px 20px;
}

.section.alt {
  background: var(--white);
}

.narrow {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 500;
  margin: 0 0 24px;
}

.section-grid {
  width: min(1000px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.card {
  border: 1px solid var(--line);
  padding: 42px;
  text-align: center;
  background: var(--paper);
}

.card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  margin-top: 0;
}

.muted { color: var(--muted); }

.disabled {
  border: 1px solid var(--line);
  color: var(--muted);
  cursor: not-allowed;
}

footer {
  padding: 35px 20px;
  text-align: center;
  color: var(--muted);
  font-size: .85rem;
}

@media (max-width: 700px) {
  .nav { align-items: flex-start; }
  .nav-links { display: none; }
  .hero { min-height: 80vh; }
  .section { padding: 75px 20px; }
  .section-grid { grid-template-columns: 1fr; gap: 35px; }
}
