/* ============================================================
   OpenBR Digital — Folha de Estilos Principal
   Archetype: modern-magazine
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #1a1a2e;
  --ink-mid:    #3d3d5c;
  --ink-light:  #6b6b8a;
  --accent:     #c0392b;
  --accent-alt: #e74c3c;
  --bg:         #fafaf8;
  --bg-alt:     #f0ede8;
  --bg-card:    #ffffff;
  --border:     #ddd8d0;
  --serif:      'Georgia', 'Times New Roman', serif;
  --sans:       'Helvetica Neue', Arial, sans-serif;
  --mono:       'Courier New', monospace;
  --max-w:      1160px;
  --gutter:     1.5rem;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

/* ── Layout Helpers ───────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ── Header / Navigation ──────────────────────────────────── */
.site-header {
  background: var(--bg-card);
  border-bottom: 3px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 1rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
}

.brand-text {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
}

.brand-text span { color: var(--accent); }

.site-logo { max-height: 55px; width: auto; }

.site-nav { display: flex; align-items: center; gap: .25rem; }

.site-nav a {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-mid);
  padding: .45rem .75rem;
  border-radius: 3px;
  transition: background .2s, color .2s;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform .3s;
}

/* ── Breaking Ticker ──────────────────────────────────────── */
.ticker-bar {
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  padding: .35rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-label {
  display: inline-block;
  background: var(--ink);
  padding: 0 .75rem;
  margin-right: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.ticker-track {
  display: inline-block;
  animation: ticker 28s linear infinite;
}

@keyframes ticker {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* ── Homepage Layout ──────────────────────────────────────── */
.homepage-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  padding: 2.5rem 0;
}

/* ── Hero Story ───────────────────────────────────────────── */
.hero-story {
  border-bottom: 2px solid var(--border);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.hero-story .story-category {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: .6rem;
}

.hero-story h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .75rem;
}

.hero-story .deck {
  font-size: 1.1rem;
  color: var(--ink-mid);
  line-height: 1.55;
  margin-bottom: 1rem;
  font-family: var(--sans);
}

.hero-story .byline {
  font-family: var(--sans);
  font-size: .8rem;
  color: var(--ink-light);
}

.hero-story .byline strong { color: var(--ink-mid); }

.hero-image-wrap {
  margin: 1.2rem 0;
  position: relative;
}

.hero-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 2px;
}

.hero-image-caption {
  font-family: var(--sans);
  font-size: .72rem;
  color: var(--ink-light);
  margin-top: .4rem;
  font-style: italic;
}

/* ── Story Grid (secondary stories) ──────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.story-card {
  border-top: 2px solid var(--border);
  padding-top: 1rem;
}

.story-card .story-category {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: .4rem;
}

.story-card h3 {
  font-size: 1.05rem;
  line-height: 1.3;
  margin-bottom: .5rem;
  font-weight: 700;
}

.story-card h3 a { color: var(--ink); }
.story-card h3 a:hover { color: var(--accent); text-decoration: none; }

.story-card .story-excerpt {
  font-family: var(--sans);
  font-size: .83rem;
  color: var(--ink-mid);
  line-height: 1.5;
  margin-bottom: .6rem;
}

.story-card .story-meta {
  font-family: var(--sans);
  font-size: .72rem;
  color: var(--ink-light);
}

.story-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  margin-bottom: .75rem;
  border-radius: 2px;
}

/* ── Opinion Strip ────────────────────────────────────────── */
.opinion-strip {
  background: var(--bg-alt);
  border-top: 3px solid var(--ink);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}

.opinion-strip h2 {
  font-family: var(--sans);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-light);
  margin-bottom: 1rem;
}

.opinion-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.opinion-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}

.opinion-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink-mid);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
}

.opinion-item h4 {
  font-size: .9rem;
  line-height: 1.3;
  margin-bottom: .2rem;
}

.opinion-item h4 a { color: var(--ink); }
.opinion-item h4 a:hover { color: var(--accent); text-decoration: none; }

.opinion-item .author-name {
  font-family: var(--sans);
  font-size: .72rem;
  color: var(--ink-light);
}

/* ── Sidebar ──────────────────────────────────────────────── */
.sidebar { padding-top: .5rem; }

.sidebar-widget {
  margin-bottom: 2rem;
  border-top: 3px solid var(--ink);
  padding-top: 1rem;
}

.sidebar-widget h2 {
  font-family: var(--sans);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-light);
  margin-bottom: 1rem;
}

.sidebar-story {
  display: flex;
  gap: .75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-story:last-child { border-bottom: none; }

.sidebar-story-img {
  width: 72px;
  height: 60px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 2px;
}

.sidebar-story h4 {
  font-size: .88rem;
  line-height: 1.3;
  font-weight: 700;
}

.sidebar-story h4 a { color: var(--ink); }
.sidebar-story h4 a:hover { color: var(--accent); text-decoration: none; }

.sidebar-story .story-meta {
  font-family: var(--sans);
  font-size: .7rem;
  color: var(--ink-light);
  margin-top: .25rem;
}

/* ── Tag Cloud ────────────────────────────────────────────── */
.tag-cloud { display: flex; flex-wrap: wrap; gap: .4rem; }

.tag-cloud a {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  background: var(--bg-alt);
  color: var(--ink-mid);
  padding: .25rem .6rem;
  border-radius: 2px;
  border: 1px solid var(--border);
  transition: background .2s, color .2s;
}

.tag-cloud a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  text-decoration: none;
}

/* ── Campaign Block ───────────────────────────────────────── */
.campaign-block {
  background: var(--ink);
  color: #fff;
  padding: 2.5rem 0;
  margin: 2rem 0;
}

.campaign-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.campaign-label {
  font-family: var(--sans);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent-alt);
  margin-bottom: .75rem;
  font-weight: 700;
}

.campaign-creative img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 3px;
}

.campaign-creative--placeholder {
  width: 100%;
  height: 280px;
  background: var(--ink-mid);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.campaign-headline {
  font-size: 1.7rem;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: .75rem;
}

.campaign-description {
  font-family: var(--sans);
  font-size: .92rem;
  line-height: 1.6;
  color: rgba(255,255,255,.8);
  margin-bottom: 1.25rem;
}

.campaign-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .7rem 1.5rem;
  border-radius: 2px;
  transition: background .2s;
}

.campaign-cta:hover {
  background: var(--accent-alt);
  text-decoration: none;
}

/* ── Article Page ─────────────────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  padding: 2.5rem 0;
}

.article-header { margin-bottom: 1.75rem; }

.article-header .story-category {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: .6rem;
}

.article-header h1 {
  font-size: 2.1rem;
  line-height: 1.22;
  font-weight: 700;
  margin-bottom: .75rem;
}

.article-header .deck {
  font-size: 1.1rem;
  color: var(--ink-mid);
  font-family: var(--sans);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--sans);
  font-size: .8rem;
  color: var(--ink-light);
  padding: .75rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.article-byline strong { color: var(--ink-mid); }

.article-body {
  font-size: 1.05rem;
  line-height: 1.78;
}

.article-body p { margin-bottom: 1.4rem; }

.article-body h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 2rem 0 .75rem;
  border-left: 4px solid var(--accent);
  padding-left: .75rem;
}

.article-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1.5rem 0 .5rem;
}

.article-body blockquote {
  border-left: 4px solid var(--accent);
  padding: .75rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--bg-alt);
  font-style: italic;
  color: var(--ink-mid);
}

.article-body figure {
  margin: 1.75rem 0;
}

.article-body figure img {
  width: 100%;
  border-radius: 2px;
}

.article-body figcaption {
  font-family: var(--sans);
  font-size: .72rem;
  color: var(--ink-light);
  margin-top: .4rem;
  font-style: italic;
}

/* ── Author Box ───────────────────────────────────────────── */
.author-box {
  background: var(--bg-alt);
  border-top: 3px solid var(--ink);
  padding: 1.5rem;
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ink-mid);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 700;
}

.author-box h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .25rem;
}

.author-box .author-title {
  font-family: var(--sans);
  font-size: .75rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .5rem;
}

.author-box p {
  font-family: var(--sans);
  font-size: .83rem;
  color: var(--ink-mid);
  line-height: 1.55;
}

/* ── Articles List Page ───────────────────────────────────── */
.articles-page { padding: 2.5rem 0; }

.page-header {
  border-bottom: 3px solid var(--accent);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 700;
}

.page-header p {
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--ink-mid);
  margin-top: .4rem;
}

.articles-list { display: flex; flex-direction: column; gap: 0; }

.article-list-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.article-list-item:last-child { border-bottom: none; }

.article-list-img {
  width: 200px;
  height: 140px;
  object-fit: cover;
  border-radius: 2px;
}

.article-list-body .story-category {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: .35rem;
}

.article-list-body h2 {
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: .5rem;
}

.article-list-body h2 a { color: var(--ink); }
.article-list-body h2 a:hover { color: var(--accent); text-decoration: none; }

.article-list-body .story-excerpt {
  font-family: var(--sans);
  font-size: .85rem;
  color: var(--ink-mid);
  line-height: 1.5;
  margin-bottom: .5rem;
}

.article-list-body .story-meta {
  font-family: var(--sans);
  font-size: .72rem;
  color: var(--ink-light);
}

/* ── About Page ───────────────────────────────────────────── */
.about-page { padding: 2.5rem 0; max-width: 760px; }

.about-page h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid var(--accent);
  padding-bottom: .75rem;
}

.about-page h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 2rem 0 .75rem;
}

.about-page p {
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.team-card {
  text-align: center;
  padding: 1.25rem;
  background: var(--bg-alt);
  border-radius: 3px;
}

.team-card .team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--ink-mid);
  margin: 0 auto .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 700;
}

.team-card h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .2rem;
}

.team-card .role {
  font-family: var(--sans);
  font-size: .72rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Contact Page ─────────────────────────────────────────── */
.contact-page { padding: 2.5rem 0; max-width: 680px; }

.contact-page h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  border-bottom: 3px solid var(--accent);
  padding-bottom: .75rem;
}

.contact-page p {
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.contact-form { margin-top: 1.5rem; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-mid);
  margin-bottom: .4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .65rem .85rem;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--ink);
  background: var(--bg-card);
  transition: border-color .2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.btn-submit {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: .75rem 2rem;
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s;
}

.btn-submit:hover { background: var(--accent-alt); }

/* ── Legal Pages ──────────────────────────────────────────── */
.legal-page { padding: 2.5rem 0; max-width: 760px; }

.legal-page h1 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.legal-meta {
  font-family: var(--sans);
  font-size: .78rem;
  color: var(--ink-light);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}

.legal-page h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 1.75rem 0 .6rem;
  color: var(--ink);
}

.legal-page p,
.legal-page li {
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: .75rem;
}

.legal-page ul { padding-left: 1.5rem; }
.legal-page ul li { margin-bottom: .4rem; }

.legal-page a { color: var(--accent); }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .brand-text { color: #fff; font-size: 1.3rem; }
.footer-brand .brand-text span { color: var(--accent-alt); }

.footer-tagline {
  font-family: var(--sans);
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-top: .5rem;
  line-height: 1.5;
}

.footer-col h3 {
  font-family: var(--sans);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.4);
  margin-bottom: .85rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: .45rem; }

.footer-col ul li a {
  font-family: var(--sans);
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-family: var(--sans);
  font-size: .75rem;
  color: rgba(255,255,255,.4);
}

.footer-legal-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-family: var(--sans);
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}

.footer-legal-links a:hover { color: rgba(255,255,255,.8); text-decoration: none; }

/* ── SVG Placeholder Images ───────────────────────────────── */
.img-placeholder {
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-light);
  font-family: var(--sans);
  font-size: .75rem;
  letter-spacing: .06em;
}

/* ── Utility ──────────────────────────────────────────────── */
.section-title {
  font-family: var(--sans);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ink-light);
  border-bottom: 2px solid var(--border);
  padding-bottom: .5rem;
  margin-bottom: 1.25rem;
}

.read-more {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.read-more::after { content: ' →'; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .homepage-grid { grid-template-columns: 1fr; }
  .sidebar { border-top: 2px solid var(--border); padding-top: 1.5rem; }
  .story-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .campaign-inner { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  :root { --gutter: 1rem; }
  .hero-story h1 { font-size: 1.7rem; }
  .story-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .article-list-item { grid-template-columns: 1fr; }
  .article-list-img { width: 100%; height: 200px; }
  .site-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-card); padding: 1rem; border-bottom: 3px solid var(--accent); box-shadow: 0 4px 12px rgba(0,0,0,.1); }
  .site-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .opinion-list { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-image-wrap img { height: 240px; }
}

/* ── Cookie Banner ────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: rgba(255,255,255,.85);
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 999;
  font-family: var(--sans);
  font-size: .82rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .4s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner a { color: var(--accent-alt); }

.cookie-accept {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: .5rem 1.25rem;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}

.cookie-accept:hover { background: var(--accent-alt); }
