:root {
  --navy: #212430;
  --navy-soft: #2c3040;
  --champagne: #d5bcab;
  --champagne-soft: rgba(213, 188, 171, 0.16);
  --text-main: #f6efe8;
  --text-muted: rgba(246, 239, 232, 0.78);
  --line: rgba(213, 188, 171, 0.18);
  --panel: rgba(33, 36, 48, 0.72);
  --shadow: 0 30px 80px rgba(7, 10, 18, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(213, 188, 171, 0.2), transparent 30%),
    radial-gradient(circle at bottom right, rgba(213, 188, 171, 0.14), transparent 32%),
    linear-gradient(145deg, #171a24 0%, #212430 42%, #262a39 100%);
  color: var(--text-main);
  font-family: "Italiana", "Times New Roman", serif;
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(18px, 2.4vh, 32px) clamp(18px, 2vw, 32px) clamp(28px, 4vh, 44px);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-fit {
  --fit-scale: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(var(--fit-scale));
  transform-origin: center center;
  will-change: transform;
}

.ambient {
  position: absolute;
  width: 32rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.55;
  pointer-events: none;
}

.ambient-left {
  top: -10rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(213, 188, 171, 0.18), transparent 65%);
}

.ambient-right {
  right: -10rem;
  bottom: -12rem;
  background: radial-gradient(circle, rgba(90, 101, 128, 0.24), transparent 62%);
}

.hero-card {
  position: relative;
  width: min(1120px, 100%);
  padding: clamp(24px, 4vh, 56px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(213, 188, 171, 0.1), transparent 20%),
    linear-gradient(180deg, transparent 72%, rgba(213, 188, 171, 0.08));
  pointer-events: none;
}

.brand-mark {
  position: absolute;
  right: -2rem;
  top: 50%;
  width: clamp(180px, 22vw, 290px);
  transform: translateY(-50%);
  opacity: 0.08;
}

.hero-header,
.hero-copy,
.details-grid {
  position: relative;
  z-index: 1;
}

.hero-header {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--champagne);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 700;
}

.wordmark {
  width: min(100%, 420px);
}

.hero-copy {
  margin-top: clamp(28px, 5vh, 72px);
  max-width: 700px;
}

.status-pill {
  width: fit-content;
  margin: 0 0 18px;
  padding: 10px 16px;
  border: 1px solid rgba(213, 188, 171, 0.22);
  border-radius: 999px;
  background: var(--champagne-soft);
  color: var(--champagne);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 14ch;
  color: #f7eee7;
  font-family: "Italiana", "Times New Roman", serif;
  font-size: clamp(2.1rem, 3.7vw, 3.8rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-wrap: balance;
}

.lead {
  margin: 24px 0 0;
  max-width: 40rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  line-height: 1.8;
}

.details-grid {
  margin-top: clamp(24px, 4vh, 56px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 760px;
}

.details-grid article {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.detail-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--champagne);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.details-grid p {
  margin: 0;
  color: var(--text-main);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .page-shell {
    padding: 18px;
  }

  .hero-card {
    padding: 32px 24px;
  }

  .hero-copy {
    margin-top: 44px;
  }

  .details-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .brand-mark {
    top: auto;
    right: -1.5rem;
    bottom: -2rem;
    transform: none;
    width: 180px;
    opacity: 0.09;
  }
}

@media (max-height: 860px) {
  .hero-card {
    padding: 28px;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  .wordmark {
    width: min(100%, 360px);
  }

  .hero-copy {
    margin-top: 28px;
  }

  h1 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
  }

  .lead {
    margin-top: 18px;
    line-height: 1.6;
  }

  .details-grid {
    margin-top: 28px;
    gap: 14px;
  }

  .details-grid article {
    padding: 18px 20px;
  }
}

@media (max-width: 560px) {
  .eyebrow {
    margin-bottom: 14px;
    letter-spacing: 0.22em;
  }

  h1 {
    max-width: none;
    font-size: clamp(1.85rem, 7vw, 2.7rem);
    line-height: 1.04;
  }

  .lead {
    line-height: 1.7;
  }

  .details-grid article {
    padding: 18px;
  }
}
