:root {
  --color-paper: #f7f0e4;
  --color-paper-deep: #eadfca;
  --color-ink: #446039;
  --color-muted: #816f50;
  --color-gold: #a98737;
  --color-gold-soft: rgba(169, 135, 55, 0.34);
  --color-leaf: #6f8d54;
  --color-cream: #fffaf0;
  --shadow-soft: 0 26px 80px rgba(99, 75, 35, 0.13);
  font-family:
    Georgia, "Times New Roman", Times, serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--color-ink);
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.74), transparent 17rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(234, 223, 202, 0.5)),
    var(--color-paper);
}

.page-shell {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px 20px;
  overflow: hidden;
}

.hero {
  position: relative;
  width: min(100%, 780px);
  padding: clamp(38px, 8vw, 78px) clamp(28px, 7vw, 72px);
  text-align: center;
  background:
    linear-gradient(rgba(255, 250, 240, 0.76), rgba(255, 250, 240, 0.62)),
    var(--color-cream);
  border: 1px solid var(--color-gold-soft);
  border-radius: 2px;
  box-shadow: var(--shadow-soft);
}

.hero::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid var(--color-gold-soft);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  top: 92px;
  left: 50%;
  width: min(58vw, 470px);
  height: min(58vw, 470px);
  content: "";
  border: 2px solid rgba(169, 135, 55, 0.72);
  border-top-width: 3px;
  transform: translateX(-50%) rotate(45deg);
  transform-origin: center;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  pointer-events: none;
}

.eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: var(--color-gold);
  font-family:
    "Times New Roman", Times, serif;
  font-size: clamp(0.92rem, 2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.48em;
  text-transform: uppercase;
}

.subline {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: var(--color-ink);
  font-size: clamp(1rem, 2.4vw, 1.32rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1 {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  color: var(--color-ink);
  font-size: clamp(3.8rem, 10vw, 7.6rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
}

.divider {
  position: relative;
  z-index: 1;
  width: min(260px, 58%);
  height: 1px;
  margin: 36px auto 0;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.divider::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  content: "";
  background: var(--color-gold);
  transform: translate(-50%, -50%) rotate(45deg);
}

.intro {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 34px auto 0;
  color: var(--color-muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.6;
}

.details {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 38px;
}

.details span {
  padding: 10px 16px;
  border: 1px solid rgba(169, 135, 55, 0.42);
  border-radius: 999px;
  color: var(--color-ink);
  background: rgba(255, 250, 240, 0.78);
  font-size: 1rem;
}

.martini-mark {
  position: absolute;
  top: 42px;
  right: clamp(30px, 8vw, 78px);
  z-index: 2;
  width: 92px;
  height: 132px;
  border-top: 2px solid var(--color-gold);
  transform: rotate(-34deg);
}

.martini-mark::before {
  position: absolute;
  top: 0;
  right: 42px;
  width: 2px;
  height: 130px;
  content: "";
  background: var(--color-gold);
}

.martini-mark::after {
  position: absolute;
  top: -7px;
  right: 36px;
  width: 15px;
  height: 15px;
  content: "";
  background: radial-gradient(circle at 35% 30%, #f6df81, var(--color-gold));
  border-radius: 50%;
}

.olive {
  position: absolute;
  top: 37px;
  right: 21px;
  width: 48px;
  height: 48px;
  background: radial-gradient(circle at 36% 28%, #9dae63, #56713b 72%);
  border-radius: 50%;
  box-shadow: 0 9px 20px rgba(61, 75, 38, 0.26);
}

.corner {
  position: absolute;
  width: 108px;
  height: 108px;
  border-color: rgba(169, 135, 55, 0.7);
  pointer-events: none;
}

.corner-top-left {
  top: 20px;
  left: 20px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 42px;
}

.corner-top-right {
  top: 20px;
  right: 20px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 42px;
}

.floral {
  position: absolute;
  bottom: -18px;
  width: 210px;
  height: 230px;
  opacity: 0.9;
  pointer-events: none;
}

.floral::before,
.floral::after {
  position: absolute;
  content: "";
  border-radius: 999px 999px 999px 0;
  background: var(--color-leaf);
  box-shadow:
    34px -38px 0 -9px #86a469,
    76px -16px 0 -10px #5f7d49,
    104px -60px 0 -12px #8ba96f;
}

.floral::before {
  bottom: 40px;
  left: 38px;
  width: 58px;
  height: 92px;
  transform: rotate(-37deg);
}

.floral::after {
  right: 18px;
  bottom: 70px;
  width: 52px;
  height: 82px;
  transform: rotate(34deg);
}

.floral-left {
  left: 16px;
}

.floral-right {
  right: 16px;
  transform: scaleX(-1);
}

@media (max-width: 520px) {
  .page-shell {
    align-items: stretch;
    padding: 18px;
  }

  .hero {
    align-content: center;
    min-height: calc(100vh - 36px);
    padding: 54px 24px 34px;
  }

  .hero::before {
    inset: 12px;
  }

  .hero::after {
    top: 98px;
    width: 300px;
    height: 300px;
  }

  .eyebrow {
    letter-spacing: 0.3em;
  }

  .subline {
    letter-spacing: 0.16em;
  }

  .martini-mark {
    top: 28px;
    right: 24px;
    width: 58px;
    height: 96px;
  }

  .martini-mark::before {
    right: 27px;
    height: 94px;
  }

  .martini-mark::after {
    right: 21px;
  }

  .olive {
    top: 28px;
    right: 11px;
    width: 34px;
    height: 34px;
  }

  .details {
    flex-direction: column;
  }

  .floral {
    width: 130px;
    height: 150px;
    opacity: 0.72;
  }
}
