/*
Theme Name: TV Licence UK
Theme URI: https://tvlicense.uk
Description: Clean informational theme for TV Licence UK
Version: 1.0.0
Author: TV Licence UK
Text Domain: tvlicenceuk
*/

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --navy:       #0D1B2A;
  --navy-mid:   #162032;
  --blue:       #1565C0;
  --blue-light: #E8F0FE;
  --slate:      #F5F7FA;
  --green:      #2E7D32;
  --green-light:#E8F5E9;
  --red:        #C62828;
  --red-light:  #FFEBEE;
  --amber:      #E65100;
  --amber-light:#FFF3E0;
  --text:       #1A1A2E;
  --text-mid:   #3D3D5C;
  --text-light: #6B7280;
  --border:     #DDE1E7;
  --white:      #FFFFFF;

  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 2px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--navy);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 24px;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.site-logo:hover { text-decoration: none; }
.site-logo span { color: #60A5FA; }
.main-nav,
ul.main-nav { display: flex; gap: 4px; list-style: none; padding: 0; margin: 0; }
.main-nav li { list-style: none; }
.main-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.main-nav a:hover { background: rgba(255,255,255,0.1); color: var(--white); text-decoration: none; }
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a,
.main-nav .current-menu-ancestor > a { background: rgba(255,255,255,0.12); color: var(--white); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
}

/* ============================================================
   HERO (front page only)
   ============================================================ */
.hero {
  background: var(--navy);
  padding: 48px 24px 56px;
  border-bottom: 3px solid var(--blue);
}
.hero-inner { max-width: 1200px; margin: 0 auto; }
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #60A5FA;
  margin-bottom: 16px;
}
.hero-label::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #60A5FA;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 860px;
  margin-bottom: 20px;
}
.hero-meta {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.hero-meta strong { color: rgba(255,255,255,0.75); }

/* Page hero (inner pages) */
.page-hero {
  background: var(--navy);
  padding: 36px 24px 40px;
  border-bottom: 3px solid var(--blue);
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.page-hero-meta { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.breadcrumb { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb span { margin: 0 6px; }

/* ============================================================
   LAYOUT
   ============================================================ */
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.page-wrap.no-sidebar {
  grid-template-columns: 1fr;
  max-width: 860px;
}
.main-content { min-width: 0; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
  position: sticky;
  top: 76px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.15) transparent;
}
.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-track { background: transparent; }
.sidebar::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 4px; }
.checker-widget {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--white);
}
.checker-widget h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}
.checker-widget p { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.checker-q { font-size: 0.9rem; font-weight: 600; margin-bottom: 12px; color: var(--white); }
.checker-btns { display: flex; flex-direction: column; gap: 8px; }
.checker-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 10px 14px;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s, border-color 0.15s;
}
.checker-btn:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); }
.checker-result {
  display: none;
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  line-height: 1.5;
}
.checker-result.yes { background: rgba(198,40,40,0.2); border: 1px solid rgba(198,40,40,0.4); color: #FFCDD2; }
.checker-result.no  { background: rgba(46,125,50,0.2); border: 1px solid rgba(46,125,50,0.4); color: #C8E6C9; }
.checker-result strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.checker-reset { margin-top: 10px; font-size: 0.8rem; color: rgba(255,255,255,0.5); cursor: pointer; background: none; border: none; font-family: var(--font-body); text-decoration: underline; }
.checker-reset:hover { color: rgba(255,255,255,0.8); }

.cost-card {
  background: var(--slate);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border);
}
.cost-card-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 14px;
}
.cost-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.cost-row:last-child { border-bottom: none; }
.cost-label { color: var(--text-mid); }
.cost-value { font-weight: 600; color: var(--text); }
.cost-value.free { color: var(--green); }

.page-nav {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.page-nav-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 12px;
}
.page-nav ol { list-style: none; counter-reset: nav-counter; display: flex; flex-direction: column; gap: 2px; }
.page-nav li { counter-increment: nav-counter; }
.page-nav a {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-mid);
  padding: 5px 0;
  transition: color 0.15s;
}
.page-nav a::before {
  content: counter(nav-counter);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue);
  min-width: 16px;
}
.page-nav a:hover { color: var(--blue); text-decoration: none; }

/* ============================================================
   WORDPRESS CONTENT AREA
   ============================================================ */
.entry-content { font-size: 0.95rem; line-height: 1.75; color: var(--text); }
.entry-content p { margin-bottom: 16px; }
.entry-content p:last-child { margin-bottom: 0; }
.entry-content h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 36px 0 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--slate);
}
.entry-content h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 10px;
}
.entry-content h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin: 20px 0 8px;
}
.entry-content ul,
.entry-content ol {
  margin: 14px 0 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.entry-content li { line-height: 1.65; }
.entry-content strong { font-weight: 600; }
.entry-content a { color: var(--blue); }
.entry-content a:hover { text-decoration: underline; }
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.88rem;
}
.entry-content table th {
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
}
.entry-content table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.entry-content table tr:nth-child(even) td { background: var(--slate); }
.entry-content table tr:last-child td { border-bottom: none; }
.entry-content blockquote {
  border-left: 4px solid var(--blue);
  background: var(--blue-light);
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.95rem;
}
.entry-content hr { border: none; border-top: 2px solid var(--slate); margin: 32px 0; }

/* Gutenberg block alignment */
.entry-content .alignwide { margin-left: -24px; margin-right: -24px; }
.entry-content .alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); width: 100vw; }
.entry-content .aligncenter { text-align: center; margin-left: auto; margin-right: auto; }
.entry-content .wp-block-image { margin: 20px 0; }
.entry-content .wp-block-image img { border-radius: var(--radius-md); }

/* Gutenberg accordion (Details block) */
.entry-content details {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 4px;
  overflow: hidden;
}
.entry-content details summary {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  background: var(--white);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.15s;
}
.entry-content details summary::-webkit-details-marker { display: none; }
.entry-content details summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--blue);
  font-weight: 400;
  flex-shrink: 0;
}
.entry-content details[open] summary { background: var(--blue-light); color: var(--blue); }
.entry-content details[open] summary::after { content: '\00D7'; }
.entry-content details > *:not(summary) {
  padding: 14px 20px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ============================================================
   STATIC HOMEPAGE SECTIONS (non-editor)
   ============================================================ */
.quick-answer {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin-bottom: 40px;
}
.quick-answer-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 8px;
}
.quick-answer p { font-size: 0.95rem; color: var(--text); line-height: 1.65; margin: 0; }
.takeaways-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}
.takeaway-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--slate);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 0.85rem;
  line-height: 1.4;
}
.takeaway-item::before { content: '\2713'; font-weight: 700; color: var(--green); flex-shrink: 0; margin-top: 1px; }
.section-heading {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--slate);
}
.sub-heading {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 10px;
}
.body-text { font-size: 0.95rem; line-height: 1.75; color: var(--text); }
.body-text + .body-text { margin-top: 14px; }
.stats-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 20px 0; }
.stat-card { background: var(--navy); border-radius: var(--radius-md); padding: 18px 16px; text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: #60A5FA; line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); line-height: 1.3; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.compare-col-header {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 14px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  margin-bottom: 2px;
}
.compare-col-header.yes { background: var(--red); color: var(--white); }
.compare-col-header.no  { background: var(--green); color: var(--white); }
.compare-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.compare-item:last-child { border-bottom: none; border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
.myths-list { display: flex; flex-direction: column; gap: 16px; margin-top: 16px; }
.myth-card { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.myth-header { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: var(--slate); }
.myth-badge { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--red); background: var(--red-light); border-radius: 4px; padding: 3px 7px; white-space: nowrap; }
.myth-claim { font-size: 0.9rem; font-weight: 600; color: var(--text); font-style: italic; }
.myth-body { padding: 14px 18px; font-size: 0.88rem; line-height: 1.65; color: var(--text-mid); }
.exemption-cards { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }
.exemption-card { border-radius: var(--radius-md); padding: 18px 20px; border: 1px solid var(--border); }
.exemption-card.free { border-left: 4px solid var(--green); background: var(--green-light); }
.exemption-card.discount { border-left: 4px solid var(--amber); background: var(--amber-light); }
.exemption-card.other { border-left: 4px solid var(--blue); background: var(--blue-light); }
.exemption-title { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.exemption-card.free .exemption-title { color: var(--green); }
.exemption-card.discount .exemption-title { color: var(--amber); }
.exemption-card.other .exemption-title { color: var(--blue); }
.exemption-body { font-size: 0.87rem; line-height: 1.65; color: var(--text-mid); }
.payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.payment-item { background: var(--slate); border-radius: var(--radius-md); padding: 16px; font-size: 0.87rem; }
.payment-name { font-weight: 600; color: var(--text); margin-bottom: 4px; font-size: 0.9rem; }
.payment-desc { color: var(--text-mid); line-height: 1.5; }
.warning-box { background: var(--red-light); border: 1px solid #FFCDD2; border-left: 4px solid var(--red); border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 16px 20px; margin: 20px 0; font-size: 0.9rem; line-height: 1.6; }
.warning-box strong { color: var(--red); display: block; margin-bottom: 4px; font-size: 0.95rem; }
.info-box { background: var(--blue-light); border: 1px solid #BBDEFB; border-left: 4px solid var(--blue); border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 16px 20px; margin: 20px 0; font-size: 0.9rem; line-height: 1.6; }
.info-box strong { color: var(--blue); display: block; margin-bottom: 4px; }
.glance-table { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: 0.88rem; }
.glance-table tr { border-bottom: 1px solid var(--border); }
.glance-table tr:last-child { border-bottom: none; }
.glance-table td { padding: 11px 14px; vertical-align: top; }
.glance-table td:first-child { font-weight: 600; color: var(--text-mid); width: 42%; background: var(--slate); }
.section { margin-bottom: 52px; }
.section:last-child { margin-bottom: 0; }

/* ============================================================
   STATIC HOMEPAGE FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 4px; margin-top: 16px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq-question {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--slate); }
.faq-question[aria-expanded="true"] { background: var(--blue-light); color: var(--blue); }
.faq-icon { font-size: 1.1rem; color: var(--blue); flex-shrink: 0; transition: transform 0.2s; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 20px 16px; font-size: 0.88rem; line-height: 1.7; color: var(--text-mid); background: var(--white); }
.faq-answer.open { display: block; }

/* ============================================================
   INNER PAGE CONTENT
   ============================================================ */
.inner-page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}
.inner-page-content {
  max-width: 760px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  padding: 40px 24px;
  margin-top: 64px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.7); transition: color 0.15s; }
.footer-links a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-disclaimer { font-size: 0.78rem; color: rgba(255,255,255,0.35); line-height: 1.6; }
.footer-legal-links { display: flex; gap: 16px; list-style: none; }
.footer-legal-links a { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-legal-links a:hover { color: rgba(255,255,255,0.6); text-decoration: none; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 32px; }
.contact-info-card { background: var(--slate); border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--border); }
.contact-info-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.contact-info-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 10px; }
.contact-info-card p:last-child { margin-bottom: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .page-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .takeaways-grid { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 32px 16px 40px; }
  .page-wrap { padding: 32px 16px; }
  .inner-page-wrap { padding: 32px 16px; }
  .stats-strip { grid-template-columns: 1fr; }
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--navy-mid);
    flex-direction: column;
    padding: 12px 16px;
    gap: 2px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 12px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
