:root {
  --ink: #0b0b0f;
  --ink-soft: #17171d;
  --paper: #f5f0e8;
  --paper-deep: #e7dfd4;
  --red: #d7273f;
  --gold: #d8ad54;
  --blue: #0e4ec7;
  --white: #fffdf9;
  --muted: #716d68;
  --line: rgba(11, 11, 15, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --wrap: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.wrap { width: var(--wrap); margin-inline: auto; }
.skip {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-150%);
}
.skip:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: var(--white);
  background: rgba(11, 11, 15, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}
.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.brand strong {
  display: block;
  font: 700 1.05rem/1.05 var(--serif);
  letter-spacing: 0.01em;
}
.brand small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--white); }
.menu-button {
  display: none;
  border: 0;
  color: var(--white);
  background: transparent;
  font-size: 1.6rem;
}
.button {
  min-height: 48px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--red);
  color: var(--white);
  background: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button.outline { color: var(--white); background: transparent; border-color: rgba(255, 255, 255, 0.5); }
.button.dark { color: var(--white); background: var(--ink); border-color: var(--ink); }
.button.light { color: var(--ink); background: var(--paper); border-color: var(--paper); }

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
  color: var(--white);
  background: var(--ink);
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(64px, 8vw, 118px) clamp(28px, 7vw, 108px) 72px max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.kicker::before { width: 48px; height: 3px; content: ""; background: var(--red); }
.hero h1 {
  max-width: 780px;
  margin: 24px 0 22px;
  font: 700 clamp(4rem, 8.4vw, 8.7rem)/0.79 var(--serif);
  letter-spacing: -0.065em;
}
.hero h1 em { display: block; color: var(--red); font-weight: 400; }
.hero .lead { max-width: 650px; margin: 0; color: rgba(255, 255, 255, 0.76); font-size: clamp(1.05rem, 1.6vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-facts {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.hero-facts div { padding-top: 15px; border-top: 1px solid rgba(255, 255, 255, 0.2); }
.hero-facts strong { display: block; font: 700 clamp(1.45rem, 3vw, 2.3rem)/1 var(--serif); }
.hero-facts span { display: block; margin-top: 8px; color: rgba(255, 255, 255, 0.58); font-size: 0.76rem; letter-spacing: 0.05em; text-transform: uppercase; }
.hero-visual { position: relative; min-height: 620px; overflow: hidden; background: var(--red); }
.hero-visual::before {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 17%;
  content: "";
  background: linear-gradient(90deg, var(--ink), transparent);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.hero-stamp {
  position: absolute;
  right: 28px;
  bottom: 28px;
  padding: 12px 15px;
  color: var(--ink);
  background: var(--paper);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.side-word {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 18px;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left top;
}

.ticker { overflow: hidden; color: var(--ink); background: var(--gold); border-block: 1px solid var(--ink); }
.ticker-track {
  min-width: max-content;
  padding: 15px 0;
  display: flex;
  gap: 34px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: ticker 24s linear infinite;
}
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .ticker-track { animation: none; } * { transition: none !important; } }

.section { padding: clamp(82px, 10vw, 142px) 0; }
.section.dark { color: var(--white); background: var(--ink); }
.section.red { color: var(--white); background: var(--red); }
.section-head {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 48px;
}
.eyebrow { color: var(--red); font-size: 0.76rem; font-weight: 900; letter-spacing: 0.2em; text-transform: uppercase; }
.dark .eyebrow, .red .eyebrow { color: var(--gold); }
.title { max-width: 850px; margin: 12px 0 0; font: 700 clamp(2.8rem, 6.5vw, 6.7rem)/0.9 var(--serif); letter-spacing: -0.055em; }
.section-head p, .lead { font-size: 1.1rem; }
.muted { color: var(--muted); }
.dark .muted, .dark .section-head p { color: rgba(255, 255, 255, 0.64); }

.manifesto-grid { display: grid; grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr); gap: clamp(40px, 8vw, 112px); align-items: center; }
.manifesto-photo { position: relative; width: min(100%, 390px); justify-self: center; }
.manifesto-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  image-rendering: auto;
  filter: contrast(1.055) saturate(1.025);
}
.manifesto-photo::after { position: absolute; z-index: -1; right: -18px; bottom: -18px; width: 64%; height: 55%; content: ""; background: var(--blue); }
.manifesto-copy h2 { margin: 14px 0 24px; font: 700 clamp(3rem, 6vw, 6rem)/0.9 var(--serif); letter-spacing: -0.05em; }
.manifesto-copy p { max-width: 650px; font-size: 1.08rem; }
.territories { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.territories span { padding: 8px 12px; border: 1px solid var(--line); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }

.work-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; grid-template-rows: repeat(2, minmax(280px, 420px)); gap: 16px; }
.work-card { position: relative; overflow: hidden; color: var(--white); background: var(--ink-soft); text-decoration: none; }
.work-card:first-child { grid-row: 1 / 3; }
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.work-card:hover img, .work-card:focus-visible img { transform: scale(1.035); }
.work-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.84)); }
.work-card-copy { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 28px; }
.work-card-copy small { color: var(--gold); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.17em; text-transform: uppercase; }
.work-card-copy h3 { margin: 8px 0 5px; font: 700 clamp(1.7rem, 3.2vw, 3.1rem)/0.98 var(--serif); }
.work-card-copy p { margin: 0; color: rgba(255, 255, 255, 0.72); }
.section-action { margin-top: 32px; display: flex; justify-content: flex-end; }

.brand-stage { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 70px; align-items: start; }
.brand-stage h2 { margin: 12px 0 20px; font: 700 clamp(3rem, 6vw, 6rem)/0.9 var(--serif); letter-spacing: -0.055em; }
.brand-list { border-top: 1px solid rgba(255, 255, 255, 0.26); }
.brand-list a {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  color: var(--white);
  font: 700 clamp(1.5rem, 3vw, 2.7rem)/1 var(--serif);
  text-decoration: none;
}
.brand-list a span { color: var(--gold); font: 800 0.72rem/1 var(--sans); letter-spacing: 0.13em; text-transform: uppercase; }

.cta-band { padding: 76px 0; color: var(--white); background: var(--blue); }
.cta-band .wrap { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 48px; }
.cta-band h2 { max-width: 820px; margin: 0; font: 700 clamp(2.5rem, 6vw, 5.8rem)/0.92 var(--serif); letter-spacing: -0.05em; }
.cta-band p { max-width: 720px; margin: 18px 0 0; color: rgba(255, 255, 255, 0.76); }

.page-hero { padding: clamp(80px, 11vw, 152px) 0 72px; color: var(--white); background: var(--ink); }
.page-hero h1 { max-width: 1020px; margin: 16px 0 22px; font: 700 clamp(3.7rem, 8.5vw, 8.5rem)/0.84 var(--serif); letter-spacing: -0.065em; }
.page-hero p { max-width: 720px; color: rgba(255,255,255,0.7); font-size: 1.12rem; }
.portfolio-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.portfolio-row { display: grid; grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr); min-height: 580px; background: var(--paper); }
.portfolio-row:nth-child(even) { grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr); }
.portfolio-row:nth-child(even) img { order: 2; }
.portfolio-row img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-copy { padding: clamp(38px, 7vw, 92px); display: flex; flex-direction: column; justify-content: center; }
.portfolio-copy h2 { margin: 12px 0 18px; font: 700 clamp(2.5rem, 5vw, 5rem)/0.92 var(--serif); letter-spacing: -0.05em; }
.source-note { margin: 20px 0 26px; color: var(--muted); font-size: 0.86rem; }

.kit-cover { min-height: calc(100vh - 78px); display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr); color: var(--white); background: var(--ink); }
.kit-cover-copy { padding: clamp(70px, 9vw, 130px) clamp(26px, 7vw, 100px) 70px max(24px, calc((100vw - 1180px) / 2)); display: flex; flex-direction: column; justify-content: center; }
.kit-cover h1 { margin: 18px 0 20px; font: 700 clamp(4rem, 8.5vw, 8.7rem)/0.8 var(--serif); letter-spacing: -0.065em; }
.kit-cover .lead { max-width: 650px; color: rgba(255,255,255,0.72); }
.kit-cover img { width: 100%; height: 100%; object-fit: cover; }
.print-action { margin-top: 28px; align-self: flex-start; }
.metrics { margin-top: 42px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-block: 1px solid var(--line); }
.metric { padding: 30px 22px 30px 0; }
.metric + .metric { padding-left: 22px; border-left: 1px solid var(--line); }
.metric strong { display: block; font: 700 clamp(2.2rem, 5vw, 4.6rem)/0.9 var(--serif); letter-spacing: -0.04em; }
.metric span { display: block; margin-top: 12px; color: var(--muted); font-size: 0.82rem; }
.format-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.format-card { min-height: 230px; padding: 28px; border: 1px solid rgba(255,255,255,0.2); display: flex; flex-direction: column; justify-content: flex-end; }
.format-card b { font: 700 2rem/1 var(--serif); }
.format-card p { margin-bottom: 0; color: rgba(255,255,255,0.66); }
.kit-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.kit-gallery figure { margin: 0; }
.kit-gallery img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.kit-gallery figcaption { padding-top: 10px; color: var(--muted); font-size: 0.78rem; }

.proposal-box { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr); gap: clamp(40px, 8vw, 100px); }
.proposal-box h2 { margin: 12px 0 20px; font: 700 clamp(2.8rem, 6vw, 5.8rem)/0.9 var(--serif); letter-spacing: -0.05em; }
.briefing-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.briefing-form label { display: grid; gap: 7px; color: var(--muted); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.briefing-form label.full { grid-column: 1 / -1; }
.briefing-form input, .briefing-form textarea, .briefing-form select {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255,255,255,0.5);
}
.briefing-form textarea { min-height: 130px; resize: vertical; }
.briefing-form .button { grid-column: 1 / -1; justify-self: start; border: 0; cursor: pointer; }
.form-note { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: 0.84rem; }

.editor-shell { min-height: calc(100vh - 78px); padding: 34px 0; background: #d8d5d0; }
.editor-grid { display: grid; grid-template-columns: 360px minmax(0, 1fr); gap: 18px; }
.editor-panel { padding: 26px; background: var(--paper); box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.editor-panel h1 { margin: 10px 0 18px; font: 700 2.3rem/1 var(--serif); }
.editor-panel label { margin-top: 17px; display: grid; gap: 7px; color: var(--muted); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; }
.editor-panel textarea { width: 100%; min-height: 92px; padding: 12px; border: 1px solid var(--line); resize: vertical; }
.editor-panel .button { width: 100%; margin-top: 18px; border: 0; cursor: pointer; }
.editor-status { min-height: 24px; color: var(--muted); font-size: 0.84rem; }
.editor-preview { min-height: 760px; background: white; box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.editor-preview iframe { width: 100%; height: 100%; min-height: 760px; border: 0; }

.site-footer { padding: 52px 0 26px; color: var(--white); background: var(--ink); }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 36px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: rgba(255,255,255,0.72); font-size: 0.82rem; font-weight: 700; text-decoration: none; text-transform: uppercase; }
.fine { margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.46); font-size: 0.74rem; }
.print-only { display: none; }

@media (max-width: 920px) {
  :root { --wrap: min(100% - 32px, 720px); }
  .menu-button { display: block; }
  .nav-links { position: absolute; top: 78px; right: 0; left: 0; padding: 24px; display: none; flex-direction: column; align-items: stretch; background: var(--ink); border-top: 1px solid rgba(255,255,255,0.12); }
  .nav-links.open { display: flex; }
  .nav-links .button { width: 100%; }
  .hero, .kit-cover { grid-template-columns: 1fr; }
  .hero-copy, .kit-cover-copy { padding-left: max(24px, calc((100vw - 720px) / 2)); padding-right: max(24px, calc((100vw - 720px) / 2)); }
  .hero-visual { min-height: 76vh; }
  .hero-visual::before { inset: 0 0 auto; width: 100%; height: 20%; background: linear-gradient(180deg, var(--ink), transparent); }
  .section-head, .manifesto-grid, .brand-stage, .proposal-box { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 540px 340px; }
  .work-card:first-child { grid-column: 1 / -1; grid-row: auto; }
  .cta-band .wrap { grid-template-columns: 1fr; }
  .portfolio-row, .portfolio-row:nth-child(even) { grid-template-columns: 1fr; }
  .portfolio-row:nth-child(even) img { order: 0; }
  .portfolio-row img { aspect-ratio: 4 / 5; }
  .editor-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --wrap: calc(100% - 28px); }
  .nav { min-height: 70px; }
  .brand strong { font-size: 0.96rem; }
  .brand small { font-size: 0.64rem; }
  .brand img { width: 42px; height: 42px; }
  .nav-links { top: 70px; }
  .hero { min-height: auto; }
  .hero-copy { padding-top: 68px; padding-bottom: 58px; }
  .hero h1 { font-size: clamp(3.6rem, 20vw, 6rem); }
  .hero-facts { grid-template-columns: 1fr 1fr; }
  .hero-facts div:last-child { grid-column: 1 / -1; }
  .hero-visual { min-height: 570px; }
  .manifesto-photo::after { right: 0; }
  .manifesto-photo { width: min(86vw, 310px); }
  .section { padding: 76px 0; }
  .title { font-size: clamp(2.7rem, 15vw, 4.7rem); }
  .work-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(3, 460px); }
  .work-card:first-child { grid-column: auto; }
  .brand-stage { gap: 42px; }
  .metrics, .format-grid, .kit-gallery { grid-template-columns: 1fr; }
  .metric + .metric { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .briefing-form { grid-template-columns: 1fr; }
  .briefing-form label.full, .briefing-form .button, .form-note { grid-column: auto; }
  .footer-top { flex-direction: column; }
}

@media print {
  @page { margin: 14mm; }
  body { color: #000; background: #fff; }
  .site-header, .site-footer, .print-action, .briefing-form, .ticker { display: none !important; }
  .print-only { display: block; }
  .kit-cover { min-height: auto; grid-template-columns: 1fr 0.72fr; color: #fff; print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .kit-cover-copy { padding: 28px; }
  .kit-cover h1 { font-size: 4rem; }
  .section { padding: 34px 0; break-inside: avoid; }
  .title { font-size: 3.4rem; }
  .format-card { min-height: 160px; }
  a { text-decoration: none; }
}
