:root {
  --black: #090909;
  --ink: #f0ede9;
  --muted: #97918c;
  --red: #e52332;
  --red-deep: #7d101a;
  --line: rgba(240, 237, 233, 0.18);
  --mono: "DM Mono", monospace;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 80% 5%, rgba(125, 16, 26, .18), transparent 34%), linear-gradient(115deg, transparent 0 65%, rgba(229, 35, 50, .035) 65% 65.3%, transparent 65.3%);
  z-index: -2;
}

a { color: inherit; }
.site-header, main, .site-footer { width: min(1320px, calc(100% - 72px)); margin-inline: auto; }
.site-header {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.wordmark { font-size: 14px; font-weight: 800; letter-spacing: .18em; text-decoration: none; }
.wordmark span { color: var(--red); }
.header-meta, .eyebrow, .section-index, .graphic-caption, .form-note, .site-footer {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.header-meta { color: var(--muted); display: flex; gap: 10px; align-items: center; }
.status-dot { color: var(--red); font-size: 7px; filter: drop-shadow(0 0 5px var(--red)); }

.hero { min-height: 690px; position: relative; display: grid; grid-template-columns: 46% 54%; align-items: center; }
.hero-copy { position: relative; z-index: 1; padding-block: 80px; }
.eyebrow, .section-index { color: var(--muted); margin: 0 0 34px; }
.eyebrow span { color: var(--red); margin-right: 14px; }
h1, h2 { font-weight: 500; letter-spacing: -.07em; line-height: .88; margin: 0; }
h1 { font-size: clamp(5rem, 11vw, 10.5rem); }
h1 em, h2 em { color: var(--red); font-family: Georgia, serif; font-weight: 400; letter-spacing: -.1em; }
.hero-intro { color: var(--muted); max-width: 250px; margin: 40px 0 28px; }
.text-link { color: var(--ink); text-decoration: none; font-size: 14px; font-weight: 700; border-bottom: 1px solid var(--red); padding-bottom: 8px; display: inline-flex; gap: 16px; transition: gap .25s ease, color .25s ease; }
.text-link:hover { gap: 22px; color: var(--red); }
.hero-graphic { position: relative; height: 610px; overflow: hidden; background: radial-gradient(circle at 58% 48%, #7d101a 0, #28080d 26%, #110609 57%, #090909 100%); }
.hero-graphic::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 0 49%, rgba(229,35,50,.27) 49.1% 49.3%, transparent 49.4%), linear-gradient(40deg, transparent 0 62%, rgba(229,35,50,.15) 62.1% 62.3%, transparent 62.4%); }
.graphic-orbit { position: absolute; border: 1px solid rgba(229,35,50,.45); border-radius: 50%; transform: rotate(-30deg); }
.orbit-one { width: 70%; aspect-ratio: 1.4; top: 18%; left: 15%; box-shadow: 0 0 60px rgba(229,35,50,.18); }
.orbit-two { width: 49%; aspect-ratio: 1.4; top: 29%; left: 25%; border-color: rgba(240,237,233,.32); transform: rotate(54deg); }
.graphic-center { position: absolute; top: 43%; left: 50%; transform: translate(-50%, -50%); width: 110px; height: 110px; border: 1px solid var(--red); border-radius: 50%; display: grid; place-items: center; color: var(--red); font-size: 38px; box-shadow: 0 0 60px rgba(229,35,50,.25); }
.graphic-word { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(240,237,233,.08); font-size: clamp(12rem, 25vw, 25rem); font-weight: 800; letter-spacing: -.18em; line-height: 1; transform: translateX(-.07em); }
.graphic-caption { position: absolute; bottom: 26px; left: 28px; z-index: 1; color: var(--ink); line-height: 1.9; }
.graphic-caption span { color: var(--muted); }
.hero-mark { position: absolute; right: -14px; bottom: -30px; color: rgba(229,35,50,.22); font-size: clamp(9rem, 22vw, 22rem); font-weight: 800; letter-spacing: -.15em; line-height: .7; pointer-events: none; }
.hero-mark span { color: var(--red); }

.closing-note, .contact-section { border-top: 1px solid var(--line); display: grid; grid-template-columns: 30% 70%; padding: 120px 0; }
.note-content { max-width: 650px; }
h2 { font-size: clamp(3.6rem, 8vw, 7.5rem); }
.note-content p { color: var(--muted); max-width: 490px; font-size: 18px; margin: 34px 0 0; }
.note-content p + p { margin-top: 14px; }

.contact-section { padding-bottom: 150px; }
.contact-heading p { color: var(--muted); max-width: 250px; margin-top: 34px; }
.contact-form { max-width: 610px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px 22px; align-content: start; }
label { display: grid; gap: 10px; }
label span { font-family: var(--mono); color: var(--muted); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
input, textarea { width: 100%; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; padding: 11px 0 13px; background: transparent; color: var(--ink); font: inherit; outline: none; transition: border-color .2s ease; }
textarea { resize: vertical; min-height: 98px; }
input:focus, textarea:focus { border-color: var(--red); }
.message-field, .form-end, .form-status { grid-column: 1 / -1; }
.honey { display: none; }
.form-end { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-top: 18px; }
.form-note { color: var(--muted); line-height: 1.9; margin: 0; }
.form-note a { color: var(--ink); text-decoration: none; text-transform: lowercase; letter-spacing: 0; }
button { border: 0; background: var(--red); color: white; padding: 16px 22px; font: 700 13px var(--sans); cursor: pointer; transition: background .2s ease, transform .2s ease; }
button i { margin-left: 26px; font-size: 13px; }
button:hover { background: #ff3442; transform: translateY(-2px); }
button:disabled { cursor: wait; opacity: .7; }
.form-status { margin: 0; color: var(--red); font-size: 13px; }

.site-footer { border-top: 1px solid var(--line); min-height: 96px; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: var(--muted); }
.site-footer a { text-decoration: none; color: var(--ink); }

@media (max-width: 760px) {
  .site-header, main, .site-footer { width: min(100% - 36px, 600px); }
  .site-header { height: 82px; }
  .header-meta { font-size: 9px; }
  .hero { min-height: auto; display: flex; flex-direction: column; align-items: stretch; }
  .hero-copy { padding: 68px 0 46px; }
  h1 { font-size: clamp(4.8rem, 22vw, 8rem); }
  .hero-graphic { height: 500px; margin-inline: -18px; }
  .hero-mark { right: -7px; bottom: -14px; font-size: 9rem; }
  .closing-note, .contact-section { display: block; padding: 82px 0; }
  .section-index { margin-bottom: 28px; }
  .note-content p { font-size: 16px; }
  .contact-heading { margin-bottom: 60px; }
  .contact-form { display: block; }
  label { margin-bottom: 30px; }
  .form-end { align-items: start; flex-direction: column; margin-top: 10px; }
  .site-footer { min-height: 130px; flex-wrap: wrap; align-content: center; padding: 22px 0; }
  .site-footer span:nth-child(2) { order: 3; width: 100%; }
}
