:root {
  --ink: #19171d;
  --muted: #5f5c65;
  --accent: #bf1f2e;
  --violet: #1e0633;
  --paper: #fbfafb;
  --line: rgba(25, 23, 29, .14);
  --discord: #7289da;
  --discord-active: #38426b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, sans-serif;
}

.background-placeholder {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, #d5d3d5, #9b999e 49%, #c6c4c7);
  display: grid;
  place-items: center;
}
.background-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image: linear-gradient(45deg, transparent 49%, #fff 50%, transparent 51%);
  background-size: 12px 12px;
}
.background-placeholder span, .about-photo span {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.62);
  font: 600 11px/1 Inter, sans-serif;
  letter-spacing: .16em;
}
.page-wash {
  position: fixed;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,255,255,.72) 64%, rgba(30,6,51,.17));
}

.site-header, main, footer { max-width: 1260px; margin: auto; }
.site-header {
  height: 92px;
  padding: 16px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { display: block; width: 220px; height: auto; }
nav { display: flex; gap: 34px; }
nav a { color: var(--ink); text-decoration: none; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
nav a:hover, .text-link:hover { color: var(--accent); }

.hero { min-height: 440px; padding: 91px 42px 54px; max-width: 785px; }
.eyebrow { color: var(--accent); margin: 0 0 11px; font-size: 11px; font-weight: 700; letter-spacing: .17em; }
h1, h2 { margin: 0; font-family: "Barlow Condensed", Impact, sans-serif; font-weight: 900; text-transform: uppercase; }
h1 { font-size: clamp(55px, 7.2vw, 95px); line-height: .88; letter-spacing: -.035em; }
h2 { font-size: clamp(35px, 3.8vw, 50px); line-height: .91; letter-spacing: -.02em; }
h2 em { color: var(--accent); font-style: normal; }
.hero-copy { max-width: 425px; margin: 30px 0 24px; color: #3c3942; font-size: 14px; line-height: 1.7; }
.text-link { color: var(--ink); text-decoration: none; text-transform: uppercase; font-size: 11px; font-weight: 700; letter-spacing: .13em; }
.text-link span { padding-left: 7px; color: var(--accent); font-size: 16px; }

.content-grid { display: grid; grid-template-columns: 1.23fr .77fr; align-items: stretch; }
.about-card, .recruitment-card { padding: 51px 53px; }
.about-card { background: rgba(255, 255, 255, .96); }
.about-card .section-heading { display: flex; justify-content: space-between; align-items: start; gap: 25px; }
.about-card .eyebrow { writing-mode: vertical-rl; transform: rotate(180deg); margin: 5px 0 0; }
.about-copy { max-width: 520px; margin: 32px 0 29px 41px; columns: 2; column-gap: 35px; }
.about-copy p { color: var(--muted); margin: 0; font-size: 13px; line-height: 1.75; margin-bottom: 15px;}
.about-copy p::first-letter { color: var(--accent); font-size: 18px; font-weight: bold;}
/* .about-photo {
  height: 158px;
  margin-left: 41px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #c3c1c4, #77747a);
  border: 1px solid rgba(25,23,29,.14);
} */
.about-photo { margin-top: 30px; margin-left: 15px; margin-right: 15px;}
.about-photo img { max-width: 100%; height: auto; margin-left: auto; margin-right: auto;}
.recruitment-card { color: white; background: linear-gradient(125deg, #1e0633, #641426 73%, #bf1f2e); border-left: 0; }
.recruitment-icon { color: white; font-size: 27px; margin-bottom: 18px; }
.recruitment-card h2 { font-size: clamp(27px, 2.7vw, 38px); }
.recruitment-card .eyebrow { color: #fff; }
.recruitment-card > p:not(.eyebrow) { margin: 20px 0 20px; color: rgba(255,255,255,.82); font-size: 13px; line-height: 1.7; }
.recruitment-link {color: var(--paper); text-decoration: underline;}
ul { padding: 0; margin: 0 0 28px; list-style: none; }
li { padding: 8px 0 8px 20px; border-top: 1px solid rgba(255,255,255,.11); color: #e4d7ce; font-size: 12px; }
li::before { content: "✦"; color: #fff; margin-left: -20px; margin-right: 9px; font-size: 9px; }
.discord-button { display: flex; align-items: center; gap: 10px; width: 100%; padding: 14px 15px; color: #fff; background: var(--discord); text-decoration: none; font-size: 12px; font-weight: 700; letter-spacing: .04em; transition: background .2s, transform .2s; }
.discord-button:hover { background: var(--discord-active); transform: translateY(-2px); }
.discord-glyph { font-weight: 800; font-size: 21px; line-height: .5; }
.button-arrow { margin-left: auto; font-size: 18px; }

footer { padding: 22px 42px 27px; display: flex; justify-content: space-between; gap: 20px; color: rgba(25,23,29,.68); font-size: 9px; font-weight: 700; letter-spacing: .13em; }

@media (max-width: 760px) {
  .site-header { height: 76px; padding: 12px 20px; }
  .brand img { width: 165px; }
  nav { gap: 16px; }
  nav a { font-size: 10px; }
  .hero { min-height: 415px; padding: 78px 25px 42px; }
  .content-grid { grid-template-columns: 1fr; }
  .about-card, .recruitment-card { padding: 38px 25px; }
  .about-copy, .about-photo { margin-left: 0; }
  .about-copy { columns: 1; }
  .about-copy p + p { margin-top: 16px; }
  .about-card .eyebrow { writing-mode: horizontal-tb; transform: none; }
  .about-card .section-heading { display: block; }
  .about-card .section-heading .eyebrow { margin-bottom: 15px; }
  footer { padding: 20px 25px; flex-direction: column; }
}
