/*
Theme Name: Paddlory
Theme URI: https://paddlory.com
Author: Paddlory
Description: Custom dark, sporty, premium theme for Paddlory — independent pickleball gear reviews. Built 1:1 from the Paddlory design system. Fast, schema-rich, AEO-ready.
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: paddlory
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --navy: #050c1a;
  --dark: #16202d;
  --text: #F0E6D1;
  --muted: #637381;
  --cyan: #00A8E8;
  --cyan-hover: #4dc4f0;
  --volt: #D1F052;
  --volt-hover: #e0f76a;
  --border: rgba(99, 115, 129, 0.15);
  --border-strong: rgba(99, 115, 129, 0.30);
  --radius: 0.5rem;
  --maxw: 80rem;       /* 1280px (max-w-7xl) */
  --maxw-article: 56rem; /* 896px (max-w-4xl) */
  --maxw-prose: 48rem;   /* 768px (max-w-3xl) */
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  background-color: var(--navy);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  margin: 0;
  color: var(--text);
}
p { margin: 0 0 1rem; }
a { color: var(--cyan); text-decoration: none; transition: color .2s; }
a:hover { color: var(--cyan-hover); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1rem; padding-left: 1.5rem; }
.mono, code { font-family: 'JetBrains Mono', monospace; }
strong { color: var(--text); font-weight: 600; }

/* layout helpers */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1rem; width: 100%; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
.section { padding: 4rem 0; }
@media (min-width: 640px) { .section { padding: 5rem 0; } }
.bg-navy { background-color: var(--navy); }
.bg-dark { background-color: var(--dark); }
.text-gradient {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--volt) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.eyebrow {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--volt); margin: 0 0 .75rem;
}

/* buttons */
.btn-volt, .btn-sky {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.5rem; font-weight: 600; font-size: .875rem;
  border-radius: .375rem; transition: all .2s; cursor: pointer;
}
.btn-volt { background-color: var(--volt); color: var(--navy); border: 1px solid var(--volt); }
.btn-volt:hover { background-color: var(--volt-hover); color: var(--navy); transform: translateY(-1px); }
.btn-sky { background-color: transparent; color: var(--cyan); border: 1px solid var(--cyan); }
.btn-sky:hover { background-color: rgba(0,168,232,.1); color: var(--cyan); }
.btn-icon { width: 1rem; height: 1rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 1rem 0; transition: all .3s;
  background-color: rgba(5,12,26,.85);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header.scrolled { padding: .5rem 0; background-color: rgba(5,12,26,.95); box-shadow: 0 10px 30px rgba(0,0,0,.4); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.brand-name { font-family: 'Sora'; font-weight: 900; font-size: 1.5rem; letter-spacing: -.02em; color: var(--text); }
.brand-badge { font-size: .7rem; font-weight: 600; padding: .1rem .45rem; border-radius: .25rem; background: var(--volt); color: var(--navy); }
.main-nav { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 1024px) { .main-nav { display: flex; } }
.main-nav a { font-size: .875rem; font-weight: 500; color: var(--text); }
.main-nav a:hover { color: var(--cyan); }
.header-actions { display: flex; align-items: center; gap: .75rem; }
.icon-btn { padding: .5rem; border: none; background: transparent; color: var(--text); border-radius: .5rem; cursor: pointer; display: inline-flex; }
.icon-btn:hover { background: rgba(255,255,255,.05); }
.header-cta { display: none; }
@media (min-width: 640px) { .header-cta { display: inline-flex; align-items: center; gap: .375rem; padding: .5rem 1rem; font-size: .75rem; font-weight: 700; border-radius: .375rem; background: var(--volt); color: var(--navy); } }
.header-cta:hover { filter: brightness(1.1); color: var(--navy); }
.menu-toggle { display: inline-flex; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.header-search { border-top: 1px solid var(--border); padding: .75rem 1rem; }
.header-search input, .mobile-nav { display: block; }
.header-search input {
  width: 100%; max-width: 42rem; margin: 0 auto; padding: .625rem 1rem;
  border-radius: .5rem; font-size: .875rem; outline: none;
  background: var(--dark); color: var(--text); border: 1px solid var(--border-strong);
}
.mobile-nav { display: none; border-top: 1px solid var(--border); padding: 1rem; background: rgba(5,12,26,.98); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: .625rem .75rem; border-radius: .5rem; font-size: .875rem; font-weight: 500; color: var(--text); }
.mobile-nav a:hover { background: rgba(255,255,255,.05); }
.mobile-nav .cta { color: var(--volt); font-weight: 700; border-top: 1px solid var(--border); margin-top: .5rem; padding-top: 1rem; }

/* push content below fixed header */
.site-main { padding-top: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 85vh; display: flex; align-items: flex-end;
  padding-bottom: 5rem; background-color: var(--navy); overflow: hidden;
}
@media (min-width: 640px) { .hero { padding-bottom: 7rem; } }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .30; }
.hero-bg .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,12,26,.3) 0%, rgba(5,12,26,.8) 60%, var(--navy) 100%);
}
.hero-content { position: relative; z-index: 10; width: 100%; }
.hero-content .inner { max-width: 42rem; }
.hero h1 { font-size: 2.25rem; font-weight: 900; line-height: 1.1; letter-spacing: -.02em; margin: 0 0 1.5rem; }
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 768px) { .hero h1 { font-size: 3.75rem; } }
.hero-sub { font-size: 1.125rem; line-height: 1.65; color: var(--muted); max-width: 32rem; margin: 0 0 2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; }

/* trust strip */
.trust-strip { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1rem 0; }
.trust-items { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem; font-size: .8125rem; }
@media (min-width: 640px) { .trust-items { gap: 2.5rem; } }
.trust-item { display: flex; align-items: center; gap: .5rem; color: var(--text); }
.trust-item svg { width: 1rem; height: 1rem; color: var(--volt); flex-shrink: 0; }
.trust-item.dim { color: var(--muted); }
.trust-item.dim svg { color: var(--cyan); }

/* ============================================================
   MONEY BANDS
   ============================================================ */
.money-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .money-grid { grid-template-columns: 1fr 1fr; } }
.money-band {
  position: relative; overflow: hidden; border-radius: .75rem;
  aspect-ratio: 16/10; border: 1px solid var(--border); display: block;
}
.money-band img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.money-band:hover img { transform: scale(1.05); }
.money-band .grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,12,26,.95) 0%, rgba(5,12,26,.3) 50%, transparent 100%); }
.money-band .label { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem; }
.money-band .label h2 { font-size: 1.875rem; font-weight: 900; margin: 0 0 .5rem; }
.money-band .label .desc { font-size: .875rem; color: var(--muted); margin: 0 0 1rem; }
.money-band .more { display: inline-flex; align-items: center; gap: .25rem; font-size: .875rem; font-weight: 700; color: var(--cyan); }
.money-band .more svg { width: 1rem; height: 1rem; }

/* ============================================================
   CATEGORY GRID
   ============================================================ */
.section-title { font-size: 1.875rem; font-weight: 900; margin: 0 0 2rem; }
.section-title.center { text-align: center; }
.cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (min-width: 640px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }
.cat-card { padding: 1.25rem; border-radius: .75rem; background: var(--navy); border: 1px solid var(--border); transition: transform .2s; display: block; }
.cat-card:hover { transform: translateY(-.25rem); }
.cat-icon { width: 2.5rem; height: 2.5rem; border-radius: .5rem; display: flex; align-items: center; justify-content: center; margin-bottom: .75rem; background: rgba(0,168,232,.1); color: var(--cyan); }
.cat-icon svg { width: 1.5rem; height: 1.5rem; }
.cat-card h3 { font-size: .875rem; font-weight: 700; margin: 0 0 .25rem; color: var(--text); }
.cat-card p { font-size: .75rem; line-height: 1.5; color: var(--muted); margin: 0; }

/* ============================================================
   CARDS (roundups / guides)
   ============================================================ */
.card-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card { display: block; padding: 1.25rem; border-radius: .75rem; background: var(--dark); border: 1px solid var(--border); transition: transform .2s; }
.post-card:hover { transform: translateY(-.25rem); }
.card-meta { display: flex; align-items: center; gap: .5rem; margin-bottom: .75rem; }
.badge { font-size: .75rem; font-weight: 700; padding: .1rem .5rem; border-radius: .25rem; text-transform: uppercase; }
.badge.roundup { background: rgba(209,240,82,.15); color: var(--volt); }
.badge.pillar, .badge.guide { background: rgba(0,168,232,.15); color: var(--cyan); }
.card-cat { font-size: .75rem; color: var(--muted); }
.post-card h3 { font-size: 1.125rem; font-weight: 700; margin: 0 0 .5rem; color: var(--text); transition: color .2s; }
.post-card:hover h3 { color: var(--cyan); }
.post-card p { font-size: .875rem; line-height: 1.6; color: var(--muted); margin: 0 0 .75rem; }
.post-card .read { display: inline-flex; align-items: center; gap: .25rem; font-size: .875rem; font-weight: 700; color: var(--cyan); }
.post-card .read svg { width: 1rem; height: 1rem; }
.post-card.small h3 { font-size: 1rem; }
.post-card.small p { font-size: .75rem; }

/* brand showdown band */
.brand-band {
  border-radius: .75rem; padding: 2rem; display: flex; flex-direction: column;
  align-items: center; justify-content: space-between; gap: 2rem;
  background: linear-gradient(135deg, rgba(0,168,232,.08) 0%, rgba(209,240,82,.05) 100%);
  border: 1px solid rgba(0,168,232,.2);
}
@media (min-width: 768px) { .brand-band { flex-direction: row; padding: 3rem; } }
.brand-band .copy { max-width: 32rem; }
.brand-band h2 { font-size: 1.875rem; font-weight: 900; margin: 0 0 1rem; }
.brand-band p { font-size: .875rem; line-height: 1.6; color: var(--muted); margin: 0 0 1.5rem; }
.brand-logos { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.brand-logo { width: 5rem; height: 5rem; border-radius: .75rem; display: flex; align-items: center; justify-content: center; font-family: 'Sora'; font-weight: 900; font-size: 1.25rem; background: var(--navy); color: var(--text); border: 1px solid var(--border-strong); }
@media (min-width: 640px) { .brand-logo { width: 6rem; height: 6rem; font-size: 1.5rem; } }
.brand-logo.featured { background: rgba(209,240,82,.15); color: var(--volt); border-color: rgba(209,240,82,.3); }

/* about blurb */
.about-blurb { max-width: var(--maxw-prose); margin: 0 auto; text-align: center; }
.about-blurb h2 { font-size: 1.5rem; font-weight: 900; margin: 0 0 1rem; }
.about-blurb p { font-size: .875rem; line-height: 1.65; color: var(--muted); margin: 0 0 1.5rem; }

/* ============================================================
   ARTICLE / SINGLE
   ============================================================ */
.article-wrap { background: var(--navy); }
.article-head { padding-top: 6rem; padding-bottom: 1rem; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; font-size: .75rem; color: var(--muted); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--muted); } .breadcrumb a:hover { color: var(--cyan); }
.breadcrumb .current { color: var(--text); }
.article-meta-top { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.article-meta-top .date { display: inline-flex; align-items: center; gap: .25rem; font-size: .75rem; color: var(--muted); }
.article-meta-top svg { width: .75rem; height: .75rem; }
.article-title { font-size: 2rem; font-weight: 900; line-height: 1.15; margin: 0 0 1rem; }
@media (min-width: 640px) { .article-title { font-size: 2.5rem; } }
.article-dek { font-size: 1.125rem; line-height: 1.65; color: var(--muted); margin: 0 0 1rem; }
.byline { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; font-size: .75rem; color: var(--muted); }
.byline svg { width: .75rem; height: .75rem; }
.byline .sep { margin: 0 .25rem; }

.article-body { max-width: var(--maxw-article); margin: 0 auto; padding: 2rem 1rem; }
@media (min-width: 640px) { .article-body { padding: 2rem 1.5rem; } }
.disclosure {
  margin-bottom: 2rem; padding: 1rem; border-radius: .5rem; font-size: .75rem; line-height: 1.6;
  background: rgba(22,32,45,.5); color: var(--muted); border: 1px solid var(--border);
}
.disclosure strong { color: var(--text); }

.article-content h2 { font-family: 'Sora'; font-size: 1.5rem; font-weight: 700; color: var(--text); margin: 2rem 0 1rem; }
.article-content h3 { font-family: 'Sora'; font-size: 1.25rem; font-weight: 600; color: var(--text); margin: 1.5rem 0 .75rem; }
.article-content p { font-size: 1rem; line-height: 1.75; color: var(--muted); margin: 0 0 1rem; }
.article-content strong { color: var(--text); font-weight: 600; }
.article-content a { color: var(--cyan); text-decoration: underline; }
.article-content a:hover { color: var(--cyan-hover); }
.article-content ul, .article-content ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.article-content li { color: var(--muted); margin-bottom: .5rem; line-height: 1.6; }

.comparison-wrap { margin-top: 3rem; }
.comparison-wrap > h2 { font-family: 'Sora'; font-size: 1.5rem; font-weight: 700; margin: 0 0 .5rem; }
.comparison-wrap .note { font-size: .875rem; color: var(--muted); margin: 0 0 1rem; }
.table-scroll { overflow-x: auto; margin: 2rem 0; }
.spec-table { width: 100%; font-size: .875rem; border-collapse: separate; border-spacing: 0; }
.spec-table th { text-align: left; padding: .75rem 1rem; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); border-bottom: 2px solid var(--cyan); background: var(--dark); white-space: nowrap; }
.spec-table th.c, .spec-table td.c { text-align: center; }
.spec-table td { padding: .75rem 1rem; color: var(--text); }
.spec-table tr.winner { background: rgba(209,240,82,.05); }
.spec-table tr:nth-child(even):not(.winner) { background: rgba(22,32,45,.3); }
.spec-table .pname { font-weight: 600; color: var(--text); }
.spec-table .pbrand { font-size: .75rem; color: var(--muted); }
.toppick { display: inline-block; margin-top: .25rem; font-size: .75rem; font-weight: 700; padding: .1rem .5rem; border-radius: .25rem; background: var(--volt); color: var(--navy); }
.spec-table .msrp { color: var(--volt); font-weight: 500; }
.spec-table .pending { font-size: .75rem; font-style: italic; color: var(--muted); }
.spec-table .rating { font-weight: 700; color: var(--cyan); }

/* FAQ accordion */
.faq-block { margin: 2.5rem 0; }
.faq-block > h2 { font-family: 'Sora'; font-size: 1.5rem; font-weight: 700; margin: 0 0 1.5rem; }
.faq-item { border-radius: .5rem; overflow: hidden; background: var(--dark); border: 1px solid var(--border); margin-bottom: .75rem; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.25rem; text-align: left; background: transparent; border: none; cursor: pointer; }
.faq-q:hover { background: rgba(255,255,255,.05); }
.faq-q span { font-weight: 600; font-size: .875rem; color: var(--text); }
.faq-q svg { width: 1rem; height: 1rem; color: var(--cyan); flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { padding: 0 1.25rem; max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; }
.faq-item.open .faq-a { padding: 0 1.25rem 1rem; max-height: 500px; }
.faq-a p { font-size: .875rem; line-height: 1.65; color: var(--muted); margin: 0; }

.article-foot { margin-top: 2.5rem; padding-top: 1.5rem; text-align: center; font-size: .75rem; color: var(--muted); border-top: 1px solid var(--border); }
.article-foot p { margin: 0 0 .25rem; }

.related { background: var(--dark); padding: 3rem 0; }
.related h3 { font-family: 'Sora'; font-size: 1.125rem; font-weight: 700; margin: 0 0 1rem; }
.related-grid { display: grid; gap: 1rem; max-width: var(--maxw-article); margin: 0 auto; }
@media (min-width: 640px) { .related-grid { grid-template-columns: 1fr 1fr; } }
.related-card { display: block; padding: 1rem; border-radius: .5rem; background: var(--navy); border: 1px solid var(--border); }
.related-card:hover { background: rgba(255,255,255,.03); }
.related-card .t { font-size: .875rem; font-weight: 600; color: var(--text); margin: 0; }
.related-card .d { font-size: .75rem; color: var(--muted); margin: .25rem 0 0; }

/* ============================================================
   ARCHIVE / CATEGORY
   ============================================================ */
.archive-head { padding-top: 6rem; }
.archive h1 { font-size: 2rem; font-weight: 900; margin: 0 0 .75rem; }
@media (min-width: 640px) { .archive h1 { font-size: 2.5rem; } }
.archive .desc { font-size: 1rem; color: var(--muted); max-width: 42rem; margin: 0 0 2.5rem; }
.group { margin-bottom: 3rem; }
.group-title { font-size: 1.125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin: 0 0 1rem; }
.group-title.cyan { color: var(--cyan); }
.group-title.volt { color: var(--volt); }
.group-title.muted { color: var(--muted); }
.pillar-list { display: flex; flex-direction: column; gap: .75rem; }
.pillar-row { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; border-radius: .75rem; background: var(--dark); border: 1px solid var(--border); transition: transform .2s; }
.pillar-row:hover { transform: translateY(-.125rem); }
.pillar-icon { width: 2.5rem; height: 2.5rem; border-radius: .5rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: rgba(0,168,232,.1); }
.pillar-icon svg { width: 1.25rem; height: 1.25rem; color: var(--cyan); }
.pillar-row .body { flex: 1; }
.pillar-row h3 { font-size: 1rem; font-weight: 700; color: var(--text); }
.pillar-row:hover h3 { color: var(--cyan); }
.pillar-row p { font-size: .875rem; color: var(--muted); margin: .25rem 0 0; }

/* ============================================================
   PROSE PAGES (about / how-we-test / disclosures / contact)
   ============================================================ */
.prose-page { padding-top: 6rem; padding-bottom: 4rem; min-height: 80vh; }
.prose-wrap { max-width: var(--maxw-prose); margin: 0 auto; }
.prose-wrap > h1 { font-size: 2rem; font-weight: 900; margin: 0 0 1.5rem; }
@media (min-width: 640px) { .prose-wrap > h1 { font-size: 2.5rem; } }
.prose h2 { font-family: 'Sora'; font-size: 1.35rem; font-weight: 700; margin: 2rem 0 1rem; color: var(--text); }
.prose p { color: var(--muted); line-height: 1.75; margin: 0 0 1rem; font-size: 1rem; }
.prose a { color: var(--cyan); text-decoration: underline; }
.prose ul { padding-left: 1.5rem; }
.prose li { color: var(--muted); margin-bottom: .5rem; }
.callout { padding: 1rem; border-radius: .5rem; margin: 1rem 0; display: flex; align-items: flex-start; gap: .75rem; background: rgba(209,240,82,.05); border: 1px solid rgba(209,240,82,.2); }
.callout svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; margin-top: .125rem; color: var(--volt); }
.callout p { font-size: .875rem; color: var(--muted); margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); border-top: 1px solid var(--border); }
.footer-inner { padding: 3rem 0; }
.newsletter-box { border-radius: .75rem; padding: 1.5rem; margin-bottom: 3rem; background: var(--dark); border: 1px solid var(--border); }
@media (min-width: 640px) { .newsletter-box { padding: 2rem; } }
.newsletter-flex { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
@media (min-width: 640px) { .newsletter-flex { flex-direction: row; align-items: center; justify-content: space-between; } }
.newsletter-box h3 { font-size: 1.125rem; font-weight: 700; margin: 0 0 .25rem; }
.newsletter-box .sub { font-size: .875rem; color: var(--muted); margin: 0; }
.newsletter-form { display: flex; gap: .5rem; width: 100%; }
@media (min-width: 640px) { .newsletter-form { width: auto; } }
.newsletter-form input { flex: 1; padding: .625rem 1rem; border-radius: .5rem; font-size: .875rem; outline: none; background: var(--navy); color: var(--text); border: 1px solid var(--border-strong); }
@media (min-width: 640px) { .newsletter-form input { width: 16rem; flex: none; } }
.newsletter-form button { padding: .625rem 1.25rem; border-radius: .5rem; font-size: .875rem; font-weight: 700; background: var(--volt); color: var(--navy); border: none; cursor: pointer; flex-shrink: 0; }
.newsletter-form button:hover { filter: brightness(1.1); }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-cols { grid-template-columns: repeat(4, 1fr); } }
.footer-cols h4 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin: 0 0 1rem; }
.footer-cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .625rem; }
.footer-cols a { font-size: .875rem; color: var(--text); }
.footer-cols a:hover { color: var(--cyan); }
.footer-trust { text-align: center; padding: 1rem; margin-bottom: 1.5rem; border-radius: .5rem; background: rgba(22,32,45,.5); }
.footer-trust p { font-size: .75rem; font-weight: 500; color: var(--muted); margin: 0; }
.footer-bottom { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: .75rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-bottom p { font-size: .75rem; color: var(--muted); margin: 0; }
.footer-bottom a { text-decoration: underline; }

/* utility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.hidden { display: none; }
