:root {
  --bg: #060606;
  --bg-deep: #120606;
  --bg-warm: #2d0909;
  --text: #f4efe8;
  --muted: rgba(244, 239, 232, 0.74);
  --accent: #9f121b;
  --accent-soft: rgba(159, 18, 27, 0.28);
  --border: rgba(255, 255, 255, 0.12);
  --card-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 28% 20%, rgba(132, 13, 21, 0.34), transparent 30%),
    radial-gradient(circle at 72% 90%, rgba(122, 16, 18, 0.24), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, #080505 46%, var(--bg-warm) 100%);
  color: var(--text);
  font-family: "Oswald", sans-serif;
}

body {
  overflow-x: hidden;
}

.page {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 14px 10px 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 610px;
}

.topbar {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  letter-spacing: 0.22em;
  white-space: nowrap;
  text-align: center;
}

.hero-backdrop {
  position: absolute;
  top: 72px;
  left: 50%;
  transform: translateX(-50%) scaleY(1.15);
  transform-origin: center top;
  z-index: 0;
  width: 88%;
  color: rgba(126, 10, 20, 0.82);
  font-size: clamp(72px, 22vw, 102px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 0.85;
  text-align: center;
  pointer-events: none;
  opacity: 0.95;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.9) 52%, rgba(0, 0, 0, 0.28) 82%, transparent 100%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.9) 52%, rgba(0, 0, 0, 0.28) 82%, transparent 100%);
  filter: blur(0.2px);
}

.hero-glow {
  position: absolute;
  top: 98px;
  left: -94px;
  width: 300px;
  height: 390px;
  background: radial-gradient(circle, rgba(137, 16, 20, 0.42) 0%, rgba(137, 16, 20, 0) 72%);
  filter: blur(14px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 8px;
}

.hero-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  transform: translateX(-34px);
}

.hero-figure img {
  display: block;
  width: 100%;
  max-width: 350px;
  margin: 0;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(48vw, 180px);
  margin-left: auto;
  margin-top: -210px;
  padding-right: 2px;
}

.hero-copy h1,
.mag-card-body h2 {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 0.92;
}

.hero-copy h1 {
  font-size: clamp(34px, 12.5vw, 54px);
}

.hero-lead,
.mag-card-body p,
.hero-description,
.card-link {
  margin: 0;
  font-size: 12px;
  line-height: 1.28;
  font-weight: 300;
  color: var(--muted);
}

.hero-lead {
  margin-top: 8px;
  max-width: 170px;
}

.accent-line {
  width: 46px;
  height: 2px;
  margin: 10px 0;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent-soft);
}

.hero-description {
  max-width: 166px;
}

.cards {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: -230px;
}

.mag-card {
  display: block;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(10, 8, 8, 0.9) 0%, rgba(5, 5, 5, 0.96) 100%);
  box-shadow: var(--card-shadow);
  color: inherit;
  text-decoration: none;
}

.mag-card-image {
  position: relative;
  aspect-ratio: 0.78;
  overflow: hidden;
}

.mag-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mag-card-body {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 42%;
  padding: 12px 12px 14px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(6, 6, 6, 0.72) 20%, rgba(6, 6, 6, 0.98) 100%);
}

.mag-card-body h2 {
  font-size: clamp(26px, 8vw, 38px);
}

.mag-card-body p {
  margin-top: 4px;
  font-size: 11px;
}

.mag-card-body .accent-line {
  width: 34px;
  margin: 10px 0;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-size: 11px;
}

.card-link strong {
  color: var(--accent);
  font-size: 1.15em;
}

@media (min-width: 431px) {
  .page {
    max-width: 960px;
    padding: 26px 18px 40px;
  }

  .topbar {
    margin-bottom: 20px;
  }

  .brand {
    font-size: 30px;
    letter-spacing: 0.22em;
  }

  .hero {
    min-height: 980px;
  }

  .hero-backdrop {
    top: 90px;
    left: auto;
    right: 0;
    transform: none;
    font-size: clamp(110px, 18vw, 260px);
    text-align: center;
  }

  .hero-glow {
    left: -120px;
    top: 140px;
    width: 540px;
    height: 780px;
    filter: blur(12px);
  }

  .hero-content {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(260px, 360px);
    align-items: end;
    column-gap: 16px;
    padding-top: 70px;
  }

  .hero-figure {
    transform: translateX(-24px);
  }

  .hero-figure img {
    width: min(100%, 620px);
    max-width: 100%;
    margin: 0;
  }

  .hero-copy {
    width: auto;
    margin-top: 120px;
    margin-left: 0;
    padding-right: 0;
    padding-bottom: 110px;
    align-self: center;
  }

  .hero-copy h1 {
    font-size: clamp(64px, 9vw, 116px);
  }

  .hero-lead,
  .mag-card-body p,
  .hero-description,
  .card-link {
    font-size: clamp(18px, 2vw, 28px);
  }

  .hero-lead,
  .hero-description {
    max-width: 360px;
  }

  .accent-line {
    width: 92px;
    height: 3px;
    margin: 28px 0;
  }

  .cards {
    gap: 26px;
    margin-top: -30px;
  }

  .mag-card {
    min-height: 620px;
    border-radius: 28px;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  }

  .mag-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 36px 110px rgba(0, 0, 0, 0.42);
  }

  .mag-card-body {
    position: absolute;
    inset: auto 0 0 0;
    min-height: 0;
    margin-top: -110px;
    padding: 28px 28px 34px;
  }

  .mag-card-body h2 {
    font-size: clamp(52px, 7vw, 84px);
  }

  .mag-card-body .accent-line {
    width: 92px;
    margin: 28px 0;
  }

  .card-link {
    gap: 16px;
  }
}
