/* =========================================================
   Brewresearch — main stylesheet
   Light palette: warm paper + storm navy + signal orange
   ========================================================= */

:root {
  --paper:    #FCFBF9;
  --sand:     #F3EFE8;
  --sand-2:   #EAE4D9;
  --white:    #FFFFFF;

  --ink:      #16181D;
  --storm:    #202B45;
  --storm-2:  #2E3C5D;
  --signal:   #FF5A1F;
  --signal-2: #FFE9DF;

  --muted:    #5A6070;
  --line:     rgba(22, 24, 29, .12);
  --line-2:   rgba(22, 24, 29, .07);
  --line-lt:  rgba(255, 255, 255, .16);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", "Segoe UI", sans-serif;

  --shell: 1200px;
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;

  --sh-1: 0 2px 8px rgba(32, 43, 69, .05);
  --sh-2: 0 16px 36px -20px rgba(32, 43, 69, .28);
  --sh-3: 0 40px 80px -44px rgba(32, 43, 69, .42);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --bar-h: 74px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
dl, dd { margin: 0; }

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  z-index: 3000;
  background: var(--storm);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}
.skip-link:focus { left: 20px; }

/* ---------- type ---------- */
.d1, .d2, .d3, h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.015em;
  margin: 0;
}

.d1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 500; }
.d1 em { font-style: italic; color: var(--signal); font-weight: 500; }
.d2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.d3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

.intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 54ch;
}

.kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 16px;
}
.kicker--light { color: var(--signal); }

.tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 7px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 26px;
  background: var(--white);
}

/* ---------- layout ---------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 32px;
}

.pad { padding: clamp(72px, 9vw, 130px) 0; }

.head { max-width: 640px; margin-bottom: 60px; }
.head__sub { margin-top: 16px; color: var(--muted); }

/* Grid children default to min-width:auto, which lets wide SVGs push a track
   past the viewport. Reset on every multi-column grid. */
.studio__grid > *,
.row > *,
.band__inner > *,
.cases > *,
.crew > *,
.faq__grid > *,
.talk__grid > *,
.foot__cols > * { min-width: 0; }

/* ---------- buttons ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  line-height: 1;
  padding: 15px 28px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  transition: transform .2s var(--ease), background-color .2s var(--ease),
              color .2s var(--ease), border-color .2s var(--ease);
}
.pill:hover { transform: translateY(-2px); }

.pill--accent { background: var(--signal); color: var(--white); border-color: var(--signal); }
.pill--accent:hover { background: #e84d15; border-color: #e84d15; }

.pill--dark { background: var(--storm); color: var(--white); border-color: var(--storm); }
.pill--dark:hover { background: var(--storm-2); border-color: var(--storm-2); }

.pill--line { background: transparent; color: var(--ink); border-color: var(--line); }
.pill--line:hover { border-color: var(--ink); }

.pill--sm { padding: 11px 20px; font-size: .88rem; }
.pill--wide { width: 100%; padding: 17px 28px; }

/* =========================================================
   ANNOUNCE + NAV
   ========================================================= */
.announce {
  background: var(--storm);
  color: rgba(255, 255, 255, .82);
  font-size: .84rem;
  padding: 9px 0;
}
.announce .shell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.announce__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  flex: 0 0 auto;
}
.announce a {
  color: var(--white);
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
}
.announce a:hover { border-color: var(--signal); color: var(--signal); }

.bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--bar-h);
  display: flex;
  align-items: center;
  background: rgba(252, 251, 249, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.bar--stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 20px -16px rgba(32, 43, 69, .5);
}

.bar__inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--storm);
  flex: 0 0 auto;
}
.logo__mark { display: flex; color: var(--storm); }
.logo__type em { font-style: italic; color: var(--signal); }

.bar__nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  font-size: .93rem;
  font-weight: 500;
  color: var(--muted);
}
.bar__nav a { position: relative; padding: 4px 0; transition: color .2s var(--ease); }
.bar__nav a:hover, .bar__nav a.on { color: var(--ink); }
.bar__nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--signal);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.bar__nav a.on::after { transform: scaleX(1); }

.bar__cta { flex: 0 0 auto; }

.tog {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  z-index: 1200;
}
.tog span {
  display: block;
  width: 20px;
  margin: 0 auto;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease);
}
.tog.on span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.tog.on span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.sheet {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.sheet.on { opacity: 1; visibility: visible; }
.sheet__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--storm);
}
.sheet__nav .pill { font-family: var(--sans); font-size: 1rem; margin-top: 12px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0 0;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(255, 90, 31, .07), transparent 70%),
    var(--paper);
}
.hero__copy { max-width: 860px; margin: 0 auto; }
.hero__copy .intro { margin: 26px auto 0; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.hero__art {
  margin: clamp(48px, 6vw, 76px) auto 0;
  max-width: 940px;
}
.hero__art img { width: 100%; }

/* =========================================================
   CLIENT STRIP
   ========================================================= */
.strip {
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  padding: 26px 0;
  background: var(--paper);
}
.strip__inner {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
  justify-content: center;
}
.strip__label {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.strip__list {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
  justify-content: center;
}
.strip__list li {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--storm);
  opacity: .48;
  transition: opacity .2s var(--ease);
}
.strip__list li:hover { opacity: .9; }

/* =========================================================
   STUDIO
   ========================================================= */
.studio { background: var(--paper); }
.studio__grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
}
.studio__aside .kicker { margin: 0; }
.studio__body p { color: var(--muted); max-width: 62ch; }
.studio__body .d2 { margin-bottom: 24px; }

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 42px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.facts__item dt {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.facts__item dd {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--storm);
  line-height: 1;
}

/* =========================================================
   SERVICES
   ========================================================= */
.svc { background: var(--white); border-top: 1px solid var(--line-2); }

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
  padding: clamp(40px, 5vw, 62px) 0;
  border-top: 1px solid var(--line-2);
}
.row:first-of-type { border-top: 0; }
.row--flip .row__text { order: 2; }
.row--flip .row__art  { order: 1; }

.row__num {
  display: inline-block;
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 600;
  color: var(--signal);
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.row__text .d3 { margin-bottom: 16px; }
.row__text p { color: var(--muted); max-width: 48ch; }

.ticks {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line-2);
  font-size: .93rem;
}
.ticks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
.ticks li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--signal);
}

.row__art img { width: 100%; }

/* =========================================================
   STATS BAND
   ========================================================= */
.band {
  background: var(--storm);
  color: var(--white);
  padding: clamp(64px, 8vw, 104px) 0;
}
.band__inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 52px;
  align-items: center;
}
.band .d2 { color: var(--white); }

.band__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 40px;
}
.band__stats strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--signal);
  line-height: 1;
  margin-bottom: 8px;
}
.band__stats span {
  font-size: .9rem;
  color: rgba(255, 255, 255, .62);
  line-height: 1.5;
}

/* =========================================================
   WORK
   ========================================================= */
.work { background: var(--paper); }

.cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.case {
  display: flex;
  flex-direction: column;
  padding: 36px 34px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              border-color .3s var(--ease);
}
.case:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-2);
  border-color: transparent;
}
.case--a { background: linear-gradient(160deg, var(--white) 40%, var(--signal-2)); }
.case--b { background: linear-gradient(160deg, var(--white) 40%, #E8ECF5); }
.case--c { background: linear-gradient(160deg, var(--white) 40%, var(--sand-2)); }
.case--d { background: linear-gradient(160deg, var(--white) 40%, #EDEAF5); }

.case__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.case .d3 { margin-bottom: 12px; }
.case p { color: var(--muted); font-size: .95rem; }

.case__metric {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: auto;
  padding-top: 26px;
}
.case__metric strong {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--storm);
  line-height: 1;
}
.case__metric span { font-size: .85rem; color: var(--muted); }

.say {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px clamp(28px, 4vw, 56px);
  border-radius: var(--r-lg);
  background: var(--sand);
  text-align: center;
}
.say blockquote {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.3vw, 1.62rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: var(--storm);
}
.say__who strong {
  display: block;
  font-size: .96rem;
  font-weight: 700;
}
.say__who em {
  font-style: normal;
  font-size: .86rem;
  color: var(--muted);
}

/* =========================================================
   TEAM
   ========================================================= */
.team { background: var(--white); border-top: 1px solid var(--line-2); }

.crew {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.crew__card {
  padding: 34px 30px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.crew__card:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }

.crew__face {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: 22px;
}
.crew__face--1 { background: var(--storm); }
.crew__face--2 { background: var(--signal); }
.crew__face--3 { background: var(--storm-2); }

.crew__name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 4px;
}
.crew__role {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 14px;
}
.crew__bio { font-size: .93rem; color: var(--muted); margin: 0; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--paper); }
.faq__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.faq__aside p { color: var(--muted); margin-top: 18px; }

.qa {
  border-top: 1px solid var(--line);
  padding: 6px 0;
}
.qa:last-child { border-bottom: 1px solid var(--line); }

.qa summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-family: var(--serif);
  font-size: 1.14rem;
  font-weight: 600;
  color: var(--storm);
  transition: color .2s var(--ease);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--signal); }

.qa summary::after {
  content: "";
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform .25s var(--ease);
}
.qa[open] summary::after { transform: rotate(-135deg) translate(-3px, -3px); }

.qa__body { padding: 0 0 24px; }
.qa__body p { color: var(--muted); max-width: 62ch; margin: 0; }

/* =========================================================
   CONTACT
   ========================================================= */
.talk { background: var(--sand); }
.talk__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.reach {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 34px;
  font-size: .94rem;
}
.reach li { display: flex; align-items: center; gap: 14px; }
.reach__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 11px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--signal);
}
.reach a { border-bottom: 1px solid rgba(255, 90, 31, .5); }
.reach a:hover { color: var(--signal); }

.brief {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
}
.brief__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.brief__pair > * { min-width: 0; }

.fld { display: flex; flex-direction: column; gap: 8px; }
.fld__cap {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--ink);
}
.fld input,
.fld select,
.fld textarea {
  font-family: var(--sans);
  font-size: .94rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 13px 15px;
  width: 100%;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.fld textarea { resize: vertical; min-height: 112px; }
.fld select { appearance: none; cursor: pointer; }
.fld input::placeholder,
.fld textarea::placeholder { color: rgba(22, 24, 29, .34); }
.fld input:focus,
.fld select:focus,
.fld textarea:focus {
  outline: none;
  border-color: var(--signal);
  background: var(--white);
}
.fld.bad input,
.fld.bad textarea { border-color: #D93025; }

.brief__note {
  font-size: .82rem;
  color: var(--muted);
  text-align: center;
  margin: 0;
}
.brief__note.ok { color: #1E7A3C; }
.brief__note.err { color: #D93025; }

/* =========================================================
   FOOTER
   ========================================================= */
.foot {
  background: var(--storm);
  color: rgba(255, 255, 255, .62);
  padding: 66px 0 30px;
  font-size: .92rem;
}
.foot .logo { color: var(--white); }
.foot .logo__mark { color: var(--white); }

.foot__top {
  display: flex;
  align-items: baseline;
  gap: 22px;
  flex-wrap: wrap;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line-lt);
}
.foot__line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .48);
  margin: 0;
}

.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  padding: 40px 0;
}
.foot__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}
.foot__col h3 {
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 6px;
}
.foot__col a { transition: color .2s var(--ease); }
.foot__col a:hover { color: var(--signal); }
.foot__addr { line-height: 1.7; color: rgba(255, 255, 255, .45); }

.foot__end {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid var(--line-lt);
  font-size: .85rem;
  color: rgba(255, 255, 255, .42);
}
.foot__end a:hover { color: var(--signal); }

/* =========================================================
   LEGAL PAGE
   ========================================================= */
.legal { background: var(--sand); padding: clamp(56px, 7vw, 90px) 0; }
.legal .d1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-bottom: 12px; }
.legal__when { color: var(--muted); font-size: .9rem; }

.legal__body { max-width: 760px; padding: 70px 0 100px; }
.legal__body h2 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin: 46px 0 12px;
}
.legal__body h2:first-child { margin-top: 0; }
.legal__body p, .legal__body li { color: var(--muted); }
.legal__body ul {
  list-style: disc;
  padding-left: 22px;
  margin: 0 0 1.15em;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.legal__body a { border-bottom: 2px solid var(--signal); }

/* =========================================================
   REVEAL
   ========================================================= */
.rise {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.rise.seen { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .studio__grid { grid-template-columns: 1fr; gap: 20px; }
  .band__inner { grid-template-columns: 1fr; gap: 40px; }
  .faq__grid { grid-template-columns: 1fr; }
}

@media (max-width: 940px) {
  .bar__nav { display: none; }
  .bar__cta { display: none; }
  .tog { display: flex; }
  .row, .row--flip { grid-template-columns: 1fr; gap: 32px; }
  .row--flip .row__text,
  .row--flip .row__art { order: 0; }
  .row__art { max-width: 460px; }
  .crew { grid-template-columns: 1fr; }
  .talk__grid { grid-template-columns: 1fr; }
  .cases { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .shell { padding: 0 20px; }
  .facts { grid-template-columns: 1fr 1fr; gap: 22px; }
  .band__stats { grid-template-columns: 1fr; gap: 26px; }
  .case { padding: 30px 24px; }
  .say { padding: 34px 24px; }
  .brief { padding: 26px 22px; }
  .brief__pair { grid-template-columns: 1fr; }
  .strip__inner { gap: 18px; }
  .strip__list { gap: 22px; }
  .strip__list li { font-size: 1.05rem; }
  .foot__cols { grid-template-columns: 1fr; gap: 28px; }
  .sheet__nav { font-size: 1.45rem; gap: 20px; }
  .announce { font-size: .78rem; }
}

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