:root {
  --cream: #f6efe5;
  --paper: #fffbf5;
  --ink: #1b1210;
  --ink-soft: #4a3d39;
  --red: #981d1f;
  --red-bright: #c82d2b;
  --blue: #3965a6;
  --blue-deep: #1f3f7a;
  --blush: #ead5c8;
  --line: rgba(27, 18, 16, 0.16);
  --serif: "Playfair Display", "Times New Roman", serif;
  --sans: "Montserrat", "Segoe UI", system-ui, sans-serif;
  --gutter: clamp(20px, 5vw, 72px);
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.04; margin: 0; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }
em { font-style: italic; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: var(--radius);
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

/* Cabeçalho */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px var(--gutter);
  background: rgba(246, 239, 229, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-family: var(--serif); font-weight: 700; font-size: 1.15rem; }
.brand img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--red); }
.nav-links { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 32px); }
.nav-links a {
  text-decoration: none; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 0; position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px; background: var(--red); transition: right 0.25s ease;
}
.nav-links a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { background: var(--red); color: #fff; padding: 11px 18px !important; border-radius: var(--radius); transition: background 0.2s; }
.nav-cta:hover { background: var(--ink); }
.menu-button {
  display: none; background: transparent; border: 2px solid var(--ink); color: var(--ink);
  font: 700 0.75rem var(--sans); letter-spacing: 0.1em; text-transform: uppercase; padding: 10px 16px; border-radius: var(--radius); cursor: pointer;
}

/* Faixa de assinatura */
.ticker { background: var(--red); color: var(--cream); overflow: hidden; white-space: nowrap; border-block: 1px solid var(--ink); }
.ticker-track { display: inline-flex; animation: slide 38s linear infinite; }
.ticker span { padding: 11px 0; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
@keyframes slide { to { transform: translateX(-50%); } }

/* Botões */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--red); color: #fff; text-decoration: none; border: 2px solid var(--red); border-radius: var(--radius);
  padding: 15px 26px; font: 700 0.82rem var(--sans); letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.button:hover { background: var(--ink); border-color: var(--ink); transform: translateY(-2px); }
.button.secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.button.secondary:hover { background: var(--ink); color: #fff; }
.button.light { background: var(--cream); color: var(--red); border-color: var(--cream); }
.button.light:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* Etiquetas de destaque (assinatura dos carrosséis) */
.label { display: inline; padding: 0.06em 0.34em; color: #fff; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.label.red { background: var(--red); }
.label.blue { background: var(--blue); }
.eyebrow { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 18px; }
.bolt { display: inline-block; width: 0.7em; height: 1em; vertical-align: -0.1em; }

/* Hero */
.hero {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(28px, 5vw, 80px);
  align-items: center; padding: clamp(36px, 6vw, 80px) var(--gutter) clamp(48px, 7vw, 96px);
  max-width: 1440px; margin: 0 auto;
}
.hero h1 { font-size: clamp(3.4rem, 9.4vw, 8.6rem); font-weight: 900; letter-spacing: -0.03em; }
.hero h1 em { display: block; font-weight: 500; color: var(--red); }
.hero-tag { margin-top: 26px; font-size: clamp(1.15rem, 2.2vw, 1.6rem); line-height: 1.9; font-family: var(--serif); }
.hero-lead { max-width: 520px; margin-top: 22px; color: var(--ink-soft); font-size: 1.06rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-media { position: relative; justify-self: center; width: min(100%, 520px); }
.hero-frame { position: relative; aspect-ratio: 4 / 5; box-shadow: 18px 18px 0 var(--red); background: var(--blush); }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; }
.hero-stamp {
  position: absolute; left: -22px; bottom: 36px; transform: rotate(-4deg);
  background: var(--blue); color: #fff; padding: 12px 18px; font: 700 0.86rem var(--sans); letter-spacing: 0.14em; text-transform: uppercase;
  box-shadow: 6px 6px 0 var(--ink);
}

/* Números */
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 2px solid var(--ink); background: var(--paper); }
.metric { padding: clamp(22px, 3.4vw, 40px) var(--gutter); border-right: 1px solid var(--line); }
.metric:last-child { border-right: 0; }
.metric strong { display: block; font: 800 clamp(2.4rem, 5.4vw, 4.2rem)/1 var(--serif); color: var(--red); }
.metric span { display: block; margin-top: 8px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }

/* Seções */
.section { padding: clamp(60px, 9vw, 120px) var(--gutter); max-width: 1440px; margin: 0 auto; }
.section-heading { max-width: 780px; margin-bottom: clamp(30px, 5vw, 56px); }
.section-heading h2 { font-size: clamp(2.2rem, 5.4vw, 4.4rem); }
.section-heading h2 em { color: var(--red); }
.section-heading p { margin-top: 18px; font-size: 1.08rem; color: var(--ink-soft); }

/* Sobre */
.story-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(28px, 5vw, 80px); align-items: center; }
.story-collage { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.story-collage img { width: 100%; object-fit: cover; border-radius: var(--radius); }
.story-collage .one { aspect-ratio: 3 / 4.4; object-position: 50% 20%; }
.story-collage .two { aspect-ratio: 3 / 4.4; object-position: 60% 22%; margin-top: 56px; box-shadow: -10px 10px 0 var(--blue); }
.story-copy blockquote {
  margin: 0 0 24px; font: 500 italic clamp(1.6rem, 3.2vw, 2.5rem)/1.22 var(--serif); color: var(--red);
  padding-left: 20px; border-left: 4px solid var(--red);
}
.story-copy p { color: var(--ink-soft); font-size: 1.06rem; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.tag { border: 1.5px solid var(--ink); padding: 7px 14px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 999px; }

/* Territórios */
.territories { background: var(--paper); border-block: 1px solid var(--line); max-width: none; }
.territories-inner { max-width: 1440px; margin: 0 auto; }
.territory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 2px solid var(--ink); }
.territory { padding: clamp(26px, 3.4vw, 44px); border-right: 2px solid var(--ink); background: var(--paper); }
.territory:last-child { border-right: 0; }
.territory .num { font: 800 3.2rem/1 var(--serif); color: var(--red); display: block; margin-bottom: 14px; }
.territory h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: 12px; }
.territory p { color: var(--ink-soft); }
.territory a { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-deep); }

/* Rotina em imagens */
.strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
.strip figure { margin: 0; position: relative; aspect-ratio: 3 / 4; overflow: hidden; border-radius: var(--radius); background: var(--blush); }
.strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.strip figure:hover img { transform: scale(1.04); }
.strip img.piscina { object-position: 50% 30%; }
.strip img.praia { object-position: 50% 26%; }
.strip img.treino { object-position: 50% 62%; }
.strip figcaption {
  position: absolute; left: 12px; bottom: 12px; background: var(--paper); color: var(--ink); padding: 7px 12px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 2px;
}

/* Trabalhos */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.work-card { position: relative; display: block; text-decoration: none; aspect-ratio: 3 / 4.1; overflow: hidden; border-radius: var(--radius); background: var(--ink); color: #fff; }
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease, opacity 0.3s; }
.work-card:hover img { transform: scale(1.05); opacity: 0.9; }
.work-card img.gaab { object-position: 50% 30%; }
.work-card img.denavita { object-position: 50% 32%; }
.work-card img.ziyou { object-position: 40% 60%; }
.work-label { position: absolute; inset: auto 0 0 0; padding: 60px 22px 22px; background: linear-gradient(to top, rgba(20, 8, 8, 0.92), rgba(20, 8, 8, 0)); }
.work-label small { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #ffd9cf; margin-bottom: 6px; }
.work-label h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
.work-label span { display: block; margin-top: 8px; font-size: 0.85rem; opacity: 0.9; }
.also { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: baseline; }
.also strong { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; }
.also a { text-decoration: none; border-bottom: 2px solid var(--red); font-weight: 600; }
.also a:hover { background: var(--red); color: #fff; }

/* Cupons */
.coupons { background: var(--red); color: var(--cream); max-width: none; }
.coupons-inner { max-width: 1440px; margin: 0 auto; }
.coupons .section-heading h2 em, .coupons .section-heading p { color: #ffd9cf; }
.coupon-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 18px; }
.coupon {
  background: var(--cream); color: var(--ink); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.coupon::before, .coupon::after {
  content: ""; position: absolute; top: 50%; width: 18px; height: 18px; border-radius: 50%; background: var(--red); transform: translateY(-50%);
}
.coupon::before { left: -9px; } .coupon::after { right: -9px; }
.coupon h3 { font-size: 1.5rem; }
.coupon .note { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }
.code-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: stretch; margin-top: auto; }
.code {
  flex: 1 1 100%; display: flex; align-items: center; justify-content: center; border: 2px dashed var(--red); padding: 12px 10px;
  font: 800 0.98rem var(--sans); letter-spacing: 0.08em; color: var(--red); background: #fff; text-align: center; overflow-wrap: normal; word-break: normal;
}
.copy-button {
  border: 0; background: var(--ink); color: #fff; font: 700 0.72rem var(--sans); letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--radius); cursor: pointer; flex: 1 1 100%; padding: 13px 18px; transition: background 0.2s;
}
.copy-button:hover { background: var(--blue-deep); }
.copy-button.done { background: var(--blue); }
.coupon .go { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; color: var(--blue-deep); }
.coupon .go:hover { text-decoration: underline; }
.coupon.tile { background: transparent; border: 2px dashed rgba(255, 217, 207, 0.7); color: var(--cream); justify-content: center; }
.coupon.tile::before, .coupon.tile::after { display: none; }
.coupon.tile h3 { font-size: 1.7rem; }
.coupon.tile .note { color: #ffe7df; }
.coupon-foot { margin-top: 28px; font-size: 0.92rem; color: #ffd9cf; max-width: 720px; }

/* Produto */
.product { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); border: 2px solid var(--ink); background: var(--blue); color: #fff; }
.product-copy { padding: clamp(28px, 5vw, 64px); display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.product-copy .eyebrow { color: #cfe0ff; margin-bottom: 4px; }
.product-copy h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
.product-copy p { color: #e6efff; font-size: 1.06rem; max-width: 520px; }
.product-visual { position: relative; min-height: 320px; background: var(--ink); }
.product-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 24%; }

/* Parcerias */
.cta-section { background: var(--ink); color: var(--cream); max-width: none; }
.cta-inner { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: clamp(28px, 5vw, 72px); align-items: end; }
.cta-inner h2 { font-size: clamp(2.4rem, 6.2vw, 5.4rem); }
.cta-inner h2 em { color: #ff9c8f; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.cta-note { border-left: 3px solid var(--red-bright); padding-left: 24px; font-size: 1.06rem; color: #e6d9cf; }
.cta-note ul { margin: 0; padding: 0; list-style: none; }
.cta-note li { padding: 9px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); font-weight: 600; }
.cta-note li:last-child { border-bottom: 0; }

/* Rodapé */
.site-footer { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding: 30px var(--gutter); background: var(--paper); border-top: 2px solid var(--ink); }
.site-footer img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 2px solid var(--red); }
.site-footer div { flex: 1; min-width: 200px; }
.site-footer strong { display: block; font-family: var(--serif); font-size: 1.15rem; }
.site-footer span { font-size: 0.86rem; color: var(--ink-soft); }
.social { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.social a { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; border-bottom: 2px solid var(--red); padding-bottom: 2px; }
.social a:hover { background: var(--red); color: #fff; }

/* Mídia kit */
.kit-hero { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(28px, 5vw, 80px); align-items: center; padding: clamp(36px, 6vw, 80px) var(--gutter) clamp(40px, 6vw, 80px); max-width: 1440px; margin: 0 auto; }
.kit-hero h1 { font-size: clamp(3rem, 8vw, 7.4rem); font-weight: 900; letter-spacing: -0.03em; }
.kit-hero h1 em { display: block; color: var(--red); font-weight: 500; font-size: 0.42em; letter-spacing: 0; margin-top: 14px; line-height: 1.2; }
.kit-hero p.lead { margin-top: 22px; max-width: 520px; color: var(--ink-soft); font-size: 1.08rem; }
.kit-hero-media { justify-self: center; width: min(100%, 460px); aspect-ratio: 4 / 5; box-shadow: -16px 16px 0 var(--blue); background: var(--ink); }
.kit-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 16%; }
.kit-intro { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(28px, 5vw, 80px); }
.kit-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 22px; border: 2px solid var(--ink); }
.kit-stat { padding: 20px; background: var(--paper); border-right: 2px solid var(--ink); }
.kit-stat:last-child { border-right: 0; }
.kit-stat strong { display: block; font: 800 clamp(2rem, 4vw, 3rem)/1 var(--serif); color: var(--red); }
.kit-stat span { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.kit-source { font-size: 0.82rem; color: var(--ink-soft); margin-top: 12px; }
.lead { font: 500 italic clamp(1.4rem, 2.6vw, 2rem)/1.3 var(--serif); color: var(--red); margin-bottom: 20px; }
.kit-title { font-size: clamp(2rem, 4.4vw, 3.4rem); margin-bottom: 28px; }
.kit-title em { color: var(--red); }
.kit-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.kit-card { background: var(--paper); border: 2px solid var(--ink); padding: 26px; border-radius: var(--radius); }
.kit-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.kit-card p { color: var(--ink-soft); margin: 0; }
.kit-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.kit-gallery figure { margin: 0; aspect-ratio: 3 / 4.3; overflow: hidden; border-radius: var(--radius); background: var(--blush); }
.kit-gallery img { width: 100%; height: 100%; object-fit: cover; }
.kit-gallery img.notebook { object-position: 50% 42%; }
.kit-gallery img.plantao { object-position: 50% 30%; }
.kit-gallery img.celular { object-position: 50% 32%; }
.kit-gallery img.bike { object-position: 45% 40%; }
.format-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 2px solid var(--ink); }
.format-card { padding: clamp(24px, 3vw, 38px); background: var(--paper); border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.format-card:nth-child(2n) { border-right: 0; }
.format-card:nth-last-child(-n + 2) { border-bottom: 0; }
.format-card span { font: 800 2.4rem/1 var(--serif); color: var(--red); }
.format-card h3 { font-size: 1.5rem; margin: 10px 0; }
.format-card p { margin: 0; color: var(--ink-soft); }
.proof-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.proof-card { border-top: 4px solid var(--red); background: var(--paper); padding: 24px; }
.proof-card small { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-deep); }
.proof-card h3 { font-size: 1.5rem; margin: 6px 0 10px; }
.proof-card p { color: var(--ink-soft); }
.proof-card a { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); }
.contact-block {
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr); gap: clamp(24px, 4vw, 60px);
  background: var(--red); color: var(--cream); padding: clamp(40px, 6vw, 84px) var(--gutter);
}
.contact-copy h2 { font-size: clamp(2.2rem, 5.4vw, 4.4rem); }
.contact-copy p { max-width: 620px; margin-top: 18px; color: #ffe7df; font-size: 1.06rem; }
.contact-copy .eyebrow { color: #ffd9cf; }
.contact-list { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.contact-list li { border: 1.5px solid rgba(255, 255, 255, 0.55); padding: 6px 14px; border-radius: 999px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-card { background: var(--cream); color: var(--ink); padding: 26px; border-radius: var(--radius); align-self: start; display: flex; flex-direction: column; gap: 6px; }
.contact-card small { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-top: 10px; }
.contact-card small:first-child { margin-top: 0; }
.contact-card a:not(.button) { font-weight: 700; font-size: 1.02rem; overflow-wrap: anywhere; }
.contact-card .button { margin-top: 14px; }
.print-bar { padding: 26px var(--gutter); display: flex; justify-content: center; }

.redirect { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 24px; }

/* Revelação suave */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .menu-button { display: inline-flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--cream);
    border-bottom: 2px solid var(--ink); max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 420px; }
  .nav-links a { padding: 16px var(--gutter); border-top: 1px solid var(--line); }
  .nav-cta { border-radius: 0; text-align: center; }
  .hero, .kit-hero, .story-grid, .kit-intro, .cta-inner, .contact-block, .product { grid-template-columns: 1fr; }
  .hero-media { order: -1; width: min(86%, 440px); margin-bottom: 20px; }
  .hero-frame { box-shadow: 12px 12px 0 var(--red); }
  .hero-stamp { left: -8px; }
  .kit-hero-media { order: -1; width: min(82%, 400px); box-shadow: -12px 12px 0 var(--blue); }
  .territory-grid, .kit-cards { grid-template-columns: 1fr; }
  .territory { border-right: 0; border-bottom: 2px solid var(--ink); }
  .territory:last-child { border-bottom: 0; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .kit-gallery { grid-template-columns: 1fr 1fr; }
  .product-visual { min-height: 380px; }
  .cta-note { border-left: 0; padding-left: 0; border-top: 3px solid var(--red-bright); padding-top: 20px; }
}
@media (max-width: 640px) {
  .metrics { grid-template-columns: 1fr; }
  .metric { border-right: 0; border-bottom: 1px solid var(--line); }
  .metric:last-child { border-bottom: 0; }
  .story-collage .two { margin-top: 28px; }
  .strip { grid-template-columns: 1fr 1fr; }
  .strip figure:last-child { grid-column: 1 / -1; aspect-ratio: 4 / 3; }
  .work-grid, .proof-list, .format-grid { grid-template-columns: 1fr; }
  .format-card { border-right: 0 !important; border-bottom: 2px solid var(--ink) !important; }
  .format-card:last-child { border-bottom: 0 !important; }
  .hero-actions .button, .cta-actions .button { width: 100%; }
  .brand span { font-size: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}
@media print {
  @page { size: A4; margin: 14mm; }
  body { background: #fff; font-size: 11pt; }
  .site-header, .print-bar, .skip-link, .nav-links, .menu-button, .site-footer .social { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .kit-hero, .section, .contact-block { padding: 12mm 0; break-inside: avoid; }
  .contact-block { background: #fff; color: #000; border: 2px solid #000; padding: 8mm; }
  .contact-copy p, .contact-copy .eyebrow { color: #000; }
  .contact-list li { border-color: #000; }
  .kit-hero-media, .hero-frame { box-shadow: none; }
  .format-card, .proof-card, .kit-card, .kit-gallery figure { break-inside: avoid; }
  a { text-decoration: none; }
}
