:root {
  --ivory: #F7F1E7;
  --ivory-deep: #EFE5D7;
  --olive: #4B4A2C;
  --olive-dark: #36351F;
  --line: rgba(75, 74, 44, 0.32);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--olive);
  font-family: "Bodoni Moda", Georgia, serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.45), transparent 28%),
    radial-gradient(circle at 80% 75%, rgba(75,74,44,.04), transparent 34%);
}

main {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px 48px;
}

.monogram {
  width: 112px;
  height: 82px;
  border: 1px solid rgba(75, 74, 44, 0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 38px;
  position: relative;
}

.monogram::before,
.monogram::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 1px;
  background: rgba(75, 74, 44, 0.42);
  top: 50%;
}

.monogram::before { left: -25px; }
.monogram::after { right: -25px; }

.monogram-inner {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: "Italianno", cursive;
  font-size: 37px;
  transform: translateY(2px);
}

.monogram-inner .amp {
  font-size: 21px;
  opacity: 0.8;
  margin: 0 -2px;
}

.eyebrow,
.small-label,
.date,
.site-address,
footer p {
  letter-spacing: .24em;
  text-transform: uppercase;
  font-size: 12px;
}

.eyebrow {
  margin: 0 0 28px;
}

h1 {
  margin: 0;
  line-height: .86;
  font-weight: 400;
}

.script {
  display: block;
  font-family: "Italianno", cursive;
  font-size: clamp(64px, 15vw, 118px);
  font-weight: 400;
  transform: rotate(-2deg);
  margin-bottom: -6px;
}

.jones {
  display: block;
  font-size: clamp(58px, 13vw, 112px);
  letter-spacing: .18em;
  margin-left: .18em;
}

.rule {
  width: 58px;
  height: 1px;
  background: var(--olive);
  margin: 38px auto 24px;
  opacity: 0.65;
}

.date {
  margin: 0;
  font-size: 13px;
}

.tagline {
  font-family: "Italianno", cursive;
  font-size: 39px;
  margin: 21px 0 34px;
}

.details-link {
  color: var(--olive);
  text-decoration: none;
  border-bottom: 1px solid var(--olive);
  padding-bottom: 5px;
  letter-spacing: .2em;
  font-size: 11px;
}

.details {
  padding: 100px 24px;
  display: grid;
  place-items: center;
}

.details-card {
  width: min(720px, 100%);
  border: 1px solid var(--line);
  padding: 70px 48px;
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
}

.details-card h2 {
  font-weight: 400;
  font-size: clamp(40px, 8vw, 70px);
  margin: 19px 0 24px;
}

.details-copy {
  max-width: 510px;
  margin: 0 auto;
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(54, 53, 31, 0.88);
}

.site-address {
  margin: 40px 0 0;
  font-size: 11px;
}

.countdown-section {
  padding: 50px 24px 120px;
  text-align: center;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 8vw, 76px);
  margin-top: 32px;
}

.countdown div {
  min-width: 80px;
}

.countdown strong {
  display: block;
  font-weight: 400;
  font-size: clamp(42px, 8vw, 72px);
}

.countdown span {
  display: block;
  font-size: 9px;
  letter-spacing: .22em;
  margin-top: 8px;
}

footer {
  text-align: center;
  padding: 54px 24px 66px;
  border-top: 1px solid var(--line);
}

.footer-monogram {
  font-family: "Italianno", cursive;
  font-size: 34px;
  margin-bottom: 10px;
}

footer p {
  font-size: 9px;
  margin: 0;
}

@media (max-width: 560px) {
  .hero {
    padding-top: 42px;
  }

  .details-card {
    padding: 52px 25px;
  }

  .countdown {
    gap: 18px;
  }

  .countdown div {
    min-width: 68px;
  }
}
