@font-face {
  font-family: 'SmilingSerif';
  src: local('Georgia');
}

:root {
  --bg: #040806;
  --bg-soft: #07110c;
  --cream: #f2ead8;
  --muted: #b9af9a;
  --red: #a70f17;
  --red-soft: rgba(167, 15, 23, .55);
  --line: rgba(242, 234, 216, .14);
  --panel: rgba(255, 255, 255, .025);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--cream);
  background:
    radial-gradient(circle at 76% 36%, rgba(167, 15, 23, .13), transparent 22rem),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, .045), transparent 20rem),
    linear-gradient(135deg, #020403 0%, var(--bg-soft) 42%, #010201 100%);
  font-family: Georgia, 'Times New Roman', serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .21;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.site-shell {
  min-height: 100vh;
  margin: 10px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.26));
  overflow: hidden;
}

.topbar {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(22px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
}

.brand {
  color: var(--cream);
  text-decoration: none;
  letter-spacing: .44em;
  font-size: clamp(14px, 1.5vw, 19px);
  font-weight: 700;
  white-space: nowrap;
}

.email-pill {
  color: var(--cream);
  text-decoration: none;
  border: 1px solid var(--red-soft);
  border-radius: 999px;
  padding: 13px 25px;
  font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: .03em;
  background: rgba(0, 0, 0, .16);
  box-shadow: inset 0 0 18px rgba(167, 15, 23, .04);
}

main {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(44px, 6vw, 82px) 0 56px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, .82fr);
  align-items: center;
  gap: clamp(30px, 6vw, 76px);
  min-height: min(690px, calc(100vh - 160px));
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--red);
  font-size: clamp(12px, 1.3vw, 16px);
  letter-spacing: .42em;
  font-weight: 700;
  margin-bottom: 22px;
}

.eyebrow i {
  display: block;
  width: 72px;
  height: 1px;
  background: var(--red);
  opacity: .9;
}

h1 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .9;
  font-size: clamp(66px, 9vw, 142px);
  text-wrap: balance;
  text-shadow: 0 18px 48px rgba(0, 0, 0, .35);
}

.subtitle {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.35;
}

.small-rule {
  width: min(360px, 68%);
  height: 1px;
  margin: 36px 0 34px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.identity strong {
  display: block;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 600;
  margin-bottom: 8px;
}

.identity span {
  display: block;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 22px);
  letter-spacing: .04em;
}

.identity b {
  color: var(--red);
  padding: 0 10px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}

.button {
  min-width: 178px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid rgba(167, 15, 23, .72);
  color: var(--cream);
  text-decoration: none;
  font-size: 18px;
  background: rgba(0, 0, 0, .12);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 234, 216, .42);
  background: rgba(255, 255, 255, .035);
}

.button.primary {
  background: linear-gradient(135deg, #7f0c12, #b4121a);
  border-color: rgba(242, 234, 216, .08);
  box-shadow: 0 18px 42px rgba(167, 15, 23, .22);
}

.hero-mark {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.hero-mark img {
  width: min(390px, 82%);
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  filter:
    contrast(1.08)
    saturate(1.05)
    drop-shadow(0 26px 48px rgba(0, 0, 0, .44));
  position: relative;
  z-index: 1;
}

.mark-glow {
  position: absolute;
  width: min(430px, 82%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 15, 23, .20), transparent 64%);
  filter: blur(4px);
  opacity: .86;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: clamp(22px, 4vw, 52px);
}

.card {
  border: 1px solid rgba(167, 15, 23, .42);
  border-radius: 18px;
  padding: 34px 32px 36px;
  background:
    radial-gradient(circle at 50% 0%, rgba(167, 15, 23, .075), transparent 55%),
    rgba(0, 0, 0, .16);
  min-height: 205px;
}

.card-icon {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(167, 15, 23, .68);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--red);
  font-size: 24px;
  margin-bottom: 22px;
}

.card h2 {
  margin: 0 0 18px;
  color: var(--cream);
  letter-spacing: .22em;
  font-size: 19px;
  font-weight: 700;
}

.card h2::after {
  content: "";
  display: block;
  width: 46px;
  height: 1px;
  background: var(--red);
  margin-top: 17px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
  max-width: 330px;
}

@media (max-width: 940px) {
  .site-shell {
    margin: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .topbar {
    height: auto;
    padding: 24px 20px;
    align-items: flex-start;
    flex-direction: column;
  }

  .email-pill {
    width: 100%;
    text-align: center;
  }

  main {
    width: min(100% - 34px, 720px);
    padding-top: 42px;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: left;
    min-height: auto;
  }

  .hero-mark {
    order: -1;
    min-height: 220px;
  }

  .hero-mark img {
    width: min(190px, 48vw);
  }

  .mark-glow {
    width: min(260px, 66vw);
  }

  h1 {
    font-size: clamp(58px, 18vw, 92px);
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .card p {
    max-width: none;
  }
}

@media (max-width: 520px) {
  .brand {
    letter-spacing: .28em;
  }

  .eyebrow {
    letter-spacing: .25em;
  }

  .eyebrow i {
    width: 46px;
  }

  .button {
    width: 100%;
  }
}
