@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/inter-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/instrument-serif-italic.woff2') format('woff2');
}
:root {
  color-scheme: dark;
  --navy: #08111f;
  --elevated: #101b2b;
  --paper: #f7f2ea;
  --silver: #e8e4dc;
  --secondary: #c8cbd3;
  --ink: #101114;
  --muted: #62656d;
  --gold: #e6a93a;
  --line: #253044;
  --paper-line: #d9d1c3;
  --s1: 4px;
  --s2: 8px;
  --s3: 12px;
  --s4: 16px;
  --s6: 24px;
  --s8: 32px;
  --s12: 48px;
  --s18: 72px;
  --s24: 96px;
  --s32: 128px;
  --gutter: 64px;
  --font: Inter, 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;
  --display: clamp(64px, 7.7vw, 112px);
  --heading: clamp(36px, 4.6vw, 64px);
  --row-title: clamp(28px, 3vw, 36px);
  --body: 17px;
  --small: 15px;
  --label: 11px;
  --nav: 13px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --duration: 220ms;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--s8); }
body { margin: 0; background: var(--navy); color: var(--silver); font: 400 var(--body)/1.7 var(--font); -webkit-font-smoothing: antialiased; }
body, p, h1, h2, h3 { word-break: keep-all; overflow-wrap: break-word; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { font-weight: 500; text-wrap: balance; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
button:disabled { cursor: default; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--gold); color: var(--navy); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 6px; }
.light :focus-visible { outline-color: var(--ink); }
.shell { width: min(100%, 1408px); margin-inline: auto; padding-inline: var(--gutter); }
.light { color-scheme: light; background: var(--paper); color: var(--ink); }
.eyebrow { display: flex; align-items: center; gap: var(--s3); font-size: var(--label); font-weight: 500; line-height: 16px; letter-spacing: 1.5px; text-transform: uppercase; }
.eyebrow .index { color: var(--gold); }
.light .eyebrow .index { color: var(--muted); }
.eyebrow .dash { width: var(--s6); height: 1px; background: currentColor; opacity: .45; }
.section-heading h2 { margin-top: var(--s8); font-size: var(--heading); line-height: 1.15; letter-spacing: -.045em; }
.serif { font-family: var(--serif); font-weight: 400; font-style: italic; letter-spacing: -.035em; }
.button { min-height: var(--s12); padding: var(--s4) var(--s6); display: inline-flex; align-items: center; justify-content: center; gap: var(--s8); background: var(--silver); color: var(--ink); font-size: var(--nav); line-height: 20px; font-weight: 500; border: 1px solid var(--silver); transition: transform var(--duration) var(--ease); }
.button--outline { background: transparent; color: var(--silver); border-color: var(--line); }
.arrow { display: inline-block; font-size: 20px; line-height: 1; transition: transform var(--duration) var(--ease); }
.button:is(:hover, :focus-visible) .arrow, .text-link:is(:hover, :focus-visible) .arrow { transform: translate(4px, -4px); }
.button:active { transform: scale(.98); }
.text-link { display: inline-flex; align-items: center; gap: var(--s4); min-height: 44px; font-size: var(--nav); }
.text-link:is(:hover, :focus-visible) { text-decoration: underline; text-underline-offset: 6px; }
.tag { display: inline-block; padding: var(--s1) var(--s2); border: 1px solid var(--paper-line); border-radius: 6px; font-size: var(--label); line-height: 16px; letter-spacing: .5px; }
.brand { display: inline-flex; align-items: center; gap: var(--s3); min-height: 44px; flex-shrink: 0; }
.brand img { width: var(--s12); height: auto; }
.brand-name { display: block; font-size: 17px; line-height: 20px; font-weight: 500; letter-spacing: -.5px; }
.brand-studio { display: block; margin-top: var(--s1); font-size: 9px; line-height: 12px; letter-spacing: 3px; }
.skip-link { position: fixed; top: var(--s4); left: var(--s4); z-index: 20; padding: var(--s3) var(--s6); background: var(--paper); color: var(--ink); transform: translateY(-200%); }
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
[hidden] { display: none !important; }
@media (max-width: 959px) { :root { --gutter: 48px; } }
@media (max-width: 639px) { :root { --gutter: 24px; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .button:is(:hover, :focus-visible) .arrow, .text-link:is(:hover, :focus-visible) .arrow, .button:active { transform: none; }
}
