:root {
  --black: #080808;
  --near-black: #0d0c0a;
  --ivory: #f3efe5;
  --gold: #a98745;
  --soft-gold: #c1a46e;
  --soft-pink: #d9a9ad;
  --muted: #aaa69e;
  --line: #211e19;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ivory);
  background: var(--black);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; }
.site-header {
  height: 76px;
  padding: 0 clamp(24px, 5vw, 74px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.04em;
  text-decoration: none;
}
sup { font-size: .24em; color: var(--gold); vertical-align: top; position: relative; top: .25em; }
.header-link {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .22em;
  text-decoration: none;
  text-transform: uppercase;
}
.hero {
  min-height: 590px;
  padding: 108px 24px 76px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at center, #18140e 0, #0c0b09 42%, var(--black) 76%);
}
.eyebrow {
  margin: 0 0 23px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .27em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 8px;
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .95;
}
h1 strong { display: block; font-weight: 700; }
.hearts {
  margin: 11px 0 18px;
  display: flex;
  gap: 9px;
  color: var(--soft-pink);
  font-size: 16px;
  line-height: 1;
}
.hearts span:nth-child(2) { color: var(--gold); }
.hero-line {
  margin-bottom: 26px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  font-style: italic;
  line-height: 1.15;
}
.button {
  min-width: 132px;
  padding: 13px 20px;
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.button-gold { color: #111; background: var(--gold); }
.button-outline { border: 1px solid #5f4c2d; }
.button:hover, .button:focus-visible { transform: translateY(-1px); filter: brightness(1.12); }
.fine-print { margin: 12px 0 0; color: #716e68; font-size: 8px; }
.introduction {
  padding: 112px 24px 118px;
  color: #171512;
  background: var(--ivory);
  text-align: center;
}
.introduction h2 {
  margin-bottom: 27px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 5vw, 59px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: .92;
}
.introduction > p:last-child { max-width: 640px; margin: 0 auto; font-size: 14px; line-height: 1.75; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.values article { min-height: 220px; padding: 42px clamp(24px, 4vw, 60px); border-right: 1px solid var(--line); }
.values article:last-child { border-right: 0; }
.values span { color: var(--gold); font-family: "Cormorant Garamond", Georgia, serif; font-size: 13px; font-style: italic; }
.values h3 { margin: 45px 0 14px; font-size: 15px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; }
.values p { max-width: 290px; margin-bottom: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.drop {
  min-height: 420px;
  padding: 100px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at center, #18140e 0, #0c0b09 53%, var(--black) 85%);
  border-top: 1px solid var(--line);
}
.drop h2 { margin-bottom: 7px; font-size: clamp(39px, 5vw, 66px); font-weight: 400; letter-spacing: -.045em; line-height: 1; }
.drop > p:not(.eyebrow) { margin-bottom: 23px; color: var(--muted); font-family: "Cormorant Garamond", Georgia, serif; font-size: 16px; }
footer {
  min-height: 87px;
  padding: 25px clamp(24px, 5vw, 74px);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  color: #77736c;
  font-size: 8px;
}
footer a { justify-self: end; text-decoration: none; }
footer .brand { color: var(--ivory); font-size: 12px; }

@media (max-width: 720px) {
  .site-header { height: 62px; }
  .hero { min-height: 550px; padding-top: 95px; }
  .desktop-break { display: none; }
  .values { grid-template-columns: 1fr; }
  .values article { min-height: 170px; border-right: 0; border-bottom: 1px solid var(--line); }
  .values h3 { margin-top: 24px; }
  footer { grid-template-columns: 1fr; gap: 10px; text-align: center; }
  footer a { justify-self: center; }
}
