@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --wine: #4a1028;
  --wine-2: #651c3a;
  --cream: #f4eee6;
  --paper: #fffaf5;
  --ink: #201b1a;
  --muted: #6f625f;
  --sage: #b9c1a7;
  --sage-dark: #596247;
  --coral: #d8795a;
  --line: rgba(32, 27, 26, 0.14);
  --shadow: 0 24px 70px rgba(60, 26, 35, 0.13);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font: 400 1rem/1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
}
body::selection { background: var(--wine); color: var(--cream); }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
}
.skip-link:focus { transform: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: clamp(76px, 10vw, 136px) 0; }
.section-tight { padding: clamp(54px, 7vw, 90px) 0; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow-light { color: #e7b9a9; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 0.98; }
h1 { font-size: clamp(3.4rem, 7.2vw, 7.1rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(2.65rem, 5vw, 5rem); letter-spacing: -0.045em; }
h3 { font-size: clamp(1.75rem, 3vw, 2.5rem); letter-spacing: -0.025em; }
.lead { max-width: 700px; color: var(--muted); font-size: clamp(1.03rem, 1.8vw, 1.24rem); }
.section-heading { display: grid; grid-template-columns: 1fr minmax(260px, 0.62fr); gap: 50px; align-items: end; margin-bottom: 54px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading .lead { margin-bottom: 4px; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  transition: background 0.25s, box-shadow 0.25s, color 0.25s;
  color: white;
}
.site-header.scrolled {
  background: rgba(244, 238, 230, 0.93);
  box-shadow: 0 1px 0 var(--line);
  color: var(--ink);
  backdrop-filter: blur(18px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 44px; height: 44px; border: 2px solid rgba(255,255,255,.7); border-radius: 50%; object-fit: cover; }
.site-header.scrolled .brand img { border-color: var(--wine); }
.brand strong { font: 600 1.4rem/1 var(--serif); letter-spacing: -0.02em; }
.brand span { display: block; margin-top: 4px; font-size: 0.61rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; opacity: .76; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { position: relative; font-size: .82rem; font-weight: 600; text-decoration: none; }
.nav-links a:not(.nav-cta)::after { content: ""; position: absolute; right: 0; bottom: -6px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 11px 18px; border: 1px solid currentColor; border-radius: 999px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid currentColor; border-radius: 50%; background: transparent; color: inherit; }

.hero { position: relative; min-height: 860px; background: var(--wine); color: white; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 12% 22%, rgba(216,121,90,.26), transparent 32%), linear-gradient(110deg, transparent 58%, rgba(0,0,0,.16)); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(390px, .96fr); min-height: 860px; align-items: end; }
.hero-copy { align-self: center; padding: 150px 30px 90px 0; }
.hero h1 { max-width: 720px; margin-bottom: 28px; }
.hero h1 em { color: #e6b1a0; font-weight: 500; }
.hero-intro { max-width: 590px; margin-bottom: 34px; color: rgba(255,255,255,.78); font-size: clamp(1.05rem,1.6vw,1.2rem); }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px; padding: 13px 22px; border: 1px solid transparent; border-radius: 999px; font-size: .86rem; font-weight: 700; text-decoration: none; cursor: pointer; transition: transform .2s, background .2s, color .2s, border-color .2s; }
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-light { background: var(--cream); color: var(--wine); }
.btn-outline-light { border-color: rgba(255,255,255,.55); color: white; background: transparent; }
.btn-wine { background: var(--wine); color: white; }
.btn-outline { border-color: var(--wine); color: var(--wine); background: transparent; }
.btn-coral { background: var(--coral); color: #24110d; }
.btn svg { width: 17px; height: 17px; }
.hero-photo { position: relative; height: 790px; align-self: end; }
.hero-photo::after { content: ""; position: absolute; inset: auto -10% 0 -15%; height: 45%; background: linear-gradient(transparent, rgba(74,16,40,.94)); pointer-events: none; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; border-radius: 220px 220px 0 0; filter: saturate(.9) contrast(1.02); transform: translateZ(0); }
.hero-seal { position: absolute; z-index: 2; left: -66px; bottom: 78px; display: grid; width: 142px; height: 142px; place-items: center; border: 1px solid rgba(255,255,255,.48); border-radius: 50%; background: rgba(74,16,40,.74); color: white; text-align: center; backdrop-filter: blur(10px); }
.hero-seal strong { font: 600 2rem/1 var(--serif); }
.hero-seal span { width: 95px; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }
.hero-meta { position: absolute; z-index: 3; right: 0; bottom: 32px; display: flex; gap: 28px; color: white; }
.hero-meta strong { display: block; font: 600 1.7rem/1 var(--serif); }
.hero-meta span { display: block; margin-top: 6px; font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; opacity: .72; }

.marquee { overflow: hidden; padding: 17px 0; background: var(--coral); color: #2b1510; }
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee span { display: inline-flex; align-items: center; gap: 28px; padding-right: 28px; font-size: .72rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.marquee span::after { content: "✦"; }
@keyframes marquee { to { transform: translateX(-50%); } }

.intro-grid { display: grid; grid-template-columns: minmax(300px,.75fr) minmax(0,1.25fr); gap: clamp(52px,8vw,110px); align-items: center; }
.portrait-frame { position: relative; }
.portrait-frame img { width: 100%; aspect-ratio: 4/5; border-radius: 210px 210px 26px 26px; object-fit: cover; }
.portrait-note { position: absolute; right: -30px; bottom: 42px; width: 190px; padding: 23px; border-radius: 22px; background: var(--sage); box-shadow: var(--shadow); font: 600 1.35rem/1.13 var(--serif); }
.story-copy h2 { max-width: 680px; }
.story-copy blockquote { margin: 34px 0; padding-left: 24px; border-left: 2px solid var(--coral); color: var(--wine); font: 500 clamp(1.5rem,2.5vw,2.2rem)/1.13 var(--serif); }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 38px; }
.fact { padding: 20px; border-top: 1px solid var(--line); }
.fact strong { display: block; font: 600 1.7rem/1.05 var(--serif); color: var(--wine); }
.fact span { display: block; margin-top: 7px; color: var(--muted); font-size: .75rem; }

.territories { background: var(--ink); color: white; }
.territory-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.18); }
.territory { position: relative; min-height: 290px; padding: 34px 26px; border-right: 1px solid rgba(255,255,255,.18); overflow: hidden; }
.territory:last-child { border-right: 0; }
.territory .number { color: #dfaa98; font-size: .75rem; font-weight: 700; }
.territory h3 { margin: 90px 0 14px; font-size: clamp(1.65rem,2.4vw,2.3rem); }
.territory p { margin: 0; color: rgba(255,255,255,.65); font-size: .88rem; }
.territory::after { content: ""; position: absolute; right: -80px; bottom: -80px; width: 160px; height: 160px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; transition: transform .4s; }
.territory:hover::after { transform: scale(1.45); }

.product { background: var(--paper); }
.product-card { display: grid; grid-template-columns: minmax(360px,.95fr) minmax(0,1.05fr); overflow: hidden; border-radius: 38px; background: var(--wine); color: white; box-shadow: var(--shadow); }
.product-visual { min-height: 620px; padding: 54px; background: radial-gradient(circle at 40% 30%, rgba(216,121,90,.38), transparent 38%), #2a101b; }
.product-visual img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 25px 30px rgba(0,0,0,.28)); }
.product-copy { padding: clamp(45px,6vw,82px); }
.product-copy h2 { margin-bottom: 22px; }
.product-copy > p { color: rgba(255,255,255,.72); }
.product-list { display: grid; gap: 0; margin: 34px 0; padding: 0; list-style: none; }
.product-list li { display: flex; gap: 13px; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.16); font-size: .88rem; }
.product-list li::before { content: "✓"; color: #e5b19f; font-weight: 700; }
.price-note { display: flex; align-items: baseline; gap: 12px; margin: 27px 0; }
.price-note strong { font: 600 2rem/1 var(--serif); }
.price-note span { color: rgba(255,255,255,.54); font-size: .7rem; }

.coupon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.coupon { position: relative; display: flex; min-height: 250px; flex-direction: column; padding: 27px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.34); transition: transform .25s, box-shadow .25s, background .25s; }
.coupon:hover { transform: translateY(-5px); background: var(--paper); box-shadow: var(--shadow); }
.coupon-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.coupon h3 { margin: 0; font-family: var(--sans); font-size: 1.05rem; letter-spacing: 0; }
.coupon small { color: var(--muted); }
.coupon-code { margin: auto 0 18px; color: var(--wine); font: 600 clamp(1.55rem,2.6vw,2.1rem)/1 var(--serif); letter-spacing: .03em; }
.copy-btn { align-self: flex-start; padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--ink); font-size: .72rem; font-weight: 700; cursor: pointer; }
.copy-btn:hover { border-color: var(--wine); color: var(--wine); }
.coupon-link { position: absolute; inset: 0; border-radius: inherit; }
.copy-btn, .coupon h3, .coupon small, .coupon-code { position: relative; z-index: 1; }
.coupon-warning { margin: 24px 0 0; color: var(--muted); font-size: .77rem; }

.work { background: var(--sage); }
.editorial-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 20px; }
.editorial-card { position: relative; overflow: hidden; min-height: 580px; border-radius: 30px; color: white; }
.editorial-card.small { min-height: 280px; }
.editorial-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.editorial-stack .editorial-card:first-child { grid-column: 1 / -1; }
.editorial-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.editorial-card:hover img { transform: scale(1.035); }
.editorial-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 42%, rgba(20,12,12,.85)); }
.editorial-card .caption { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 28px; }
.caption small { font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .75; }
.caption h3 { margin: 8px 0 0; font-size: clamp(1.55rem,2.2vw,2.2rem); }

.future { background: var(--paper); }
.future-card { display: grid; grid-template-columns: .84fr 1.16fr; min-height: 620px; overflow: hidden; border-radius: 38px; background: var(--wine); color: white; }
.future-image img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; }
.future-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(42px,7vw,90px); }
.future-copy p { color: rgba(255,255,255,.7); }
.status-pill { display: inline-flex; align-self: flex-start; align-items: center; gap: 9px; margin-bottom: 24px; padding: 8px 13px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.status-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #e9b39e; }
.fine-print { margin-top: 18px; font-size: .72rem; opacity: .66; }

.brand-partners { background: var(--cream); }
.partner-row { display: grid; grid-template-columns: repeat(5,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.partner-row a { display: grid; min-height: 135px; place-items: center; padding: 20px 12px; border-right: 1px solid var(--line); font: 600 clamp(1.2rem,2vw,1.7rem)/1 var(--serif); text-align: center; text-decoration: none; }
.partner-row a:last-child { border-right: 0; }
.partner-row a:hover { background: var(--paper); color: var(--wine); }

.brand-cta { padding: clamp(70px,10vw,130px) 0; background: var(--wine); color: white; }
.brand-cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 55px; align-items: center; }
.brand-cta h2 { max-width: 820px; margin-bottom: 0; }
.brand-cta p { max-width: 650px; color: rgba(255,255,255,.7); }

.site-footer { padding: 52px 0 28px; background: #160d10; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 45px; padding-bottom: 45px; }
.footer-brand { max-width: 440px; }
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p { color: rgba(255,255,255,.56); font-size: .86rem; }
.footer-col h3 { font: 600 .72rem/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; }
.footer-col a { display: block; margin: 10px 0; color: rgba(255,255,255,.65); font-size: .83rem; text-decoration: none; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.45); font-size: .69rem; }

.toast { position: fixed; z-index: 300; right: 22px; bottom: 22px; padding: 13px 18px; border-radius: 999px; background: var(--ink); color: white; font-size: .8rem; opacity: 0; transform: translateY(15px); pointer-events: none; transition: .25s; }
.toast.show { opacity: 1; transform: none; }
.reveal { opacity: 1; transform: none; transition: opacity .65s, transform .65s; }
.reveal.visible { opacity: 1; transform: none; }

.inner-page { background: var(--paper); }
.inner-page .site-header { position: sticky; background: rgba(244,238,230,.94); color: var(--ink); box-shadow: 0 1px 0 var(--line); }
.inner-page .brand img { border-color: var(--wine); }
.page-hero { position: relative; overflow: hidden; padding: clamp(78px,9vw,125px) 0; background: var(--wine); color: white; }
.page-hero::after { content: "CM"; position: absolute; right: -60px; bottom: -150px; color: rgba(255,255,255,.035); font: 600 28rem/1 var(--serif); }
.page-hero h1 { max-width: 900px; margin: 0 0 24px; font-size: clamp(3.2rem,7vw,6.8rem); }
.page-hero p { max-width: 700px; color: rgba(255,255,255,.7); font-size: 1.08rem; }
.page-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.kit-cover { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 680px; }
.kit-cover-image { position: relative; overflow: hidden; }
.kit-cover-image img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; transform: translateZ(0); }
.kit-cover-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(45px,8vw,110px); background: var(--wine); color: white; }
.kit-cover-copy h1 { margin-bottom: 24px; }
.kit-cover-copy .lead { color: rgba(255,255,255,.72); }
.metric-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.metric-card { padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: var(--cream); }
.metric-card strong { display: block; color: var(--wine); font: 600 clamp(2.5rem,5vw,4.3rem)/1 var(--serif); }
.metric-card span { display: block; margin-top: 10px; color: var(--muted); font-size: .78rem; }
.format-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.format-card { min-height: 250px; padding: 28px; border-radius: 24px; background: var(--ink); color: white; }
.format-card .num { color: #dfa891; font-size: .7rem; font-weight: 700; }
.format-card h3 { margin: 56px 0 13px; }
.format-card p { color: rgba(255,255,255,.63); font-size: .83rem; }
.portfolio-strip { display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; border-radius: 30px; background: var(--sage); }
.portfolio-strip img { width: 100%; height: 580px; object-fit: cover; }
.portfolio-strip-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px,7vw,84px); }

.proposal-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(45px,8vw,100px); align-items: start; }
.proposal-summary { position: sticky; top: 120px; padding: 34px; border-radius: 28px; background: var(--wine); color: white; }
.proposal-summary .price { display: block; margin: 18px 0 6px; font: 600 clamp(3rem,5vw,4.8rem)/1 var(--serif); }
.proposal-summary p { color: rgba(255,255,255,.68); }
.scope-list { padding: 0; list-style: none; }
.scope-list li { padding: 13px 0; border-top: 1px solid rgba(255,255,255,.15); font-size: .83rem; }
.scope-list li::before { content: "✓"; margin-right: 10px; color: #e6b19e; }
.comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.comparison-card { padding: 25px; border-radius: 22px; }
.comparison-card.before { background: #eee6de; }
.comparison-card.after { background: var(--sage); }
.comparison-card h3 { font-family: var(--sans); font-size: 1rem; letter-spacing: 0; }
.comparison-card ul { margin: 18px 0 0; padding-left: 18px; color: var(--muted); font-size: .82rem; }
.proposal-form { display: grid; gap: 14px; margin-top: 42px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .76rem; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 13px; background: white; padding: 13px 14px; color: var(--ink); }
.field textarea { min-height: 120px; resize: vertical; }
.form-note { color: var(--muted); font-size: .72rem; }

.brand-sheet-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.brand-block { padding: 32px; border: 1px solid var(--line); border-radius: 25px; }
.brand-block.wide { grid-column: 1 / -1; }
.swatches { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; }
.swatch { min-height: 155px; padding: 14px; border-radius: 18px; display: flex; align-items: end; color: white; font-size: .68rem; }
.swatch.light { color: var(--ink); border: 1px solid var(--line); }

@media (max-width: 980px) {
  .nav-links { position: fixed; top: 74px; right: 20px; left: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px; border-radius: 22px; background: var(--cream); color: var(--ink); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 10px; }
  .menu-toggle { display: grid; place-items: center; }
  .hero, .hero-grid { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 84px; }
  .hero-copy { padding: 70px 0 35px; }
  .hero-photo { height: min(720px, 92vw); }
  .hero-photo img { border-radius: 190px 190px 0 0; object-position: 50% 20%; }
  .hero-seal { left: 18px; bottom: 96px; }
  .hero-meta { right: 20px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .intro-grid, .product-card, .future-card, .kit-cover, .proposal-grid { grid-template-columns: 1fr; }
  .portrait-frame { width: min(620px, 88%); }
  .portrait-note { right: -8%; }
  .territory-grid { grid-template-columns: 1fr 1fr; }
  .territory:nth-child(2) { border-right: 0; }
  .territory:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  .product-visual { min-height: 480px; }
  .coupon-grid { grid-template-columns: 1fr 1fr; }
  .editorial-grid { grid-template-columns: 1fr; }
  .partner-row { grid-template-columns: repeat(3,1fr); }
  .partner-row a:nth-child(3) { border-right: 0; }
  .brand-cta-inner { grid-template-columns: 1fr; gap: 25px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .kit-cover-image { min-height: 620px; }
  .proposal-summary { position: static; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 74px; }
  .brand span { display: none; }
  h1 { font-size: clamp(3.15rem,15vw,4.8rem); }
  h2 { font-size: clamp(2.55rem,12vw,3.8rem); }
  .hero-copy { padding-top: 54px; }
  .hero-actions .btn { width: 100%; }
  .hero-photo { height: 122vw; max-height: 690px; }
  .hero-seal { width: 112px; height: 112px; bottom: 80px; }
  .hero-seal strong { font-size: 1.55rem; }
  .hero-seal span { font-size: .52rem; }
  .hero-meta { right: 10px; bottom: 25px; gap: 14px; }
  .hero-meta strong { font-size: 1.35rem; }
  .facts { grid-template-columns: 1fr; }
  .fact { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
  .portrait-frame { width: 100%; padding-right: 20px; }
  .portrait-note { right: 0; bottom: 24px; width: 162px; }
  .territory-grid, .coupon-grid, .editorial-stack, .metric-grid, .format-grid, .comparison, .brand-sheet-grid { grid-template-columns: 1fr; }
  .territory { min-height: 230px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .territory h3 { margin-top: 55px; }
  .product-card { border-radius: 25px; }
  .product-visual { min-height: 390px; padding: 25px; }
  .product-copy { padding: 34px 24px 40px; }
  .coupon { min-height: 210px; }
  .editorial-card, .editorial-card.small { min-height: 440px; }
  .editorial-stack .editorial-card:first-child { grid-column: auto; }
  .future-card { border-radius: 25px; }
  .future-image { min-height: 460px; }
  .partner-row { grid-template-columns: 1fr 1fr; }
  .partner-row a, .partner-row a:nth-child(3) { min-height: 105px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .partner-row a:nth-child(even) { border-right: 0; }
  .partner-row a:last-child { grid-column: 1 / -1; border-right: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .kit-cover-image { min-height: 500px; }
  .kit-cover-copy { padding: 50px 24px; }
  .portfolio-strip { grid-template-columns: 1fr; }
  .portfolio-strip img { height: 500px; }
  .swatches { grid-template-columns: 1fr 1fr; }
  .brand-block.wide { grid-column: auto; }
}

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

@media print {
  @page { size: A4; margin: 14mm; }
  .site-header, .screen-actions, .site-footer, .toast { display: none !important; }
  body { background: white; color: black; font-size: 10pt; }
  .section, .section-tight { padding: 16mm 0; }
  .kit-cover { min-height: 260mm; break-after: page; }
  .kit-cover-copy { background: #4a1028 !important; print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .metric-card, .format-card, .portfolio-strip { break-inside: avoid; }
  .format-card { background: #201b1a !important; print-color-adjust: exact; -webkit-print-color-adjust: exact; }
}
