.brand-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .8fr);
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
  padding: clamp(48px, 8vw, 104px) 0;
}

.brand-hero-copy h1 {
  max-width: 760px;
  margin: 14px 0 24px;
  color: var(--ink, #24160f);
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(3.4rem, 7.5vw, 7.1rem);
  font-weight: 600;
  line-height: .87;
  letter-spacing: -.045em;
}

.brand-hero-copy h1 em {
  color: var(--terracotta, #a4482c);
  font-weight: 500;
}

.brand-hero-lead {
  max-width: 650px;
  margin: 0 0 30px;
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
  line-height: 1.75;
}

.early-booking-note {
  margin: 18px 0 0;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.5;
}

.brand-hero-image {
  position: relative;
  height: min(72vh, 720px);
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 220px 220px 20px 20px;
  background: #21150f;
  box-shadow: 0 28px 70px rgba(55, 31, 18, .2);
}

.brand-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 68%, rgba(16, 8, 4, .62));
  pointer-events: none;
}

.brand-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 48%;
}

.brand-hero-image figcaption {
  position: absolute;
  right: 18px;
  bottom: 14px;
  z-index: 1;
  color: rgba(255,255,255,.78);
  font-size: .67rem;
  letter-spacing: .04em;
}

.early-promo {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  width: min(390px, calc(100% - 32px));
  padding: 27px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  color: #fffaf1;
  background: #23150f;
  box-shadow: 0 22px 65px rgba(20, 10, 5, .34);
  animation: promo-in .45s ease-out both;
}

.early-promo[hidden] { display: none; }
.early-promo-kicker { margin: 0 0 5px; color: #e2b15f; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.early-promo h2 { margin: 0 35px 9px 0; color: #fffaf1; font-family: var(--font-display), Georgia, serif; font-size: 2.35rem; line-height: 1; }
.early-promo p { line-height: 1.55; }
.early-promo #early-promo-description { margin: 0 0 12px; font-size: .92rem; }
.early-promo-conditions { margin: 0 0 18px; color: rgba(255,250,241,.68); font-size: .66rem; }
.early-promo .button { width: 100%; text-align: center; }
.early-promo-close { position: absolute; top: 12px; right: 14px; width: 36px; height: 36px; border: 0; color: #fffaf1; background: transparent; font-size: 1.8rem; line-height: 1; cursor: pointer; }
.early-promo-close:focus-visible { outline: 2px solid #e2b15f; outline-offset: 2px; }

@keyframes promo-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 780px) {
  .brand-hero { width: min(100% - 28px, 620px); min-height: auto; grid-template-columns: 1fr; gap: 32px; padding: 48px 0 56px; }
  .brand-hero-copy h1 { font-size: clamp(3rem, 16vw, 5.3rem); }
  .brand-hero-image { height: 55vh; min-height: 390px; border-radius: 180px 180px 18px 18px; }
  .early-booking-note { font-size: .76rem; }
  .early-promo { right: 16px; bottom: 16px; padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .early-promo { animation: none; }
}
