/* Picnic website preview - basic styles, not final design */

/* Picnic-licensed brand faces, served as .woff2 (59% smaller than .otf).
   Original .otf masters live alongside in /assets/fonts/ for reference. */

/* Adelle Slab Serif - brand body face (marketing surfaces) and H3 (emotive subheadings). */
@font-face {
  font-family: 'Adelle';
  src: url('assets/fonts/Adelle_Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Adelle';
  src: url('assets/fonts/Adelle_Reg.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Adelle';
  src: url('assets/fonts/Adelle_light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Neue Haas Unica - brand display face. H1, H2, H4, CTAs, buttons,
   and long-form body copy (pillar pages, case studies, blog). */
@font-face {
  font-family: 'Neue Haas Unica';
  src: url('assets/fonts/NeueHaasUnicaW1G-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Unica';
  src: url('assets/fonts/NeueHaasUnicaW1G-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Unica';
  src: url('assets/fonts/NeueHaasUnicaW1G-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Unica';
  src: url('assets/fonts/NeueHaasUnicaW1G-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Unica';
  src: url('assets/fonts/NeueHaasUnicaW1G-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Unica';
  src: url('assets/fonts/NeueHaasUnicaW1G-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Unica';
  src: url('assets/fonts/NeueHaasUnicaW1G-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Unica';
  src: url('assets/fonts/NeueHaasUnicaW1G-LightIt.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

:root {
  /* Brand palette - per Picnic Brand Guidelines (locked).
     Brand guidelines are the source of truth on visual identity;
     the website brief defers to them for colour and typography. */
  --pink: #F8506F;          /* Picnic Blanket I - Pantone 184C - primary */
  --pink-2: #FF6C83;        /* Picnic Blanket II - Pantone 1777C - equal-weight secondary */
  --pink-dark: #D4395A;     /* derived: hover state for CTAs */
  --bg: #FBF9FA;            /* Light Mist - Cool Gray 1C */
  --bg-mist: #F2F2EE;       /* deeper mist tint for secondary surfaces */
  --ink: #303030;           /* Near Black - Pantone Black 3 - text only */
  --ink-soft: #5A5A5A;
  --ink-faint: #8A8A8A;
  --rule: #E3E3DD;
  --aqua-dark: #00E2DC;     /* Pantone 2397C - accent */
  --aqua-mid: #9EFFF9;      /* Pantone 319C - highlight under copy */
  --aqua-light: #E8FBFC;    /* Pantone 317C - depth in icons & graphics */
  --grey-stormy: #ACABAC;   /* Stormy Skies - Cool Gray 6C */

  /* Type stacks. Display = Neue Haas Unica; default body = Neue Haas
     Unica Light. Adelle Slab Serif is reserved for H3 emotive subheadings
     (per brand) plus pull quotes and hero lead sentences where the
     emotive feel earns it. Inter is a fallback only. */
  --font-display: 'Neue Haas Unica', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Neue Haas Unica', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-emotive: 'Adelle', Georgia, 'Times New Roman', serif;

  --max: 1400px;
  --max-narrow: 760px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  /* Default body face site-wide: Neue Haas Unica Light. Adelle is
     reserved for H3 emotive subheadings, pull quotes, and hero leads. */
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* Adelle surfaces: H3 emotive subheadings (brand spec) plus pull quotes
   and hero lead sentences where the emotive feel earns it. */
blockquote,
.hero-lead,
.pull-quote {
  font-family: var(--font-emotive);
  font-weight: 400;
}
.preview-banner {
  background: #FFF6CC;
  border-bottom: 1px solid #E5D070;
  color: #6B5500;
  padding: 8px 24px;
  font-size: 12px;
  font-family: ui-monospace, monospace;
}
.preview-banner em { color: #444; font-style: normal; }

/* Header / nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  /* Exclusion zone per brand guidelines: padding equal to the
     height of one rhombus in the emblem. ~6px at 28px logo height. */
  padding: 6px 12px 6px 0;
}
.logo img {
  height: 28px;
  width: auto;
  display: block;
}
.primary-nav { display: flex; gap: 8px; align-items: center; flex: 1; justify-content: center; }
.nav-link {
  /* Brand-led: Neue Haas Unica Black, UPPERCASE, with tracking.
     Sits at H1 weight in the brand spec; appropriate for the top nav. */
  background: none;
  border: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
}
.nav-link:hover { background: var(--bg-mist); }
.nav-link.active { color: var(--pink); }
.caret { font-size: 10px; opacity: 0.5; }
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  background: white;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 12px;
  min-width: 320px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 120ms, transform 120ms;
}
.dropdown-menu.narrow { min-width: 180px; }
.dropdown-menu.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  min-width: 560px;
  padding: 20px;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
}
.dropdown-menu a:hover { background: var(--bg-mist); }
.dropdown-head { font-weight: 600; font-size: 15px !important; }
.dropdown-product {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.dropdown-product-icon {
  width: 28px !important;
  height: 28px !important;
  object-fit: contain;
  margin: 0 !important;
  flex-shrink: 0;
}
.dropdown-sub { list-style: none; padding: 0 0 8px 12px; margin: 0; border-left: 1px solid var(--rule); margin-left: 12px; }
.dropdown-sub li a { font-size: 13px !important; color: var(--ink-faint); padding: 6px 8px !important; }
.dropdown-col { padding: 0 4px; }
.dropdown-col-head {
  /* Functional subheading per brand guidelines:
     Neue Haas Unica Bold, UPPERCASE + tracking, in pink. */
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  padding: 0 12px 8px 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--rule);
}
.dropdown-col-note {
  margin: 6px 12px 0 12px;
  font-size: 13px;
  color: var(--ink-faint);
  line-height: 1.45;
}
.cta-button {
  /* Brand guideline: buttons / CTAs = Neue Haas Unica Bold, UPPERCASE + tracking. */
  background: var(--pink);
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cta-button:hover { background: var(--pink-dark); }

/* Main */
.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 48px 96px;
}
/* Headings - per Picnic Brand Guidelines (locked):
   H1: Neue Haas Unica Black, UPPERCASE - short headings
   H2: Neue Haas Unica Black, Title Case - section headings
   H3: Adelle Slab Serif Semibold, Title Case - emotive subheadings
   H4: Neue Haas Unica Bold, UPPERCASE + tracking - functional / CTAs */
.page-index h1, .page-piq h1, .page-media-solutions h1,
.page-data-licensing h1, .page-inventory-quality h1, .page-company h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  margin: 24px 0 16px;
  max-width: 18ch;
}
h1 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin: 24px 0 16px;
}
h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 48px 0 16px;
  max-width: 28ch;
}
h3 {
  /* Brand: H3 emotive subheadings = Adelle Slab Serif Semibold, Title Case. */
  font-family: var(--font-emotive);
  font-weight: 600;
  font-size: 20px;
  margin: 32px 0 12px;
}
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 24px 0 10px;
  color: var(--ink-soft);
}
p { margin: 0 0 18px; max-width: 80ch; color: var(--ink); }
p strong { font-weight: 600; }
em { font-style: italic; }
hr { border: 0; border-top: 1px solid var(--rule); margin: 56px 0; }
ul, ol { padding-left: 1.4em; max-width: 70ch; }
li { margin: 6px 0; }
a { color: var(--pink); }
a:hover { color: var(--pink-dark); }
blockquote {
  border-left: 3px solid var(--pink);
  padding: 8px 0 8px 20px;
  margin: 24px 0;
  font-size: 19px;
  font-style: italic;
  color: var(--ink-soft);
}

/* Placeholders */
.image-placeholder {
  background: var(--bg-mist);
  border: 1px dashed #CFCFC6;
  padding: 32px;
  margin: 24px 0;
  border-radius: 12px;
  text-align: center;
  color: var(--ink-faint);
  font-size: 14px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, monospace;
}
.image-placeholder.portrait { min-height: 320px; max-width: 280px; }

/* Post grid for /blog (and future listings). Responsive 3-4 columns
   on desktop, 2 on tablet, 1 on mobile. Image placeholder dashed-box
   pending real blog hero images. Design phase will refine. */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  margin: 32px 0;
}

/* Case study grid: 2 columns at desktop, 1 on tablet/mobile. Each card
   is bigger than a blog card (16:9 brand-visual placeholder, chips,
   outcome H3, excerpt, read link). Per v8.20 Ellie's request. */
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
  gap: 40px;
  margin: 32px 0;
}
.case-study-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.case-study-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
}
.case-study-card-image-link { display: block; }
.case-study-card-image {
  background: var(--bg-mist);
  border-bottom: 1px dashed #CFCFC6;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-faint);
  font-family: ui-monospace, monospace;
  font-size: 12px;
  padding: 16px;
  text-align: center;
}
.case-study-card-body { padding: 24px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.case-study-card-chips { margin: 0 0 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(248, 80, 111, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
}
.case-study-card-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 12px;
  max-width: none;
}
.case-study-card-title a { color: var(--ink); text-decoration: none; }
.case-study-card-title a:hover { color: var(--pink); }
.case-study-card-excerpt {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 16px;
  flex: 1;
}
.case-study-card-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  text-decoration: none;
}
.case-study-card-link:hover { color: var(--pink-dark); }
.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.post-card-image-link { display: block; }
.post-card-image {
  background: var(--bg-mist);
  border-bottom: 1px dashed #CFCFC6;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-faint);
  font-family: ui-monospace, monospace;
  font-size: 12px;
  padding: 16px;
  text-align: center;
}
.post-card-title {
  font-size: 18px;
  font-weight: 700;
  margin: 16px 20px 8px;
  line-height: 1.3;
}
.post-card-title a { color: var(--ink); text-decoration: none; }
.post-card-title a:hover { color: var(--pink); }
.post-card-meta {
  margin: 0 20px 12px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  text-transform: uppercase;
}
.post-card-excerpt {
  color: var(--ink-faint);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 20px 16px;
  flex: 1;
}
.post-card-link {
  display: inline-block;
  margin: 0 20px 20px;
  color: var(--pink);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.post-card-link:hover { color: var(--pink-dark); }
.post-byline {
  color: var(--ink-faint);
  font-size: 14px;
  margin: 0 0 24px;
  letter-spacing: 0.01em;
}
.post-byline strong { color: var(--ink); font-weight: 700; }

/* Big final-CTA module per v8.19 (Ellie's brand reference: huge uppercase
   headline with Mid Aqua highlight + brief subhead + pink filled + outline
   CTAs, centred, on a Light Mist background with the Picnic rhombus above). */
.final-cta {
  background: var(--bg-mist);
  border-radius: 24px;
  padding: 96px 24px;
  margin: 96px -48px -96px;
  text-align: center;
}
.final-cta::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-2) 100%);
  transform: skewX(-12deg);
  opacity: 0.6;
}
.final-cta h2,
.final-cta .h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 80px) !important;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0 auto 24px;
  max-width: 18ch;
  color: var(--ink);
}
.final-cta p {
  max-width: 56ch;
  margin: 0 auto 32px;
  color: var(--ink-soft);
  font-size: 18px;
  text-align: center;
}
.final-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta .cta-button,
.final-cta .cta-button-outline {
  padding: 16px 28px;
  font-size: 13px;
  letter-spacing: 0.12em;
}
.cta-button-outline {
  display: inline-block;
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cta-button-outline:hover { background: var(--pink); color: white; }

/* Quote module: big italic Adelle, optional headshot circle on the left,
   attribution below in smaller Neue Haas. */
.quote-module {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  margin: 48px 0;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.quote-module-headshot {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-mist);
  border: 1px dashed #CFCFC6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  color: var(--ink-faint);
  text-align: center;
  padding: 6px;
  flex-shrink: 0;
}
.quote-module-headshot img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; margin: 0 !important; border: 0; }
.quote-module-body { display: flex; flex-direction: column; gap: 16px; }
.quote-module-text {
  font-family: var(--font-emotive);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  max-width: none;
}
.quote-module-attribution {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}
.quote-module-attribution strong { color: var(--ink); font-weight: 700; }

/* Brand icons from /assets/icons/. Constrain markdown-image references
   to a consistent size in wireframe contexts. Design phase will refine
   per surface. */
img[src*="assets/icons/"] {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  margin: 0 8px 0 0;
}
/* In the trust row on demo landings, icons sit inline with text smaller. */
.page-book-a-demo img[src*="assets/icons/"],
.page-inventory-health-check img[src*="assets/icons/"] {
  width: 24px;
  height: 24px;
  margin: 0 6px 0 0;
}
.interactive-placeholder {
  background: #FFF0E8;
  border: 1px dashed #FFB68A;
  color: #B5460D;
  padding: 24px;
  margin: 24px 0;
  border-radius: 12px;
  font-size: 14px;
  font-family: ui-monospace, monospace;
}
.form-placeholder {
  background: white;
  border: 1px solid var(--rule);
  padding: 24px;
  margin: 24px 0;
  border-radius: 12px;
  color: var(--ink-faint);
  font-size: 14px;
  font-family: ui-monospace, monospace;
}
.grid-placeholder {
  background: var(--bg-mist);
  border: 1px dashed #CFCFC6;
  padding: 24px;
  margin: 24px 0;
  border-radius: 12px;
  text-align: center;
  color: var(--ink-faint);
  font-size: 13px;
  font-family: ui-monospace, monospace;
}
.placeholder-fill {
  background: #FFF6CC;
  border: 1px dashed #E5D070;
  color: #6B5500;
  padding: 16px;
  margin: 16px 0;
  border-radius: 8px;
  font-size: 13px;
  font-family: ui-monospace, monospace;
}
.link-placeholder, .icon-row {
  background: var(--bg-mist);
  padding: 12px 16px;
  margin: 12px 0;
  border-radius: 8px;
  color: var(--ink-faint);
  font-size: 13px;
  font-family: ui-monospace, monospace;
}

/* Footer */
/* Footer: trimmed roughly to half the previous footprint per v8.18.
   Smaller padding, tighter newsletter row, lighter column spacing,
   smaller copy. Functional content unchanged. */
.site-footer {
  background: var(--bg-mist);
  border-top: 1px solid var(--rule);
  padding: 32px 24px 16px;
  margin-top: 48px;
}
.footer-newsletter {
  max-width: var(--max);
  margin: 0 auto 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}
.footer-newsletter h3 { margin: 0 0 2px; font-size: 16px; font-weight: 700; }
.footer-newsletter p { color: var(--ink-faint); margin: 0 0 10px; font-size: 13px; }
.newsletter-form { display: flex; gap: 8px; max-width: 360px; }
.newsletter-form input {
  flex: 1; padding: 8px 14px; border: 1px solid var(--rule);
  border-radius: 999px; background: white; font: inherit; font-size: 13px;
}
.newsletter-form button {
  padding: 8px 18px; background: var(--pink); color: white;
  border: 0; border-radius: 999px; font-weight: 600; cursor: pointer; font-size: 13px;
}
.footer-cols {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 32px;
}
.footer-col-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo img { width: 110px !important; height: auto !important; display: block; max-width: 110px; }
.footer-hq {
  margin: 0;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.footer-cols h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
  color: var(--pink);
}
.footer-cols a {
  display: block;
  color: var(--ink);
  text-decoration: none;
  padding: 4px 0;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-cols a:hover { color: var(--pink); }
.footer-col-brand .footer-logo,
.footer-col-brand .footer-logo:hover { padding: 0; }
.footer-base {
  max-width: var(--max);
  margin: 24px auto 0;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink-faint);
  font-size: 12px;
  gap: 24px;
}
.social-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--pink);
  color: white;
  transition: background 120ms;
}
.social-icon:hover { background: var(--pink-dark); }
.social-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}
.footer-copyright { white-space: nowrap; }

@media (max-width: 720px) {
  .primary-nav { display: none; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
