:root {
  --bg: #090909;
  --bg-soft: #161616;
  --panel: rgba(18, 18, 18, 0.82);
  --panel-strong: rgba(28, 28, 28, 0.94);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f5f0e6;
  --muted: #d1c6ac;
  --gold: #ecb320;
  --gold-soft: #f2c84d;
  --teal: #1d5f68;
  --shadow: rgba(236, 179, 32, 0.24);
  --headline: "Avenir Next Condensed", "Arial Narrow", "Franklin Gothic Condensed", "Helvetica Neue", sans-serif;
  --body: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--body);
  background: var(--bg);
}

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

.site-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 0 0 48px;
}

.hero,
.identity-grid {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0;
}

.hero {
  display: block;
}

.hero-copy {
  position: absolute;
  inset: 2rem 2rem 2rem auto;
  z-index: 2;
  width: 33.3333%;
  padding: 0;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.eyebrow,
.panel-kicker,
.detail-signoff {
  font-family: var(--headline);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.86rem;
}

h1,
h2 {
  margin: 0;
  font-family: var(--headline);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  max-width: 8ch;
  font-size: clamp(3.6rem, 13vw, 6rem);
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 7vw, 3.5rem);
}

.lede,
.panel p {
  max-width: 34rem;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.65;
  color: var(--muted);
}

.lede {
  margin: 12px 0 0;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: none;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background: #111;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 20px 24px -24px;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(29, 95, 104, 0.32), rgba(236, 179, 32, 0.16));
  filter: blur(26px);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.06) 0%, rgba(9, 9, 9, 0.18) 100%);
}

.hero-image {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
}

.identity-grid {
  display: grid;
  gap: 20px;
  margin-top: 22px;
}

.panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%), var(--panel);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.identity-panel {
  padding: 24px;
}

.panel-copy {
  padding-bottom: 18px;
}

.panel-kicker {
  margin: 0 0 10px;
  color: var(--gold-soft);
  font-size: 0.78rem;
}

.logo-frame {
  position: relative;
  margin-top: 4px;
  border-radius: 24px;
  border: 1px solid rgba(236, 179, 32, 0.14);
  background:
    radial-gradient(circle at top, rgba(236, 179, 32, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--panel-strong);
  padding: 14px;
}

.logo-frame::after {
  content: "";
  position: absolute;
  inset: auto 22px 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236, 179, 32, 0.65), transparent);
}

.logo-image {
  border-radius: 18px;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.detail-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  min-height: 220px;
}

.mini-rule {
  width: 100%;
  max-width: 220px;
  height: 16px;
  margin: 12px 0 10px;
  border-top: 5px solid var(--gold);
  border-bottom: 5px solid var(--gold);
  opacity: 0.9;
}

.detail-signoff {
  margin: 0;
  color: rgba(245, 240, 230, 0.78);
  font-size: 0.84rem;
}

@media (min-width: 760px) {
  .site-shell {
    padding: 0 0 56px;
  }

  .hero {
    margin-bottom: 24px;
  }

  .hero-copy {
    width: 33.3333%;
    inset: 2rem 2rem 2rem auto;
    padding: 0;
  }

  .identity-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 24px;
    margin-top: 24px;
  }

  .identity-panel,
  .detail-panel {
    padding: 30px;
  }
}

@media (max-width: 759px) {
  .hero-copy {
    inset: auto 1.5rem 1.5rem 1.5rem;
    width: 100%;
    max-width: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
