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

html, body {
  background: #1a0d06;
  height: 100%;
}

/* ── Hero ── */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

/* ── Background image — completely untouched ── */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  display: block;
}

/* ── Text block — sits in the natural dark upper-left zone ── */
.hero-copy {
  position: absolute;
  top: 0;
  left: 0;
  padding: 52px 28px 0;
  max-width: 58%;
}

/* Brand label */
.brand {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 8.5px;
  letter-spacing: 0.42em;
  color: #C4933A;
  margin-bottom: 22px;
}

/* Headline */
.headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 30px;
  line-height: 1.22;
  letter-spacing: 0.01em;
  color: #F0E3CC;
  margin-bottom: 22px;
}

/* Subheadline */
.sub {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11.5px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #8A7056;
  margin-bottom: 20px;
}

/* Personalization — gold highlight */
.personalization {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.55;
  letter-spacing: 0.015em;
  color: #C4933A;
  margin-bottom: 36px;
}

/* CTA */
.cta {
  display: inline-block;
  background: #C4933A;
  color: #160c04;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 24px;
}
