:root {
  --bg: #f5f5f2;
  --ink: #080808;
  --muted: #6f6f69;
  --line: #d8d8d1;
  --paper: #ffffff;
  --black: #000000;
  --white: #ffffff;
  --soft: #ecece7;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

main,
section,
.container,
.hero-copy,
.hero-panel,
.section-head > *,
.split > *,
.portrait-layout > *,
.contact-grid > *,
.image-feature > *,
.grid-2 > *,
.grid-3 > * {
  min-width: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--black);
  color: var(--white);
  padding: .75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(8, 8, 8, .12);
  background: rgba(245, 245, 242, .86);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 178px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.desktop-nav a,
.mobile-panel a {
  color: var(--muted);
  position: relative;
}

.desktop-nav a[aria-current="page"],
.desktop-nav a:hover,
.mobile-panel a[aria-current="page"],
.mobile-panel a:hover {
  color: var(--ink);
}

.desktop-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.55rem;
  height: 1px;
  background: currentColor;
}

.mobile-panel a[aria-current="page"] {
  padding-left: 12px;
  border-left: 1px solid var(--ink);
}

.nav-cta {
  border: 1px solid var(--ink);
  padding: .7rem .9rem;
  color: var(--ink) !important;
}

.nav-cta[aria-current="page"] {
  background: var(--ink);
  color: var(--white) !important;
}

.nav-toggle {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  margin: 5px auto;
}

.mobile-panel {
  display: none;
}

@media (min-width: 921px) {
  .nav-toggle {
    display: none;
  }
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  padding: 64px 0 38px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(340px, .82fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 22px;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  font-weight: 520;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.7rem, 5.55vw, 5.9rem);
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(2.55rem, 5.4vw, 5.45rem);
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 3.75rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

p {
  margin: 0;
  overflow-wrap: anywhere;
}

li,
summary {
  overflow-wrap: anywhere;
}

.lead {
  color: #2b2b28;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.45;
  max-width: 100%;
  overflow-wrap: anywhere;
}

div.lead {
  display: block;
}

div.lead p {
  font: inherit;
  color: inherit;
  line-height: inherit;
}

.hero-copy {
  display: grid;
  gap: 28px;
}

.hero-panel {
  border-top: 1px solid var(--ink);
  padding-top: 24px;
  display: grid;
  gap: 20px;
}

.hero-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(1);
}

.hero-panel .quote {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.35;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--ink);
  padding: .75rem 1rem;
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
}

.button:hover {
  background: var(--ink);
  color: var(--white);
}

.button.primary:hover {
  background: transparent;
  color: var(--ink);
}

.meta-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 60px;
  background: var(--line);
  border: 1px solid var(--line);
}

.meta-strip div {
  background: var(--bg);
  padding: 18px;
}

.meta-strip strong {
  display: block;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.meta-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.section {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}

.section.dark {
  background: var(--black);
  color: var(--white);
  border-bottom-color: #242424;
}

.section.dark .muted,
.section.dark .eyebrow,
.section.dark .lead {
  color: #bdbdb7;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
  gap: 56px;
  margin-bottom: 54px;
}

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

.grid-2,
.grid-3 {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.model-card,
.offer-card {
  background: var(--paper);
  padding: 32px;
}

.section.dark .card,
.section.dark .model-card,
.section.dark .offer-card {
  background: #0d0d0d;
}

.card {
  display: grid;
  gap: 18px;
}

.card-number {
  color: var(--muted);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.link-arrow {
  display: inline-flex;
  margin-top: 4px;
  font-size: .84rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
}

.section.dark .link-arrow {
  color: var(--white);
}

.model-card {
  min-height: 360px;
}

.model-card h3,
.offer-card h3 {
  margin-bottom: 12px;
}

.model-card ul,
.offer-card ul,
.plain-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.model-card li,
.offer-card li,
.plain-list li {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.section.dark .model-card li,
.section.dark .offer-card li {
  border-top-color: #2b2b2b;
}

.reference-details {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.reference-details details {
  background: var(--paper);
  padding: 0;
}

.section.dark .reference-details {
  background: #2b2b2b;
  border-color: #2b2b2b;
}

.section.dark .reference-details details {
  background: #0d0d0d;
}

.reference-details summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  font-size: .86rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  list-style: none;
}

.reference-details summary::-webkit-details-marker {
  display: none;
}

.reference-details summary::after {
  content: "+";
  font-size: 1.1rem;
}

.reference-details details[open] summary::after {
  content: "-";
}

.detail-body {
  padding: 0 28px 28px;
  color: var(--ink);
}

.section.dark .detail-body {
  color: var(--white);
}

.detail-body p + p,
.detail-body ul + p,
.detail-body p + ul {
  margin-top: 16px;
}

.detail-body ul {
  margin: 14px 0 0;
  padding-left: 1.2rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.section.dark .detail-grid {
  background: #2b2b2b;
  border-color: #2b2b2b;
}

.detail-card {
  background: var(--paper);
  padding: 24px;
}

.section.dark .detail-card {
  background: #0d0d0d;
}

.detail-card h3 {
  font-size: 1.08rem;
  line-height: 1.22;
  margin-bottom: 10px;
}

.detail-card + .detail-card {
  margin-top: 0;
}

.detail-card p + p {
  margin-top: 14px;
}

.detail-card ul {
  margin-top: 14px;
}

.artifact-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #2b2b2b;
  border: 1px solid #2b2b2b;
}

.artifact-column {
  background: #0d0d0d;
  padding: 28px;
}

.artifact-column h3 {
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  margin-bottom: 12px;
}

.artifact-question {
  color: #d9d9d3;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #2b2b2b;
}

.artifact-items {
  display: grid;
  gap: 1px;
  margin-top: 24px;
  background: #2b2b2b;
}

.artifact-tile {
  background: #141414;
  padding: 20px;
}

.artifact-tile h4 {
  margin: 0 0 8px;
  font-size: .98rem;
  line-height: 1.22;
}

.artifact-tile p {
  color: #c9c9c3;
  font-size: .94rem;
  line-height: 1.55;
}

.visual-band {
  min-height: 520px;
  display: grid;
  align-items: end;
  background: linear-gradient(90deg, rgba(0, 0, 0, .66), rgba(0, 0, 0, .08)), var(--image);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: clamp(24px, 5vw, 56px);
  filter: grayscale(1);
}

.visual-band h2 {
  max-width: 760px;
}

.page-hero {
  padding: clamp(58px, 8vw, 94px) 0 clamp(58px, 7vw, 78px);
  border-bottom: 1px solid var(--line);
}

.page-hero .lead {
  max-width: 780px;
  margin-top: 28px;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.intro-box {
  border-top: 1px solid var(--ink);
  padding-top: 24px;
}

.timeline {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.section.dark .timeline {
  background: #2b2b2b;
  border-color: #2b2b2b;
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  background: var(--paper);
  color: var(--ink);
  padding: 24px;
}

.section.dark .timeline-item {
  background: #0d0d0d;
  color: var(--white);
}

.timeline-item time {
  color: var(--muted);
  font-size: .86rem;
}

.section.dark .timeline-item time {
  color: #bdbdb7;
}

.portrait-layout {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.portrait-frame {
  position: relative;
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  background: #050505;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: -28px;
  background: var(--portrait-url) center / cover no-repeat;
  filter: grayscale(1) blur(22px) brightness(.5);
  transform: scale(1.08);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 52% 38%, rgba(255, 255, 255, .05), transparent 26%),
    radial-gradient(circle at 52% 42%, transparent 42%, rgba(0, 0, 0, .44) 100%);
  box-shadow: inset 0 0 72px rgba(0, 0, 0, .62);
}

.portrait-frame .portrait {
  position: relative;
  z-index: 1;
}

.portrait {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1);
  width: 100%;
}

.image-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .65fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: end;
}

.image-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: grayscale(1);
}

.image-feature .caption {
  border-top: 1px solid var(--ink);
  padding-top: 22px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 54px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  padding: 14px;
  border-radius: 0;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.legal-note {
  margin-bottom: 24px;
  color: var(--muted);
}

.legal-content {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 54px);
}

.legal-content h2,
.legal-content h3,
.legal-content h4 {
  margin-top: 34px;
  margin-bottom: 12px;
  line-height: 1.18;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  max-width: 900px;
}

.legal-content ul {
  padding-left: 1.2rem;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 54px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}

.footer-logo {
  width: 170px;
  background: var(--white);
  padding: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-small {
  margin-top: 44px;
  color: #aaa;
  font-size: .9rem;
}

@media (max-width: 920px) {
  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: grid !important;
    place-items: center;
    position: fixed;
    left: min(calc(100vw - 58px), 318px);
    top: 20px;
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
  }

  .mobile-panel {
    position: fixed;
    inset: 82px 0 auto 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 22px 20px 30px;
    flex-direction: column;
    gap: 18px;
    font-size: 1.25rem;
  }

  body.menu-open .mobile-panel {
    display: flex;
  }

  .hero-grid,
  .section-head,
  .split,
  .portrait-layout,
  .contact-grid,
  .image-feature,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .grid-3,
  .detail-grid,
  .artifact-board,
  .meta-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 560px) {
  .nav-wrap,
  .container {
    width: calc(100% - 32px);
  }

  .brand img {
    width: 138px;
  }

  h1 {
    font-size: clamp(2.15rem, 10.5vw, 2.65rem);
    line-height: 1.12;
    max-width: 10.5ch;
  }

  .page-hero h1 {
    font-size: clamp(2.1rem, 10vw, 2.55rem);
    line-height: 1.12;
    max-width: 12ch;
  }

  h2 {
    font-size: clamp(1.75rem, 8.8vw, 2.25rem);
    line-height: 1.13;
  }

  .lead {
    font-size: 1.02rem;
    line-height: 1.48;
  }

  .hero .lead {
    max-width: 31ch;
  }

  .page-hero .lead {
    max-width: 31ch;
  }

  .split p,
  .section-head p {
    max-width: 31ch;
  }

  .hero .button-row {
    max-width: 31ch;
  }

  .eyebrow {
    font-size: .68rem;
    letter-spacing: .11em;
  }

  .button {
    width: 100%;
    max-width: 100%;
  }

  .visual-band {
    padding: 22px 14px;
    min-height: 440px;
  }

  .card,
  .model-card,
  .offer-card {
    padding: 24px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
}

.form-status[data-state="success"] {
  color: #356f45;
}

.form-status[data-state="error"] {
  color: #9f2f2f;
}

button:disabled {
  cursor: wait;
  opacity: .7;
}
