@font-face {
  font-family: "Museum Mono";
  src: url("../assets/fonts/JetBrainsMonoNL-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Museum Mono";
  src: url("../assets/fonts/JetBrainsMonoNL-SemiBold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

:root {
  color-scheme: dark;
  --wall: #16130f;
  --wall-deep: #100e0b;
  --paper: #eee5d1;
  --paper-muted: #b4a88f;
  --paper-dim: #847867;
  --brass: #c9a45e;
  --brass-bright: #e2c078;
  --hairline: #2e2820;
  --hairline-strong: #413928;
  --panel: #211c15;
  --mat: #d8cdb6;
  --serif: Iowan Old Style, Palatino Linotype, Book Antiqua, Palatino, Georgia, serif;
  --mono: "Museum Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --gutter: clamp(22px, 5vw, 76px);
  --measure: 1180px;
}

* { box-sizing: border-box; }
html { background: var(--wall); scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--wall);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
button { font: inherit; }
h1, h2, h3, p { margin: 0; }
::selection { background: var(--brass); color: var(--wall); }
:focus-visible { outline: 2px solid var(--brass-bright); outline-offset: 4px; }

.site-header {
  width: min(100% - (var(--gutter) * 2), var(--measure));
  min-height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  border-bottom: 1px solid var(--hairline);
}

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--paper); font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: .115em; text-decoration: none; text-transform: uppercase; white-space: nowrap; }
.brand__logo { width: 27px; height: 28px; flex: 0 0 auto; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 24px; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.site-nav a { color: var(--paper-muted); text-decoration: none; transition: color .18s ease; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--brass-bright); }
.menu-button { display: none; color: var(--paper); border: 1px solid var(--hairline-strong); background: transparent; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; padding: 9px 11px; text-transform: uppercase; }

.hero, .feature-section, .collection-section, .closing, .document-page { width: min(100% - (var(--gutter) * 2), var(--measure)); margin-inline: auto; }
.hero { min-height: min(760px, calc(100vh - 85px)); display: grid; grid-template-columns: minmax(0, .91fr) minmax(400px, 1.09fr); align-items: center; gap: clamp(42px, 7vw, 112px); padding-block: clamp(64px, 10vw, 132px); }
.hero__copy { max-width: 555px; }
.catalogue-label, .card-kicker { color: var(--brass); font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .15em; line-height: 1.3; text-transform: uppercase; }
h1, h2, h3 { font-weight: 400; }
.hero h1 { max-width: 9.7ch; margin-top: 18px; color: var(--paper); font-size: clamp(53px, 6.65vw, 91px); letter-spacing: -.048em; line-height: .96; }
.hero__lede { max-width: 33ch; margin-top: 26px; color: var(--paper-muted); font-size: clamp(20px, 2.1vw, 26px); line-height: 1.35; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 35px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 13px 18px; border: 1px solid transparent; border-radius: 0; font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .06em; line-height: 1.2; text-align: center; text-decoration: none; text-transform: uppercase; transition: transform .15s ease, background-color .15s ease, color .15s ease; }
.button:hover { transform: translateY(-2px); }
.button--brass { background: var(--brass); color: var(--wall); }
.button--brass:hover { background: var(--brass-bright); }
.button--quiet { border-color: var(--hairline-strong); color: var(--paper); }
.button--quiet:hover { border-color: var(--paper-dim); }

.hero__art { position: relative; min-width: 0; padding: 15px 15px 50px; border: 1px solid #4a3923; background: #21140a; box-shadow: 0 26px 31px rgba(0, 0, 0, .35), 0 0 0 4px rgba(112, 76, 30, .2), inset 0 0 0 1px rgba(221, 173, 83, .2); }
.hero__art img { width: 100%; aspect-ratio: 1.91 / 1; object-fit: cover; border: 8px solid #d8cdb6; box-shadow: inset 0 0 0 1px #76572e; filter: sepia(.07) saturate(.82) contrast(.96); }
.art-caption { position: absolute; right: 22px; bottom: 15px; left: 22px; display: flex; justify-content: space-between; color: #d5c6a6; font-family: var(--mono); font-size: 9px; letter-spacing: .055em; }
.art-caption span { color: var(--brass); }

.signpost { width: min(100% - (var(--gutter) * 2), var(--measure)); display: grid; grid-template-columns: 1fr auto auto 1fr; align-items: center; gap: 15px; margin: 0 auto; padding-block: 30px; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); color: var(--paper-muted); font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: .16em; text-align: center; text-transform: uppercase; }
.signpost span { height: 1px; background: var(--hairline-strong); }
.signpost b, .ornamental-divider b { width: 6px; height: 6px; transform: rotate(45deg); background: var(--brass); }

.feature-section { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(48px, 10vw, 154px); padding-block: clamp(89px, 12vw, 168px); }
.section-intro h2, .closing h2, .support-card h2 { max-width: 10ch; margin-top: 17px; font-size: clamp(38px, 4.9vw, 65px); letter-spacing: -.045em; line-height: 1.02; }
.feature-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 49px 1fr; gap: 16px; padding-block: 0 30px; border-bottom: 1px solid var(--hairline); }
.feature-list li + li { padding-top: 30px; }
.feature-number { color: var(--brass); font-family: var(--mono); font-size: 12px; letter-spacing: .06em; }
.feature-list h3 { font-size: clamp(27px, 2.9vw, 37px); letter-spacing: -.035em; line-height: 1.04; }
.feature-list p { max-width: 42ch; margin-top: 10px; color: var(--paper-muted); font-size: 18px; line-height: 1.4; }

.collection-section { padding-bottom: clamp(92px, 13vw, 170px); }
.collection-section > .section-intro { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-bottom: 35px; border-bottom: 1px solid var(--hairline); }
.collection-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.collection-card { position: relative; min-height: 380px; overflow: hidden; padding: clamp(25px, 3vw, 42px); border: 1px solid var(--hairline-strong); background: #211c15; }
.collection-card--wide { grid-row: span 2; min-height: 775px; background: #1b1712; }
.collection-card h3 { position: relative; z-index: 1; max-width: 9.5ch; margin-top: 15px; font-size: clamp(34px, 3.5vw, 47px); letter-spacing: -.042em; line-height: 1; }
.collection-card p:not(.card-kicker) { position: relative; z-index: 1; max-width: 28ch; margin-top: 16px; color: var(--paper-muted); font-size: 17px; line-height: 1.4; }
.mini-frame { position: absolute; display: block; border: 7px solid #60471f; outline: 2px solid rgba(225, 189, 110, .36); background: #6b6549; box-shadow: 0 16px 21px rgba(0,0,0,.42), inset 0 0 0 7px #d8cdb6, inset 0 0 0 9px #8b714a; }
.mini-frame--landscape { width: min(76%, 390px); aspect-ratio: 4 / 3; right: -22px; bottom: 52px; transform: rotate(2deg); }
.mini-frame--portrait { width: 145px; aspect-ratio: 3 / 4; right: 30px; bottom: -39px; transform: rotate(-3deg); }
.collection-card--privacy { display: flex; flex-direction: column; justify-content: center; background: #282116; }
.text-link { position: relative; z-index: 1; width: fit-content; margin-top: 28px; padding-bottom: 5px; border-bottom: 1px solid var(--brass); color: var(--brass-bright); font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.text-link span { margin-left: 9px; }

.closing { display: flex; flex-direction: column; align-items: center; padding-block: clamp(86px, 13vw, 170px); border-top: 1px solid var(--hairline); text-align: center; }
.closing h2 { max-width: 11ch; }
.closing > p:not(.catalogue-label) { max-width: 37ch; margin-top: 21px; color: var(--paper-muted); font-size: 20px; line-height: 1.35; }
.closing .button { margin-top: 33px; }

.document-page { max-width: 810px; }
.document-hero { padding-block: clamp(58px, 8vw, 108px) 42px; }
.back-link { display: inline-flex; align-items: center; gap: 10px; margin-bottom: clamp(54px, 7vw, 94px); color: var(--paper-muted); font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; }
.back-link:hover { color: var(--brass-bright); }
.document-hero h1 { max-width: 13ch; margin-top: 18px; font-size: clamp(49px, 6.5vw, 82px); letter-spacing: -.05em; line-height: .98; }
.document-lede { max-width: 35ch; margin-top: 24px; color: var(--paper-muted); font-size: clamp(20px, 2.5vw, 26px); line-height: 1.35; }
.document-hero .button { margin-top: 32px; }
.ornamental-divider { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px; margin-top: 38px; }
.ornamental-divider span { height: 1px; background: var(--hairline-strong); }
.privacy-promises { display: grid; gap: 0; }
.privacy-promises article { padding-block: 22px; border-bottom: 1px solid var(--hairline); }
.privacy-promises article:first-child { border-top: 1px solid var(--hairline); }
.privacy-promises article > p:last-child { max-width: 57ch; margin-top: 6px; color: var(--paper); font-size: 19px; line-height: 1.42; }
.document-note { padding-block: 38px clamp(78px, 10vw, 130px); }
.document-note .ornamental-divider { margin-top: 0; }
.document-note > p { margin-top: 34px; color: var(--paper-muted); font-size: 19px; line-height: 1.48; }

.support-page { max-width: 920px; }
.faq-section { padding-bottom: clamp(72px, 10vw, 126px); }
.faq-section .section-intro { padding-bottom: 34px; border-bottom: 1px solid var(--hairline); }
.faq-list { border-bottom: 1px solid var(--hairline); }
details { border-top: 1px solid var(--hairline); }
details:first-child { border-top: 0; }
summary { position: relative; padding: 25px 40px 25px 0; cursor: pointer; color: var(--paper); font-size: clamp(24px, 3vw, 31px); letter-spacing: -.03em; line-height: 1.15; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { position: absolute; top: 24px; right: 5px; color: var(--brass); font-family: var(--mono); font-size: 22px; font-weight: 400; content: "+"; }
details[open] summary::after { content: "−"; }
details p { max-width: 58ch; padding: 0 0 25px; color: var(--paper-muted); font-size: 18px; line-height: 1.45; }
.support-card { margin-bottom: clamp(80px, 11vw, 143px); padding: clamp(30px, 5vw, 57px); border: 1px solid var(--hairline-strong); background: #292217; }
.support-card h2 { margin-top: 13px; }
.support-card > p:not(.catalogue-label) { max-width: 38ch; margin-top: 18px; color: var(--paper-muted); font-size: 19px; line-height: 1.43; }

.site-footer { width: min(100% - (var(--gutter) * 2), var(--measure)); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; margin-inline: auto; padding-block: 30px 43px; border-top: 1px solid var(--hairline); }
.brand--footer { color: var(--paper-muted); }
.site-footer p { color: var(--paper-dim); font-family: var(--mono); font-size: 9px; letter-spacing: .055em; text-align: center; }
.site-footer nav { display: flex; justify-content: flex-end; gap: 19px; }
.site-footer nav a { color: var(--paper-muted); font-family: var(--mono); font-size: 10px; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; }
.site-footer nav a:hover { color: var(--brass-bright); }

@media (max-width: 760px) {
  .site-header { min-height: 72px; position: relative; }
  .site-nav { position: absolute; z-index: 5; top: calc(100% + 9px); right: 0; display: none; min-width: 164px; align-items: stretch; flex-direction: column; gap: 0; border: 1px solid var(--hairline-strong); background: #201a13; box-shadow: 0 18px 32px rgba(0,0,0,.33); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 16px; border-bottom: 1px solid var(--hairline); }
  .site-nav a:last-child { border-bottom: 0; }
  .menu-button { display: inline-flex; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 57px; padding-block: 58px 82px; }
  .hero h1 { max-width: 8.9ch; }
  .hero__art { width: calc(100% + 12px); margin-left: -6px; }
  .signpost { grid-template-columns: minmax(30px, 1fr) auto auto minmax(30px, 1fr); gap: 9px; font-size: 8px; letter-spacing: .085em; }
  .feature-section { grid-template-columns: 1fr; gap: 53px; padding-block: 80px; }
  .collection-section > .section-intro { align-items: start; flex-direction: column; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-card--wide { grid-row: auto; min-height: 590px; }
  .collection-card { min-height: 355px; }
  .collection-card--privacy { min-height: 330px; }
  .mini-frame--landscape { right: -14px; bottom: 42px; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; gap: 17px; text-align: center; }
  .site-footer nav { justify-content: center; }
  .document-hero { padding-top: 48px; }
  .back-link { margin-bottom: 53px; }
  .privacy-promises article > p:last-child, .document-note > p { font-size: 18px; }
}

@media (max-width: 420px) {
  .brand { font-size: 10px; letter-spacing: .08em; }
  .brand__logo { width: 23px; height: 24px; }
  .hero__lede { font-size: 19px; }
  .button { width: 100%; }
  .feature-list li { grid-template-columns: 39px 1fr; gap: 11px; }
  .feature-list p { font-size: 17px; }
  .collection-card--wide { min-height: 525px; }
  .collection-card h3 { font-size: 36px; }
  .document-hero h1 { font-size: 49px; }
}
