/* ==========================================================================
   The Bloop Times — design system
   Palette from the BloopUniverse logo: red / white / black, plus cream paper.
   ========================================================================== */

:root {
  --red: #FF2D2D;
  --red-dark: #D61F1F;
  --red-glow: rgba(255, 45, 45, .35);
  --black: #0E0E11;
  --black-2: #17171C;
  --black-3: #22222A;
  --white: #FFFFFF;
  --paper: #F7F2E9;
  --paper-2: #EFE7D9;
  --ink: #141418;
  --ink-soft: #5E5A55;
  --line: rgba(20, 20, 24, .12);
  --line-light: rgba(255, 255, 255, .12);
  --gold: #E6B94A;

  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --body-serif: "Lora", Georgia, serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --shadow-soft: 0 10px 30px rgba(20,20,24,.08);
  --max: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 clamp(18px, 4vw, 40px); }

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14,14,17,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-light);
  color: var(--white);
}

.nav .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; height: 68px;
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 40px; height: 40px; border-radius: 8px; }
.brand-name { font-family: var(--serif); font-weight: 900; font-size: 20px; letter-spacing: .01em; }
.brand-sub { display: block; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.55); font-family: var(--sans); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.8); }
.nav-links a:hover { color: var(--white); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px;
  font-family: var(--sans); font-weight: 700; font-size: 15px;
  border-radius: 999px; text-decoration: none; cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-red { background: var(--red); color: var(--white); box-shadow: 0 10px 28px var(--red-glow); }
.btn-red:hover { background: var(--red-dark); }

.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--paper); }

.btn-ghost-light { border-color: rgba(255,255,255,.35); color: var(--white); background: transparent; }
.btn-ghost-light:hover { border-color: var(--white); background: rgba(255,255,255,.06); }

.btn-ghost-dark { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost-dark:hover { background: var(--ink); color: var(--white); }

.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 18px 34px; font-size: 17px; }

/* --------------------------------------------------------------------------
   Typography helpers
   -------------------------------------------------------------------------- */

.kicker {
  display: inline-block;
  font-family: var(--sans); font-weight: 700; font-size: 12px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.kicker.light { color: rgba(255,255,255,.7); }
.kicker.gold { color: var(--gold); }

h1, h2, h3 { font-family: var(--serif); line-height: 1.08; letter-spacing: -.01em; }
.h1 { font-size: clamp(40px, 6.2vw, 74px); font-weight: 900; }
.h2 { font-size: clamp(30px, 4.2vw, 48px); font-weight: 900; }
.h3 { font-size: clamp(20px, 2.4vw, 26px); font-weight: 700; }

.lead { font-size: clamp(18px, 2vw, 21px); color: var(--ink-soft); line-height: 1.55; }
.lead.light { color: rgba(255,255,255,.72); }

.muted { color: var(--ink-soft); }
.center { text-align: center; }
.mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 40px; }
.mb-1 { margin-bottom: 12px; } .mb-2 { margin-bottom: 24px; } .mb-3 { margin-bottom: 40px; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-paper { background: var(--paper); }
.section-white { background: var(--white); }
.section-red { background: var(--red); color: var(--white); }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative; overflow: hidden;
  background: var(--black); color: var(--white);
  padding: clamp(64px, 9vw, 120px) 0 clamp(56px, 8vw, 100px);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 10%, rgba(255,45,45,.35), transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 90%, rgba(255,45,45,.18), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: .06; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.9) 1px, transparent 1px);
  background-size: 22px 22px;
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 72px); align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 8px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid var(--line-light);
  font-size: 13px; font-weight: 600; margin-bottom: 26px;
}
.hero-badge img { width: 26px; height: 26px; border-radius: 6px; }

.hero .h1 { margin-bottom: 20px; }
.hero .h1 em { font-style: italic; color: var(--red); }
.hero .lead { margin-bottom: 32px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.stat-row { display: flex; gap: clamp(20px, 4vw, 48px); flex-wrap: wrap; }
.stat { }
.stat-num { font-family: var(--serif); font-weight: 900; font-size: clamp(28px, 3.4vw, 40px); line-height: 1; }
.stat-num.red { color: var(--red); }
.stat-label { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 6px; }

/* Newspaper preview card in hero */
.paper-card {
  background: var(--paper); color: var(--ink);
  border-radius: 6px; padding: 26px 26px 22px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
  transition: transform .3s ease;
  text-decoration: none; display: block;
  border: 1px solid rgba(0,0,0,.08);
}
.paper-card:hover { transform: rotate(0deg) scale(1.02); }
.paper-card .pc-top { display: flex; justify-content: space-between; font-family: var(--sans); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); border-bottom: 2px solid var(--ink); padding-bottom: 6px; margin-bottom: 8px; }
.paper-card .pc-masthead { font-family: var(--serif); font-weight: 900; font-size: clamp(28px, 3.4vw, 40px); text-align: center; letter-spacing: -.01em; border-bottom: 3px double var(--ink); padding-bottom: 8px; margin-bottom: 14px; }
.paper-card .pc-kicker { color: var(--red); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 6px; }
.paper-card .pc-head { font-family: var(--serif); font-weight: 900; font-size: clamp(20px, 2.4vw, 26px); line-height: 1.12; margin-bottom: 10px; }
.paper-card .pc-img { border-radius: 4px; margin: 10px 0; aspect-ratio: 16/9; object-fit: cover; width: 100%; filter: saturate(.9); }
.paper-card .pc-text { font-family: var(--body-serif); font-size: 13px; color: var(--ink-soft); column-count: 2; column-gap: 16px; }
.paper-card .pc-cta { margin-top: 14px; font-family: var(--sans); font-size: 12px; font-weight: 700; color: var(--red); letter-spacing: .08em; text-transform: uppercase; }

/* --------------------------------------------------------------------------
   Ticker strip
   -------------------------------------------------------------------------- */

.ticker {
  background: var(--red); color: var(--white);
  font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
  padding: 12px 0; overflow: hidden; white-space: nowrap;
}
.ticker span { display: inline-block; padding: 0 28px; }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(20,20,24,.12); }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center; font-size: 24px;
  background: rgba(255,45,45,.1); color: var(--red); margin-bottom: 18px;
}
.card .h3 { margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 15.5px; }

/* --------------------------------------------------------------------------
   Video thumbnail grid
   -------------------------------------------------------------------------- */

.thumb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.thumb {
  display: block; text-decoration: none; position: relative;
  border-radius: var(--radius-sm); overflow: hidden;
  background: var(--black); box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.thumb:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(20,20,24,.2); }
.thumb img { aspect-ratio: 16/9; object-fit: cover; width: 100%; transition: opacity .2s ease; }
.thumb:hover img { opacity: .82; }
.thumb::after {
  content: "▶"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%);
  width: 52px; height: 52px; border-radius: 50%; background: rgba(255,45,45,.92); color: #fff;
  display: grid; place-items: center; font-size: 17px; padding-left: 3px;
  opacity: 0; transition: opacity .2s ease;
}
.thumb:hover::after { opacity: 1; }
.thumb-views {
  position: absolute; top: 10px; right: 10px;
  background: rgba(14,14,17,.85); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 9px; border-radius: 999px;
}
.thumb-title {
  display: block; padding: 14px 16px 16px; color: var(--white);
  font-family: var(--serif); font-weight: 700; font-size: 16px; line-height: 1.25;
}

/* --------------------------------------------------------------------------
   Feature split (free edition)
   -------------------------------------------------------------------------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.split-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.split-media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.split-media .tag { position: absolute; top: 16px; left: 16px; background: var(--red); color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 8px 12px; border-radius: 999px; }

.headline-list { list-style: none; margin: 22px 0 28px; }
.headline-list li { padding: 12px 0; border-top: 1px solid var(--line); font-family: var(--serif); font-weight: 700; font-size: 18px; }
.headline-list li:last-child { border-bottom: 1px solid var(--line); }
.headline-list li span { display: block; font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */

.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.plan {
  border-radius: var(--radius); padding: 36px 32px;
  background: var(--black-2); border: 1px solid var(--line-light);
}
.plan.featured {
  background: linear-gradient(160deg, var(--red) 0%, var(--red-dark) 100%);
  border-color: transparent; box-shadow: 0 30px 70px var(--red-glow);
  position: relative;
}
.plan.featured::before {
  content: "Most popular"; position: absolute; top: -14px; left: 32px;
  background: var(--white); color: var(--red); font-size: 11px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
}
.plan-name { font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; opacity: .8; margin-bottom: 14px; }
.plan-price { font-family: var(--serif); font-weight: 900; font-size: 54px; line-height: 1; }
.plan-price small { font-family: var(--sans); font-weight: 500; font-size: 15px; opacity: .75; }
.plan-desc { margin: 12px 0 24px; opacity: .8; font-size: 15px; }
.plan ul { list-style: none; margin-bottom: 28px; }
.plan li { padding: 9px 0 9px 30px; position: relative; font-size: 15.5px; border-top: 1px solid rgba(255,255,255,.1); }
.plan li::before { content: "✓"; position: absolute; left: 0; font-weight: 800; }
.plan .btn { width: 100%; }

/* --------------------------------------------------------------------------
   Quote strip
   -------------------------------------------------------------------------- */

.quote { max-width: 820px; margin: 0 auto; text-align: center; }
.quote blockquote { font-family: var(--serif); font-style: italic; font-size: clamp(22px, 3vw, 32px); line-height: 1.35; }
.quote cite { display: block; margin-top: 18px; font-style: normal; font-family: var(--sans); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq { max-width: 760px; margin: 0 auto; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 22px; margin-bottom: 12px; }
.faq summary { cursor: pointer; list-style: none; padding: 18px 0; font-family: var(--serif); font-weight: 700; font-size: 18px; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--sans); font-weight: 400; font-size: 24px; color: var(--red); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 18px; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */

.cta-band { text-align: center; }
.cta-band .h2 { margin-bottom: 14px; }
.cta-band p { opacity: .85; margin-bottom: 28px; font-size: 18px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer { background: var(--black); color: rgba(255,255,255,.6); padding: 48px 0 32px; font-size: 14px; }
.footer .container { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer .brand { color: var(--white); }
.footer-links { display: flex; gap: 22px; list-style: none; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--white); }

/* ==========================================================================
   EDITION PAGES (the newspaper itself)
   ========================================================================== */

.edition-wrap { background: var(--paper-2); padding: clamp(24px, 4vw, 56px) 0; }
.paper {
  max-width: 1100px; margin: 0 auto; background: var(--paper);
  padding: 28px clamp(18px, 4vw, 56px) 48px;
  box-shadow: 0 30px 80px rgba(0,0,0,.18); border-radius: 4px;
  font-family: var(--body-serif); color: var(--ink);
}

.topbar {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-family: var(--sans); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  border-top: 3px solid var(--ink); border-bottom: 1px solid var(--ink);
  padding: 7px 2px; color: var(--ink-soft);
}
.masthead { text-align: center; padding: 26px 0 14px; }
.masthead-logo { width: 56px; height: 56px; border-radius: 12px; margin: 0 auto 12px; }
.masthead h1 { font-weight: 900; font-size: clamp(44px, 9vw, 96px); line-height: 1; }
.masthead .tagline { font-family: var(--sans); font-weight: 600; text-transform: uppercase; letter-spacing: .3em; font-size: clamp(10px, 1.5vw, 13px); margin-top: 10px; color: var(--ink-soft); }
.dateline {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-family: var(--sans); font-weight: 600; font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  padding: 8px 2px; margin-bottom: 28px;
}
.dateline a { text-decoration: none; color: var(--red); }

.headline { font-weight: 900; font-size: clamp(30px, 5vw, 52px); line-height: 1.05; margin-bottom: 12px; }
.subhead { font-weight: 700; font-size: clamp(20px, 3vw, 26px); line-height: 1.2; margin-bottom: 10px; }
.standfirst { font-style: italic; font-size: 19px; color: var(--ink-soft); margin-bottom: 14px; }
.byline { font-family: var(--sans); font-weight: 600; text-transform: uppercase; letter-spacing: .14em; font-size: 11.5px; color: var(--ink-soft); margin-bottom: 14px; }
.paper p + p { margin-top: 12px; }
.paper a { color: var(--red); }
.dropcap::first-letter { font-family: var(--serif); font-weight: 900; font-size: 3.4em; float: left; line-height: .85; padding-right: 8px; color: var(--red); }

.grid { display: grid; gap: 28px; }
.grid-lead { grid-template-columns: 2fr 1fr; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.columned { column-count: 2; column-gap: 32px; column-rule: 1px solid var(--line); }
.sidebar { border-left: 1px solid var(--line); padding-left: 24px; }
hr.thick { border: 0; border-top: 3px double var(--ink); margin: 32px 0; }

figure img { width: 100%; border-radius: 4px; filter: saturate(.9); }
figcaption { font-family: var(--sans); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); padding-top: 8px; font-weight: 600; }

.box { border: 2px solid var(--ink); padding: 18px 20px; background: rgba(255,255,255,.45); border-radius: 4px; }
.box.accent { border-color: var(--red); }
.paper .stat { }
.paper .stat-num { font-family: var(--serif); font-weight: 900; font-size: 44px; line-height: 1; color: var(--red); }
.paper .stat-num.ink { color: var(--ink); }
.paper .stat-label { font-family: var(--sans); font-weight: 600; text-transform: uppercase; letter-spacing: .14em; font-size: 11px; color: var(--ink-soft); margin-top: 6px; }

ul.plain { list-style: none; }
ul.plain li { padding: 9px 0; border-bottom: 1px dotted rgba(20,20,24,.35); }
ul.plain li:last-child { border-bottom: 0; }
.views { font-family: var(--sans); font-weight: 700; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--red); white-space: nowrap; }

.pullquote {
  font-family: var(--serif); font-weight: 700; font-style: italic;
  font-size: clamp(19px, 2.4vw, 24px); line-height: 1.3; color: var(--ink);
  border-left: 4px solid var(--red); padding: 6px 0 6px 16px; margin: 18px 0 !important;
  break-inside: avoid;
}

.numbers-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.numbers-strip > div { text-align: center; padding: 18px 12px; border: 1px solid var(--line); border-radius: 6px; background: rgba(255,255,255,.5); }
.numbers-strip .n { display: block; font-family: var(--serif); font-weight: 900; font-size: clamp(30px, 4vw, 44px); line-height: 1; color: var(--red); }
.numbers-strip .l { display: block; margin-top: 8px; font-family: var(--sans); font-weight: 600; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }

.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.photo-strip img { aspect-ratio: 16/9; object-fit: cover; }

ol.quiz { padding-left: 22px; }
ol.quiz li { margin-bottom: 10px; }
.quiz-answers { margin-top: 16px; font-size: 13px; transform: rotate(180deg); color: var(--ink-soft); }

.edition-cta { border-radius: var(--radius); background: var(--black); color: var(--white); padding: 36px 30px; text-align: center; font-family: var(--sans); }
.edition-cta .h2 { margin-bottom: 10px; }
.edition-cta p { opacity: .8; margin-bottom: 22px; }

footer.colophon {
  margin-top: 44px; border-top: 3px solid var(--ink); padding-top: 14px;
  font-family: var(--sans); font-weight: 600; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
footer.colophon a { color: inherit; }

/* Archive */
.archive-item { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-soft); margin-bottom: 22px; }
.archive-item img { border-radius: var(--radius-sm); aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.tag-free { display: inline-block; margin-left: 10px; padding: 3px 9px; border-radius: 999px; background: rgba(255,45,45,.1); color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; vertical-align: middle; }
.archive-item .h3 { font-size: clamp(22px, 3vw, 30px); margin: 6px 0 10px; }
.archive-item p { color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1000px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .thumb-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .paper-card { transform: none; max-width: 520px; }
  .split, .pricing, .archive-item { grid-template-columns: 1fr; }
  .archive-item img { order: -1; }
  .grid-lead, .grid-2 { grid-template-columns: 1fr; }
  .columned { column-count: 1; }
  .sidebar { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 18px; }
  .numbers-strip { grid-template-columns: repeat(2, 1fr); }
  .photo-strip { grid-template-columns: 1fr; }
  .nav-links { gap: 16px; }
  .nav-links li:nth-child(2), .nav-links li:nth-child(3) { display: none; }
  .footer .container { justify-content: center; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .thumb-grid { grid-template-columns: 1fr; }
  .stat-row { gap: 22px; }
  .hero-actions .btn { width: 100%; }
  .brand-name { font-size: 17px; }
}
