:root {
  --navy: #07182b;
  --navy2: #0d2741;
  --gold: #ddb354;
  --cream: #f5f0e6;
  --white: #ffffff;
  --ink: #0b2037;
  --line: rgba(221,179,84,.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

h1, h2, h3, blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.site-header {
  min-height: 100px;
  padding: 18px 6%;
  background: var(--navy);
  display: flex;
  align-items: center;
  gap: 32px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.brand {
  margin-right: auto;
  display: block;
}

.brand img {
  display: block;
  width: 210px;
  max-height: 75px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 25px;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.button {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 17px 28px;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid var(--gold);
  border-radius: 3px;
}

.button.outline {
  background: transparent;
  color: white;
}

.button.small {
  padding: 14px 22px;
  white-space: nowrap;
}

.hero {
  min-height: 690px;
  padding: 100px 7%;
  display: flex;
  align-items: center;
  color: white;
  background:
    linear-gradient(90deg, rgba(7,24,43,.97), rgba(7,24,43,.72)),
    url("ceremony-venue.jpeg") center/cover no-repeat;
}

.hero-inner {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 25px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(58px, 8vw, 108px);
  line-height: .92;
  letter-spacing: -3px;
}

.lead {
  max-width: 720px;
  margin: 35px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.55;
}

.actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.intro {
  padding: 120px 7%;
  text-align: center;
  max-width: 1050px;
  margin: auto;
}

.intro h2 {
  margin: 0 0 35px;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 1.05;
}

.intro > p:last-child {
  max-width: 850px;
  margin: auto;
  font-size: 22px;
  line-height: 1.7;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
  color: white;
}

.cards article {
  min-height: 580px;
  padding: 90px 8%;
  border-right: 1px solid rgba(255,255,255,.18);
}

.cards article:last-child {
  border-right: 0;
}

.cards span {
  color: var(--gold);
  font-size: 18px;
}

.cards h2 {
  font-size: 65px;
  margin: 60px 0 25px;
  line-height: 1;
}

.cards p {
  max-width: 550px;
  font-size: 21px;
  line-height: 1.65;
}

.cards a {
  color: var(--gold);
  font-size: 19px;
}

.split {
  padding: 120px 7%;
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 90px;
  align-items: center;
}

.split h2 {
  margin: 0 0 35px;
  font-size: clamp(55px, 7vw, 85px);
  line-height: 1;
}

.split div > p:not(.eyebrow) {
  font-size: 21px;
  line-height: 1.75;
}

.split aside {
  border-left: 2px solid var(--line);
  padding-left: 40px;
}

.split aside p {
  margin: 0 0 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.quote {
  padding: 130px 7%;
  background: white;
  text-align: center;
}

.quote blockquote {
  max-width: 1000px;
  margin: 45px auto 35px;
  font-size: clamp(45px, 6vw, 75px);
  line-height: 1.08;
  font-style: italic;
}

.quote > p:last-child {
  font-size: 20px;
}

.faq {
  max-width: 1000px;
  margin: auto;
  padding: 120px 7%;
}

.faq h2 {
  margin: 0 0 50px;
  font-size: clamp(55px, 7vw, 80px);
}

details {
  border-top: 1px solid #c8b998;
  padding: 25px 0;
}

details:last-child {
  border-bottom: 1px solid #c8b998;
}

summary {
  cursor: pointer;
  font-size: 21px;
  font-weight: 800;
}

details p {
  font-size: 18px;
  line-height: 1.65;
}

.contact {
  padding: 120px 7%;
  text-align: center;
  background: var(--navy2);
  color: white;
}

.contact h2 {
  max-width: 900px;
  margin: 0 auto 35px;
  font-size: clamp(55px, 8vw, 90px);
  line-height: 1;
}

.contact > p:not(.eyebrow) {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 20px;
  line-height: 1.7;
}

footer {
  padding: 45px 7%;
  background: #04111f;
  color: #ddd;
  text-align: center;
}

footer img {
  width: 190px;
  max-height: 75px;
  object-fit: contain;
}

@media (max-width: 800px) {
  .site-header {
    min-height: 92px;
    padding: 14px 20px;
  }

  .brand img {
    width: 170px;
    max-height: 65px;
  }

  nav {
    display: none;
  }

  .button.small {
    padding: 13px 17px;
    font-size: 14px;
  }

  .hero {
    min-height: 650px;
    padding: 80px 28px;
    background:
      linear-gradient(rgba(7,24,43,.82), rgba(7,24,43,.94)),
      url("ceremony-venue.jpeg") center/cover no-repeat;
  }

  .hero h1 {
    font-size: 58px;
    letter-spacing: -2px;
  }

  .lead {
    font-size: 22px;
  }

  .actions {
    display: grid;
  }

  .actions .button {
    text-align: center;
  }

  .intro {
    padding: 90px 28px;
  }

  .intro h2 {
    font-size: 50px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .cards article {
    min-height: 500px;
    padding: 75px 32px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
  }

  .cards h2 {
    font-size: 55px;
  }

  .split {
    padding: 90px 28px;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .split h2 {
    font-size: 55px;
  }

  .quote {
    padding: 100px 28px;
  }

  .quote blockquote {
    font-size: 43px;
  }

  .faq {
    padding: 90px 28px;
  }

  .faq h2 {
    font-size: 52px;
  }

  .contact {
    padding: 100px 28px;
  }

  .contact h2 {
    font-size: 55px;
  }
}
