@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;700&family=Great+Vibes&display=swap');

:root {
  --navy: #061c3b;
  --navy2: #001128;
  --gold: #c99a42;
  --cream: #fffaf1;
  --text: #0b1b34;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 72px;
  background: linear-gradient(90deg, var(--navy2), var(--navy));
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
}

.brand {
  color: var(--gold);
  font-size: 34px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 28px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

nav a:hover { color: var(--gold); }

.hero {
  min-height: 680px;
  background:
    linear-gradient(90deg, rgba(255,250,241,.95) 0%, rgba(255,250,241,.75) 42%, rgba(6,28,59,.05) 100%),
    url('assets/homepage-mockup.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 7%;
}

.hero-overlay {
  max-width: 620px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.hero h1 {
  font-size: clamp(58px, 9vw, 118px);
  line-height: .85;
  margin: 20px 0;
  color: var(--navy);
}

.hero h1 span {
  color: var(--gold);
  font-size: 1.2em;
}

.hero h1 sup {
  font-size: .22em;
}

.hero h1 em {
  font-family: "Great Vibes", cursive;
  color: var(--gold);
  font-style: normal;
  font-size: .7em;
  font-weight: 400;
}

.date, .ship {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ship strong { font-size: 34px; }

.button, button {
  display: inline-block;
  background: linear-gradient(135deg, #ad7e28, var(--gold));
  color: white;
  padding: 16px 34px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}

.statement {
  background: linear-gradient(90deg, var(--navy2), var(--navy));
  color: white;
  text-align: center;
  padding: 55px 20px;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.statement div { color: var(--gold); font-size: 34px; }
.statement h2 { color: var(--gold); font-size: 38px; margin: 10px 0; }
.statement em {
  font-family: "Great Vibes", cursive;
  color: white;
  font-style: normal;
  font-size: 1.35em;
  font-weight: 400;
}
.statement p { text-transform: uppercase; letter-spacing: 3px; }

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding: 60px 7%;
}

.card {
  background: white;
  padding: 38px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.card h2, .rsvp h2, .highlights h2, .page-hero h1 {
  color: var(--navy);
  font-size: 34px;
  margin-top: 0;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.countdown div {
  background: var(--navy);
  color: white;
  border-radius: 10px;
  padding: 20px 10px;
  text-align: center;
}

.countdown span {
  display: block;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
}

.countdown small {
  text-transform: uppercase;
  font-size: 12px;
}

.script {
  font-family: "Great Vibes", cursive;
  color: var(--gold);
  font-size: 32px;
}

.highlights {
  background: linear-gradient(90deg, var(--navy2), var(--navy));
  color: white;
  text-align: center;
  padding: 55px 7%;
}

.highlights h2 { color: var(--gold); }
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.highlight-grid span {
  font-size: 38px;
}
.highlight-grid h3 {
  color: white;
  text-transform: uppercase;
  font-size: 17px;
}

.rsvp {
  padding: 60px 7%;
  max-width: 900px;
  margin: 0 auto;
}

form {
  display: grid;
  gap: 18px;
}

label {
  font-weight: 700;
}

input, select, textarea {
  width: 100%;
  margin-top: 7px;
  padding: 14px;
  border: 1px solid #d7d7d7;
  border-radius: 7px;
  font: inherit;
}

.note {
  font-size: 13px;
  color: #667;
  margin-top: 20px;
}

.page-hero {
  background: linear-gradient(90deg, var(--navy2), var(--navy));
  color: white;
  text-align: center;
  padding: 90px 20px;
}

.page-hero h1 {
  color: var(--gold);
  font-size: 56px;
}

.content-page {
  padding: 60px 7%;
}

.wide {
  max-width: 950px;
  margin: auto;
}

.detail-box {
  border-left: 4px solid var(--gold);
  padding: 18px 22px;
  margin: 22px 0;
  background: #fffaf1;
}

footer {
  text-align: center;
  background: var(--navy2);
  color: white;
  padding: 28px;
}

.detail-box h3 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #061c3b;
}

@media (max-width: 850px) {
  .site-header {
    height: auto;
    padding: 18px 20px;
    flex-direction: column;
    gap: 12px;
  }
  nav a {
    margin: 0 8px;
    font-size: 12px;
  }
  .hero {
    min-height: 560px;
    padding: 35px 25px;
    background-position: center;
  }
  .two-column, .highlight-grid {
    grid-template-columns: 1fr;
  }
  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }
}
