:root {
  --ink: #150b0c;
  --ink-2: #1f1012;
  --wine: #62121b;
  --terra: #a55141;
  --gold: #dab66e;
  --gold-2: #efd28f;
  --cream: #f0e9e1;
  --leather: #955a42;
  --text: #f0e9e1;
  --muted: #c3b3a6;
  --line: rgba(240, 233, 225, .16);
  --display: "Big Shoulders Display", "Arial Narrow", Impact, sans-serif;
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --radius: 6px;
  --gutter: clamp(20px, 5vw, 72px);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, p { margin: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--gold); color: var(--ink); padding: 10px 16px; z-index: 100; border-radius: var(--radius); font-weight: 700; }
.skip-link:focus { left: 8px; }

.wrap { width: min(100% - var(--gutter) * 2, var(--max)); margin-inline: auto; }
.eyebrow { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; color: var(--gold); }
.display { font-family: var(--display); font-weight: 800; text-transform: uppercase; line-height: .88; letter-spacing: -.005em; }
.ital { font-family: var(--serif); font-style: italic; font-weight: 400; text-transform: none; letter-spacing: 0; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 12px var(--gutter);
  background: rgba(21, 11, 12, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-family: var(--display); font-weight: 800; font-size: 22px; letter-spacing: .04em; text-transform: uppercase; }
.brand img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 1.5px solid var(--gold); }
.nav-links { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav-links a { text-decoration: none; font-size: 14px; font-weight: 600; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--gold-2); }
.nav-links .nav-cta { color: var(--ink); background: var(--gold); padding: 9px 18px; border-radius: 999px; font-weight: 800; }
.nav-links .nav-cta:hover { background: var(--gold-2); color: var(--ink); }
.menu-button { display: none; margin-left: auto; background: transparent; color: var(--text); border: 1px solid var(--line); padding: 9px 16px; border-radius: 999px; font: 700 13px var(--sans); letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }

/* Buttons */
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 0 26px; border-radius: 999px; text-decoration: none; font: 800 15px var(--sans); border: 1.5px solid transparent; cursor: pointer; transition: transform .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: var(--ink); }
.button-primary:hover { background: var(--gold-2); }
.button-ghost { border-color: var(--line); color: var(--text); background: rgba(240, 233, 225, .04); }
.button-ghost:hover { border-color: var(--gold); }

/* Hero */
.hero { position: relative; overflow: hidden; padding: clamp(28px, 5vw, 64px) 0 0; background:
  radial-gradient(900px 620px at 82% 30%, rgba(165, 81, 65, .55), transparent 65%),
  radial-gradient(700px 500px at 10% 100%, rgba(98, 18, 27, .7), transparent 70%),
  var(--ink); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: clamp(20px, 4vw, 64px); align-items: end; }
.hero-copy { padding-bottom: clamp(40px, 6vw, 84px); align-self: center; }
.hero h1 { font-size: clamp(76px, 13.4vw, 208px); margin: 34px 0 8px -.03em; color: var(--cream); }
.hero h1 span { display: block; }
.hero h1 .outline { -webkit-text-stroke: 2px var(--gold); color: transparent; }
.hero .tagline { font-family: var(--serif); font-style: italic; font-size: clamp(34px, 4.4vw, 60px); line-height: 1.02; color: var(--gold-2); margin: 6px 0 22px; }
.hero .lead { max-width: 34em; color: var(--muted); font-size: clamp(16px, 1.5vw, 19px); }
.hero .lead b { color: var(--cream); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-figure { position: relative; align-self: end; margin: 0; }
.hero-figure img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: 50% 12%; border-radius: var(--radius) var(--radius) 0 0; }
.hero-figure::after { content: ""; position: absolute; inset: auto 0 0 0; height: 30%; background: linear-gradient(to top, var(--ink), transparent); pointer-events: none; }
.hero-tag { position: absolute; left: -14px; bottom: 16%; z-index: 2; background: var(--cream); color: var(--ink); padding: 8px 14px; border-radius: 3px; font: 800 12px var(--sans); letter-spacing: .14em; text-transform: uppercase; transform: rotate(-4deg); box-shadow: 0 10px 30px rgba(0, 0, 0, .4); }

.stat-strip { border-block: 1px solid var(--line); background: rgba(240, 233, 225, .03); }
.stat-strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 22px 20px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat b { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(34px, 4vw, 52px); line-height: 1; color: var(--gold-2); }
.stat span { display: block; margin-top: 6px; font-size: 13px; color: var(--muted); line-height: 1.4; }

/* Sections */
.section { padding: clamp(64px, 9vw, 128px) 0; position: relative; }
.section-title { font-size: clamp(46px, 7.6vw, 108px); margin: 14px 0 0; color: var(--cream); }
.section-title em { font-family: var(--serif); font-style: italic; font-weight: 400; text-transform: none; color: var(--gold-2); letter-spacing: 0; }
.section-lead { max-width: 38em; margin-top: 22px; color: var(--muted); font-size: 18px; }

.about-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(28px, 6vw, 96px); align-items: center; }
.about-photo { position: relative; }
.about-photo img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: 50% 30%; border-radius: var(--radius); }
.about-photo::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1.5px solid var(--gold); border-radius: var(--radius); z-index: -1; opacity: .6; }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 34px; }
.pillar { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(240, 233, 225, .03); }
.pillar small { display: block; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.pillar h3 { font-family: var(--display); font-weight: 800; font-size: 28px; text-transform: uppercase; line-height: 1; margin-bottom: 8px; }
.pillar p { font-size: 15px; color: var(--muted); line-height: 1.5; }

/* Training log */
.log { background: var(--ink-2); border-block: 1px solid var(--line); }
.log-grid { align-items: start; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(12px, 2vw, 24px); margin-top: 44px; }
.log-shot { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); background: #000; }
.log-shot img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.log-shot:nth-child(2) { margin-top: 48px; }
.log-shot figcaption { position: absolute; left: 12px; bottom: 12px; background: var(--ink); color: var(--gold-2); font: 800 11px var(--sans); letter-spacing: .16em; text-transform: uppercase; padding: 6px 10px; border-radius: 3px; }
.scoreboard { margin-top: 56px; border-top: 1px solid var(--line); }
.score-row { display: grid; grid-template-columns: 110px 1fr auto 96px; gap: 20px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); text-decoration: none; transition: background .2s, padding .2s; }
.score-row:hover { background: rgba(218, 182, 110, .06); padding-inline: 12px; }
.score-row time { font-family: var(--display); font-weight: 800; font-size: 20px; color: var(--gold); letter-spacing: .04em; }
.score-row .what { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.2vw, 28px); line-height: 1.15; }
.score-row .what small { display: block; font: 600 12px var(--sans); font-style: normal; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.score-row .tally { font-family: var(--display); font-weight: 800; font-size: 30px; text-align: right; line-height: 1; }
.score-row .tally small { display: block; font: 600 11px var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.score-row .open { font-size: 13px; font-weight: 800; color: var(--gold); text-align: right; letter-spacing: .08em; text-transform: uppercase; }

/* Night */
.night { background:
  radial-gradient(800px 500px at 15% 0%, rgba(165, 81, 65, .35), transparent 70%),
  radial-gradient(900px 600px at 100% 100%, rgba(98, 18, 27, .6), transparent 70%),
  var(--ink); }
.night-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(12px, 2vw, 24px); margin-top: 48px; align-items: start; }
.tile { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); background: #000; }
.tile img { width: 100%; object-fit: cover; aspect-ratio: 3 / 4; }
.tile figcaption { position: absolute; inset: auto 0 0 0; padding: 60px 16px 16px; background: linear-gradient(to top, rgba(21, 11, 12, .92), transparent); }
.tile figcaption b { display: block; font-family: var(--display); font-weight: 800; font-size: 26px; text-transform: uppercase; line-height: 1; }
.tile figcaption span { display: block; font-size: 13px; color: var(--muted); margin-top: 4px; }
.t1 { grid-column: 1 / span 4; }
.t2 { grid-column: 5 / span 4; margin-top: 56px; }
.t3 { grid-column: 9 / span 4; }
.t4 { grid-column: 1 / span 4; }
.t4 img { aspect-ratio: 3 / 4; }
.credit { grid-column: 6 / span 6; align-self: center; padding: 8px 0 0 12px; }
.credit p { font-family: var(--serif); font-style: italic; font-size: clamp(24px, 3vw, 38px); line-height: 1.15; color: var(--cream); }
.credit small { display: block; margin-top: 14px; font-size: 13px; color: var(--muted); }
.credit a { color: var(--gold-2); }

.places { margin-top: 64px; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(24px, 5vw, 80px); align-items: center; }
.places img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip { padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px; font-size: 14px; font-weight: 600; background: rgba(240, 233, 225, .04); }

/* Partners */
.partners { background: var(--cream); color: var(--ink); }
.partners .eyebrow { color: var(--wine); }
.partners .section-title { color: var(--ink); }
.partners .section-title em { color: var(--wine); }
.partners .section-lead { color: #5a4a44; }
.partner-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(14px, 2vw, 24px); margin-top: 48px; }
.partner { display: flex; flex-direction: column; background: #fff; border: 1px solid rgba(21, 11, 12, .12); border-radius: var(--radius); padding: 28px; }
.partner small { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--leather); font-weight: 800; }
.partner h3 { font-family: var(--display); font-weight: 800; font-size: 44px; text-transform: uppercase; line-height: .95; margin: 8px 0 12px; }
.partner p { font-size: 15px; color: #5a4a44; line-height: 1.55; flex: 1; }
.coupon { display: flex; align-items: stretch; margin-top: 22px; border: 1.5px dashed var(--wine); border-radius: var(--radius); overflow: hidden; }
.coupon code { flex: 1; padding: 12px 14px; font: 800 20px var(--sans); letter-spacing: .12em; color: var(--wine); background: rgba(98, 18, 27, .05); }
.coupon button { border: 0; background: var(--wine); color: var(--cream); padding: 0 18px; font: 800 13px var(--sans); letter-spacing: .1em; text-transform: uppercase; cursor: pointer; min-width: 96px; }
.coupon button.done { background: #2f6b3a; }
.partner .go { margin-top: 14px; font-weight: 800; font-size: 14px; color: var(--ink); text-decoration-color: var(--terra); text-underline-offset: 4px; }
.note { margin-top: 22px; font-size: 14px; color: #6c5a53; }

/* Brands CTA */
.cta { text-align: left; background:
  radial-gradient(800px 500px at 90% 20%, rgba(218, 182, 110, .2), transparent 70%),
  linear-gradient(135deg, var(--wine), var(--ink) 70%); }
.cta-inner { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 40px; align-items: end; }
.cta h2 { font-size: clamp(52px, 8.6vw, 132px); }
.cta-side p { color: var(--muted); margin-bottom: 22px; }
.cta-side .hero-actions { margin-top: 0; }

/* Footer */
.site-footer { padding: 44px 0 56px; border-top: 1px solid var(--line); }
.site-footer .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.site-footer p { font-size: 13px; color: var(--muted); }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; font-size: 14px; font-weight: 600; }
.foot-links a { text-decoration: none; color: var(--muted); }
.foot-links a:hover { color: var(--gold-2); }

/* Media kit (paper) */
.kit body, body.kit { background: var(--cream); color: var(--ink); }
body.kit .site-header { background: rgba(240, 233, 225, .9); border-bottom-color: rgba(21, 11, 12, .12); }
body.kit .brand { color: var(--ink); }
body.kit .nav-links a { color: #5a4a44; }
body.kit .nav-links a:hover { color: var(--wine); }
body.kit .nav-links .nav-cta { background: var(--ink); color: var(--cream); }
body.kit .menu-button { color: var(--ink); border-color: rgba(21, 11, 12, .25); }
body.kit .eyebrow { color: var(--wine); }
body.kit .button-ghost { border-color: rgba(21, 11, 12, .25); color: var(--ink); background: transparent; }
body.kit .button-ghost:hover { border-color: var(--wine); }
body.kit .button-primary { background: var(--ink); color: var(--cream); }
body.kit .button-primary:hover { background: var(--wine); }
.cover { background: var(--ink); color: var(--cream); overflow: hidden; }
.cover-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(20px, 4vw, 60px); align-items: stretch; }
.cover-copy { padding: clamp(40px, 6vw, 88px) 0; align-self: center; }
.cover-copy .eyebrow { color: var(--gold); }
.cover h1 { font-size: clamp(64px, 11vw, 168px); margin: 34px 0 6px -.02em; }
.cover h1 .outline { display: block; -webkit-text-stroke: 2px var(--gold); color: transparent; }
.cover .tagline { font-family: var(--serif); font-style: italic; font-size: clamp(28px, 3.6vw, 48px); color: var(--gold-2); margin-bottom: 18px; }
.cover .lead { max-width: 32em; color: var(--muted); }
.cover-photo { margin: 0; }
.cover-photo img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; object-position: 50% 16%; }
.kit-section { padding: clamp(52px, 7vw, 96px) 0; border-bottom: 1px solid rgba(21, 11, 12, .12); }
.kit-title { font-family: var(--display); font-weight: 800; text-transform: uppercase; line-height: .9; font-size: clamp(40px, 6vw, 84px); margin-top: 12px; }
.kit-title em { font-family: var(--serif); font-style: italic; text-transform: none; font-weight: 400; color: var(--wine); }
.kit-lead { max-width: 40em; margin-top: 18px; color: #5a4a44; font-size: 18px; }
.num-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 36px; }
.num { background: #fff; border: 1px solid rgba(21, 11, 12, .12); border-radius: var(--radius); padding: 22px; }
.num b { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(40px, 4.6vw, 64px); line-height: 1; color: var(--wine); }
.num span { display: block; margin-top: 8px; font-size: 14px; color: #5a4a44; line-height: 1.4; }
.source { margin-top: 16px; font-size: 13px; color: #6c5a53; }
.source a { color: var(--wine); }
.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(20px, 4vw, 56px); margin-top: 34px; }
.format-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 36px; }
.format { background: #fff; border: 1px solid rgba(21, 11, 12, .12); border-radius: var(--radius); padding: 22px; }
.format small { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; font-weight: 800; color: var(--leather); }
.format h3 { font-family: var(--display); font-weight: 800; font-size: 28px; text-transform: uppercase; line-height: 1; margin: 8px 0 8px; }
.format p { font-size: 15px; color: #5a4a44; line-height: 1.5; }
.fit-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 40px; }
.fit-list li { padding: 16px 0; border-top: 1px solid rgba(21, 11, 12, .14); }
.fit-list b { display: block; font-family: var(--display); font-weight: 800; font-size: 26px; text-transform: uppercase; line-height: 1; }
.fit-list span { display: block; margin-top: 6px; font-size: 15px; color: #5a4a44; }
.table-wrap { margin-top: 30px; overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid rgba(21, 11, 12, .12); }
th, td { text-align: left; padding: 14px 16px; border-bottom: 1px solid rgba(21, 11, 12, .1); font-size: 15px; vertical-align: top; }
th { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--leather); background: rgba(21, 11, 12, .04); }
td.n { font-family: var(--display); font-weight: 800; font-size: 22px; }
td a { color: var(--wine); font-weight: 700; }
.gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 34px; }
.gallery img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius); }
.gallery figure { margin: 0; }
.gallery figcaption { margin-top: 8px; font-size: 13px; color: #6c5a53; }
.proposal { background: var(--ink); color: var(--cream); border-bottom: 0; }
.proposal .eyebrow { color: var(--gold); }
.proposal .kit-title em { color: var(--gold-2); }
.proposal .kit-lead { color: var(--muted); }
.proposal-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(28px, 5vw, 80px); }
.channels { list-style: none; padding: 0; margin: 28px 0 0; }
.channels li { padding: 14px 0; border-top: 1px solid var(--line); font-size: 15px; color: var(--muted); }
.channels b { display: block; color: var(--cream); font-size: 16px; }
.channels a { color: var(--gold-2); font-weight: 700; }
.form { display: grid; gap: 14px; }
.form label { display: grid; gap: 6px; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.form input, .form select, .form textarea { width: 100%; padding: 13px 14px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(240, 233, 225, .06); color: var(--cream); font: 500 16px var(--sans); }
.form select option { color: var(--ink); }
.form textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.form .button-primary { background: var(--gold); color: var(--ink); }
.form-status { font-size: 14px; color: var(--muted); }
.preview { min-height: 170px; }
.print-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }


/* Dark sections inside the paper media kit */
body.kit .cover .eyebrow, body.kit .proposal .eyebrow { color: var(--gold); }
body.kit .cover .button-primary, body.kit .proposal .button-primary { background: var(--gold); color: var(--ink); }
body.kit .cover .button-primary:hover, body.kit .proposal .button-primary:hover { background: var(--gold-2); }
body.kit .cover .button-ghost, body.kit .proposal .button-ghost { border-color: var(--line); color: var(--cream); background: rgba(240, 233, 225, .04); }
body.kit .cover .button-ghost:hover, body.kit .proposal .button-ghost:hover { border-color: var(--gold); }
body.kit .proposal .kit-title { color: var(--cream); }
.format-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Redirect stubs */
.redirect { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 24px; }
.redirect h1 { font-family: var(--display); font-size: 56px; text-transform: uppercase; margin-bottom: 10px; }
.redirect p { color: var(--muted); margin-bottom: 20px; }

/* Responsive */
@media (max-width: 980px) {
  .menu-button { display: inline-block; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; padding: 8px var(--gutter) 20px; background: var(--ink); border-bottom: 1px solid var(--line); }
  body.kit .nav-links { background: var(--cream); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-links .nav-cta { margin-top: 12px; text-align: center; border-bottom: 0; }
  .hero-grid, .about-grid, .places, .cta-inner, .cover-grid, .proposal-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; margin-inline: calc(var(--gutter) * -1); }
  .hero-figure img { aspect-ratio: 4 / 5; border-radius: 0; }
  .hero-copy { margin-top: -84px; position: relative; z-index: 2; padding-bottom: 44px; }
  .hero-tag { left: var(--gutter); bottom: 96px; }
  .stat-strip .wrap { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .about-photo::before { display: none; }
  .partner-grid, .format-grid, .format-grid.two { grid-template-columns: 1fr; }
  .num-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .cover-photo img { min-height: 0; aspect-ratio: 4 / 5; }
  .cover-photo { order: -1; margin-inline: calc(var(--gutter) * -1); }
  .cover-copy { padding-top: 12px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  table, tbody, tr, td { display: block; width: 100%; }
  thead { position: absolute; left: -9999px; }
  tr { padding: 12px 14px; border-bottom: 1px solid rgba(21, 11, 12, .1); }
  td { border: 0; padding: 3px 0; display: flex; justify-content: space-between; gap: 16px; font-size: 14px; }
  td::before { content: attr(data-label); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--leather); font-weight: 800; padding-top: 4px; }
  td[data-label="Publicação"] { font-weight: 700; }
  .pillars, .two-col, .fit-list, .form-row { grid-template-columns: 1fr; }
  .log-grid { grid-template-columns: 1fr 1fr; }
  .log-shot:nth-child(2) { margin-top: 0; }
  .log-shot:nth-child(3) { grid-column: 1 / -1; }
  .log-shot:nth-child(3) img { aspect-ratio: 4 / 3; object-position: 50% 30%; }
  .score-row { grid-template-columns: 1fr auto; gap: 6px 16px; padding: 18px 0; }
  .score-row time { grid-column: 1 / -1; font-size: 16px; }
  .score-row .open { display: none; }
  .night-grid { grid-template-columns: 1fr 1fr; }
  .t1, .t2, .t3, .t4 { grid-column: auto; margin-top: 0; }
  .t3, .t4 { grid-column: 1 / -1; }
  .t3 img, .t4 img { aspect-ratio: 4 / 3; object-position: 50% 30%; }
  .credit { grid-column: 1 / -1; padding: 8px 0 0; }
  .coupon code { font-size: 17px; }
  .display { line-height: .9; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

@media print {
  @page { margin: 12mm; }
  body, body.kit { background: #fff !important; color: #000 !important; font-size: 11pt; }
  .site-header, .print-row, .proposal .form, .menu-button, .skip-link { display: none !important; }
  .cover, .proposal { background: #fff !important; color: #000 !important; }
  .cover h1, .cover .tagline, .proposal .kit-title { color: #000 !important; }
  .cover h1 .outline { -webkit-text-stroke: 1px #000; }
  .cover-photo img { min-height: 0; max-height: 120mm; }
  .kit-section { break-inside: avoid; padding: 8mm 0; }
  .num, .format, table, .gallery figure { break-inside: avoid; }
  .cover .lead, .proposal .kit-lead, .channels li, .channels a { color: #000 !important; }
  a { text-decoration: none; }
}
