@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --ink: #17202a;
  --muted: #7b8790;
  --paper: #f2f1ec;
  --panel: #1b2530;
  --line: rgba(23, 32, 42, .15);
  --panel-line: rgba(242, 241, 236, .17);
  --accent: #e7ef72;
  --orange: #f17b58;
  --max-width: 1240px;
}

* { box-sizing: border-box; }

html { background: #111922; }

body {
  min-height: 100vh;
  margin: 0;
  padding: 24px;
  color: var(--ink);
  background: #111922;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.shell {
  width: min(100%, var(--max-width));
  min-height: calc(100vh - 48px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .22);
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  padding: 0 44px;
  border-bottom: 1px solid var(--line);
}

.monogram {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: var(--paper);
  background: var(--panel);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -.08em;
  text-decoration: none;
}

.header-label,
.header-index,
.eyebrow,
.section-number,
.note,
.focus-list span {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.header-label { color: var(--muted); }
.header-label i { color: var(--orange); font-style: normal; padding: 0 8px; }
.header-index { color: var(--muted); justify-self: end; }

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  min-height: calc(100vh - 130px);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 650px;
  padding: 74px clamp(42px, 7vw, 100px);
  overflow: hidden;
  color: var(--paper);
  background-color: var(--panel);
  background-image:
    linear-gradient(rgba(242, 241, 236, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 241, 236, .055) 1px, transparent 1px);
  background-position: -1px -1px;
  background-size: 42px 42px;
}

.hero::after {
  position: absolute;
  right: -95px;
  bottom: -145px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(231, 239, 114, .34);
  border-radius: 50%;
  box-shadow: 0 0 0 27px rgba(231, 239, 114, .04), 0 0 0 54px rgba(231, 239, 114, .04);
  content: '';
}

.hero-mark {
  position: absolute;
  top: 38px;
  right: 45px;
  color: var(--accent);
  font-size: 21px;
}

.eyebrow,
.section-number { margin: 0 0 24px; color: var(--accent); }

.eyebrow::before {
  display: inline-block;
  width: 26px;
  height: 1px;
  margin: 0 12px 3px 0;
  background: var(--orange);
  content: '';
}

h1 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0;
  font-size: clamp(58px, 8vw, 116px);
  font-weight: 600;
  letter-spacing: -.09em;
  line-height: .89;
}

h1 em { color: var(--accent); font-style: normal; }

.summary {
  position: relative;
  z-index: 1;
  max-width: 575px;
  margin: 42px 0 0;
  color: #c3cbd0;
  font-size: clamp(17px, 1.6vw, 21px);
  letter-spacing: -.02em;
  line-height: 1.55;
}

.hero-caption {
  position: relative;
  z-index: 1;
  margin: 64px 0 0;
  color: #8f9ba2;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .04em;
  line-height: 1.65;
  text-transform: uppercase;
}

.details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 650px;
  padding: 76px clamp(38px, 5vw, 72px) 46px;
}

.section-number { color: var(--orange); }

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 600;
  letter-spacing: -.07em;
  line-height: 1;
}

.details-intro {
  max-width: 360px;
  margin: 25px 0 0;
  color: #5b6870;
  font-size: 14px;
  line-height: 1.7;
}

.focus-list {
  margin: 55px 0;
  padding: 0;
  list-style: none;
}

.focus-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 57px;
  border-top: 1px solid var(--line);
}

.focus-list li:last-child { border-bottom: 1px solid var(--line); }
.focus-list span { color: var(--muted); }
.focus-list strong { font-size: 15px; font-weight: 600; }

.details-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.note { max-width: 145px; margin: 0; color: var(--muted); }

.contact {
  margin: 0;
  color: var(--ink);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  white-space: nowrap;
}

.at { color: var(--muted); }

@media (max-width: 800px) {
  body { padding: 0; }
  .shell { min-height: 100vh; }
  .site-header { min-height: 70px; padding: 0 24px; }
  .header-label { display: none; }
  .header-index { grid-column: 3; }
  .page-grid { grid-template-columns: 1fr; }
  .hero, .details { min-height: auto; }
  .hero { padding: 70px 30px 80px; }
  .details { padding: 62px 30px 35px; }
  .hero-caption { margin-top: 53px; }
  .focus-list { margin: 48px 0; }
}

@media (max-width: 420px) {
  .hero-mark { top: 27px; right: 28px; }
  .hero { padding: 60px 24px 68px; }
  .details { padding: 53px 24px 30px; }
  .details-footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero, .details { animation: appear .7s ease-out both; }
  .details { animation-delay: .1s; }
  @keyframes appear { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
}
