:root {
  --ink: #181a16;
  --muted: #6b6f67;
  --paper: #f3f2ed;
  --paper-2: #e8e7e0;
  --line: rgba(24, 26, 22, 0.16);
  --white: #ffffff;
  --accent: #8e3a2b;
  --shell: 1240px;
  --gutter: clamp(20px, 4vw, 64px);
  --radius: 2px;
  --ease: cubic-bezier(.2,.75,.25,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: 16px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(var(--shell), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto 0;
  color: var(--white);
  transition: background .35s ease, color .35s ease, box-shadow .35s ease;
}
.site-header.is-solid {
  background: rgba(243,242,237,.96);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px);
}
.header-inner {
  width: min(var(--shell), calc(100% - (var(--gutter) * 2)));
  min-height: 84px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.15;
}
.brand-title { font-weight: 700; letter-spacing: -.02em; }
.brand-subtitle { margin-top: 4px; font-size: 11px; text-transform: uppercase; letter-spacing: .15em; opacity: .72; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { font-size: 14px; text-decoration: none; }
.site-nav a:hover { text-decoration: underline; }
.nav-external { opacity: .72; }
.menu-toggle { display: none; background: none; border: 0; color: inherit; padding: 8px 0; cursor: pointer; }
.menu-icon { display: inline-grid; gap: 5px; margin-left: 12px; }
.menu-icon i { display: block; width: 20px; height: 1px; background: currentColor; transition: transform .25s ease; }

.hero {
  min-height: 760px;
  height: 100svh;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: var(--white);
  background: #34372d;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('hero.webp');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  transform: scale(1.12);
  filter: saturate(.86) contrast(.98);
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20,22,17,.23), rgba(20,22,17,.02) 65%);
}
*/.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(12,14,11,.79) 0%, rgba(12,14,11,.26) 46%, rgba(12,14,11,.20) 100%),
    linear-gradient(to right, rgba(12,14,11,.34), transparent 64%);

}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(62px, 10vh, 112px);
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .17em;
  font-weight: 700;
}
.eyebrow.light { color: rgba(255,255,255,.72); }
h1, h2, p { margin-top: 0; }
h1, h2 { font-weight: 500; letter-spacing: -.045em; line-height: .96; }
h1 { max-width: 850px; margin-bottom: 28px; font-size: clamp(64px, 10vw, 146px); }
h2 { margin-bottom: 0; font-size: clamp(42px, 6vw, 78px); }
.hero-intro { max-width: 560px; margin-bottom: 34px; font-size: clamp(18px, 2vw, 24px); line-height: 1.45; color: rgba(255,255,255,.86); }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-index { position: absolute; z-index: 2; right: var(--gutter); bottom: 32px; font-size: 11px; letter-spacing: .14em; color: rgba(255,255,255,.68); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--white); color: var(--ink); }
.button-light:hover { background: #ecece7; }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: #2b2e28; }
.button-outline-light { border-color: rgba(255,255,255,.44); color: var(--white); }
.button-outline-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.text-link { font-size: 13px; font-weight: 700; }
.text-link.light { color: var(--white); }

.section { padding: clamp(88px, 12vw, 170px) 0; }
.grid-intro { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); gap: clamp(50px, 9vw, 130px); align-items: start; }
.prose { max-width: 520px; padding-top: 32px; color: #464a43; font-size: 18px; }
.prose p { margin-bottom: 1.35em; }
.prose a { color: var(--ink); }
.facts { margin-top: clamp(80px, 10vw, 135px); border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); }
.fact { padding: 28px 26px 0 0; min-height: 130px; border-right: 1px solid var(--line); }
.fact + .fact { padding-left: 30px; }
.fact:last-child { border-right: 0; }
.fact-number { display: block; margin-bottom: 8px; font-size: clamp(24px, 3vw, 38px); letter-spacing: -.035em; }
.fact-label { display: block; color: var(--muted); font-size: 13px; }

.panorama { background: var(--ink); overflow: hidden; }
.panorama img { width: 100%; height: clamp(200px, 22vw, 310px); object-fit: cover; transform: scale(1.01); }

.album { background: var(--paper-2); }
.album-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr); gap: clamp(50px, 10vw, 150px); align-items: start; }
.album-card { border-top: 1px solid var(--line); padding-top: 28px; font-size: 18px; }
.album-card p { max-width: 510px; }
.album-card .button { margin-top: 18px; }
.small-note { margin: 14px 0 0 !important; color: var(--muted); font-size: 12px; }

.cartoon-section { background: var(--paper); }
.cartoon-grid { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(380px, 1fr); gap: clamp(60px, 10vw, 150px); align-items: start; }
.cartoon-copy { position: sticky; top: 132px; max-width: 480px; }
.cartoon-copy > p:not(.eyebrow):not(.status) { color: #4c5048; font-size: 18px; margin-top: 34px; }
.status { margin-top: 52px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.status strong { color: var(--ink); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.status-dot { width: 7px; height: 7px; display: inline-block; border-radius: 50%; background: var(--accent); margin-right: 9px; vertical-align: 1px; }
.cartoon-frame { margin: 0; }
.cartoon-frame img { width: 100%; height: auto; background: #fff; box-shadow: 0 12px 40px rgba(17,19,15,.08); }
.cartoon-frame figcaption { margin-top: 12px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }

.more-work { background: #151712; color: var(--white); padding: clamp(80px, 10vw, 130px) 0; }
.more-work-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 60px; align-items: end; }
.more-work h2 { max-width: 850px; font-size: clamp(40px, 6vw, 70px); }

.site-footer { background: #0f100d; color: rgba(255,255,255,.72); padding: 70px 0 28px; font-size: 13px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 60px; padding-bottom: 70px; }
.footer-name { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 14px; }
address { font-style: normal; }
.footer-links { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.footer-links a { color: var(--white); }
.footer-bottom { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); display: flex; align-items: center; justify-content: space-between; gap: 30px; font-size: 11px; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--white); white-space: nowrap; }

@media (max-width: 860px) {
  :root { --gutter: 22px; }
  .header-inner { min-height: 72px; }
  .menu-toggle { display: inline-flex; align-items: center; }
  .site-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    background: var(--paper);
    color: var(--ink);
    display: grid;
    gap: 0;
    padding: 14px var(--gutter) 28px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform .32s var(--ease);
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav a { padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .site-nav a:last-child { border-bottom: 0; }
  body.menu-open { overflow: hidden; }
  .menu-toggle[aria-expanded="true"] .menu-icon i:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-icon i:last-child { transform: translateY(-3px) rotate(-45deg); }
  .hero { min-height: 680px; }
  .hero-image { background-size: auto 100%; }
  .grid-intro, .album-grid, .cartoon-grid, .more-work-inner { grid-template-columns: 1fr; }
  .prose { padding-top: 0; }
  .facts { grid-template-columns: 1fr; }
  .fact, .fact + .fact { min-height: 0; padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .fact:last-child { border-bottom: 0; }
  .cartoon-copy { position: static; max-width: 620px; }
  .more-work-inner { align-items: start; }
  .more-work .button { justify-self: start; }
}

@media (max-width: 560px) {
  .hero { min-height: 620px; }
  .hero-content { padding-bottom: 74px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  h1 { font-size: clamp(56px, 20vw, 82px); }
  h2 { font-size: clamp(38px, 12vw, 56px); }
  .section { padding: 84px 0; }
  .panorama img { height: 200px; }
  .footer-grid { grid-template-columns: 1fr; padding-bottom: 46px; }
  .footer-links { align-items: flex-start; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
