:root {
  --ink: #071120;
  --navy: #0b1c35;
  --navy-soft: #142a4a;
  --gold: #d7af45;
  --cream: #f5f0e8;
  --white: #ffffff;
  --body: #243247;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--body);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  min-height: 82px;
  padding: 13px 5%;
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header img {
  display: block;
  height: 54px;
  max-width: 220px;
  object-fit: contain;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 22px;
}

.site-nav a {
  color: var(--white);
  font-size: .76rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  align-items: flex-end;
  background-position: center;
  background-size: cover;
  color: var(--white);
  display: flex;
  min-height: 75vh;
  padding: 120px 7% 80px;
}

.hero.weddings {
  background-image: linear-gradient(90deg, rgba(7,17,32,.96), rgba(7,17,32,.38)), url("images/afterdarkwedding.jpg");
}

.hero.wol {
  background-image: linear-gradient(90deg, rgba(7,17,32,.96), rgba(7,17,32,.42)), url("images/WOL.jpg");
}

.hero-inner,
.content,
.split,
.footer-inner {
  margin: 0 auto;
  max-width: 1120px;
  width: 100%;
}

.eyebrow {
  color: var(--gold);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .14em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

h1 {
  color: var(--white);
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  max-width: 880px;
}

.hero-copy {
  color: #e2e8f0;
  font-size: 1.24rem;
  margin-top: 24px;
  max-width: 760px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  background: var(--gold);
  color: var(--ink);
  display: inline-block;
  font-family: Montserrat, Arial, sans-serif;
  font-size: .8rem;
  font-weight: 900;
  padding: 16px 25px;
  text-decoration: none;
  text-transform: uppercase;
}

.button.alt {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 14px 23px;
}

.section {
  background: var(--cream);
  padding: 80px 5%;
}

.section.dark {
  background: var(--navy);
  color: var(--white);
}

h2 {
  color: var(--ink);
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 28px;
}

.dark h2,
.dark h3 {
  color: var(--white);
}

h3 {
  color: var(--navy);
  font-size: 1.18rem;
  margin-bottom: 10px;
}

p,
li {
  font-size: 1.08rem;
}

p + p {
  margin-top: 20px;
}

.split {
  display: grid;
  gap: 55px;
  grid-template-columns: 1.1fr .9fr;
}

.panel {
  background: var(--white);
  border-top: 5px solid var(--gold);
  box-shadow: 0 15px 35px rgba(7,17,32,.1);
  padding: 32px;
}

.panel ul {
  padding-left: 20px;
}

.panel li + li {
  margin-top: 12px;
}

.cards {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.card {
  background: var(--white);
  border-top: 5px solid var(--gold);
  color: var(--body);
  padding: 30px;
}

.faq {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.faq-item {
  background: var(--white);
  border-left: 5px solid var(--gold);
  color: var(--body);
  padding: 28px;
}

.cta {
  background: var(--gold);
  color: var(--ink);
  text-align: center;
}

.cta p {
  margin: 0 auto;
  max-width: 760px;
}

.cta .actions {
  justify-content: center;
}

.cta .button {
  background: var(--ink);
  color: var(--white);
}

.site-footer {
  background: var(--ink);
  color: #b8c3d1;
  padding: 42px 5%;
  text-align: center;
}

.site-footer p {
  font-size: .9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 22px;
}

.footer-links a {
  color: var(--white);
}

@media (max-width: 820px) {
  .site-header {
    justify-content: center;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .section {
    padding: 70px 22px;
  }

  .hero {
    min-height: 68vh;
  }

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