/* =========================================================
   Paradise Plastics Agency, styles.css
   "Counter & Catalogue" — see claude-docs/FRONTEND_OVERHAUL_CONTRACT.md
   Edit the CSS custom properties below to adjust the palette
   sitewide. Do not hard-code colors elsewhere in this file.
   ========================================================= */

/* Self-hosted fonts (no external request — see the removed Google Fonts
   <link> in index.html). Archivo is a true variable font: one file covers
   both the body role (wght 400/500, stretch 100%) and the display role
   ("Archivo Expanded": wght 600/700, stretch 125%) — set via font-weight/
   font-stretch at each use site, not two separate families. IBM Plex Mono
   is static, so two per-weight files. */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 900;
  font-stretch: 87.5% 125%;
  font-display: swap;
  src: url('assets/fonts/archivo-variable.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/ibm-plex-mono-400.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/ibm-plex-mono-500.woff2') format('woff2');
}

:root {
  --paper:      #F2EEE6; /* base page — cooler "catalogue paper" */
  --paper-2:    #FBFAF6; /* raised surfaces / cards */
  --ink:        #231C13; /* headings + body, warm near-black */
  --muted:      #5C5346; /* secondary text on paper */
  /* --steel and --bronze below are darkened slightly from the contract's literal
     hex (#8C9088 / kept #8A560F) so 12-13px mono captions/labels clear WCAG AA
     4.5:1 on paper — the contract explicitly calls for this verification.
     Both are for LIGHT backgrounds only; on ink use --bronze-soft, and avoid
     small steel text on ink (it does not pass AA there). */
  --steel:      #62655F; /* hairline rules, mono labels, captions on paper/paper-2 */
  --bronze:     #8A560F; /* HERITAGE ONLY: wordmark, "since 1965", legacy marks (light bg) */
  --bronze-soft:#E7D5A6; /* heritage accents specifically on ink backgrounds */
  /* --vermilion is a deeper "brick" red per amendment (was #C43820). Verified AA:
     paper-2-on-vermilion = 6.16:1, vermilion-on-paper = 5.55:1, both clear 4.5:1.
     Red is a RECURRING system accent (kicker, catalogue index numbers, the ★
     rating figure, primary CTAs) — not a lone clash confined to buttons. Bronze
     stays strictly on the wordmark + heritage marks; red and gold never share a job. */
  --vermilion:  #A8382A; /* RECURRING ACCENT: kickers, index numbers, rating figure, CTAs, the one bold band */
  --vermilion-ink: #8E2B1C; /* hover/active for vermilion */
  --line:       #E2DCCE; /* hairline borders on paper */

  --font-display: 'Archivo', 'Arial Narrow', system-ui, sans-serif;
  --font-body: 'Archivo', system-ui, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --radius-card: 4px;
  --radius-btn: 2px;

  --max-width: 1200px;
  --gutter: 20px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 1024px) {
  :root { --gutter: 40px; }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-stretch: 125%;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
p { margin: 0 0 1em; color: var(--ink); }
button { font-family: inherit; }

/* Mono utility: catalogue kickers, index numbers, spec rows, captions, NAP labels. */
.mono {
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Scroll reveal: progressive enhancement only. Scoped under html.js so
   content stays fully visible with no flash-of-hidden-content when
   JavaScript is off; script.js adds the js class synchronously up top. */
html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--vermilion);
  color: var(--paper-2);
  padding: 10px 16px;
  border-radius: 0 0 var(--radius-btn) 0;
  z-index: 100;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--vermilion);
  outline-offset: 2px;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Mono catalogue kicker — replaces the old small-caps "eyebrow".
   e.g. "Cat. 01 — Products", "§ Wholesale". This is the one place
   ALL CAPS / letter-spaced label styling is allowed. */
.kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vermilion);
  font-weight: 500;
  margin: 0 0 10px;
}
.kicker--on-ink { color: var(--bronze-soft); }

/* Enamel-band divider: a thin rule referencing the storefront sign.
   Used deliberately as a section marker, not on every section. */
.enamel-rule {
  height: 3px;
  width: 56px;
  background: var(--vermilion);
  border: 0;
  margin: 0 0 14px;
}
.enamel-rule--bronze { background: var(--bronze); }

/* Hairline rule under visible section headings */
.categories h2,
.brands h2,
.reviews h2,
.contact h2 {
  position: relative;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn-primary {
  background: var(--vermilion);
  color: var(--paper-2);
}
.btn-primary:hover { background: var(--vermilion-ink); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--paper-2); border-color: var(--vermilion); color: var(--vermilion); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  transition: border-color 0.2s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--vermilion);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
  min-width: 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex-shrink: 1;
}
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-btn);
  object-fit: cover;
}
.brand-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  font-stretch: 125%;
  font-size: 17px;
  color: var(--ink);
}
.site-nav ul {
  display: flex;
  gap: 28px;
}
.site-nav a {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
}
.site-nav a:hover { color: var(--vermilion); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.phone-link {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

/* Mobile-only one-tap call/WhatsApp icon buttons: hidden on desktop, where
   the text phone-link and Enquire button already cover this. */
.icon-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink);
  flex-shrink: 0;
}
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn:hover { border-color: var(--vermilion); color: var(--vermilion); }

.mobile-nav { position: relative; display: none; }
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  cursor: pointer;
  list-style: none;
}
.nav-toggle::-webkit-details-marker { display: none; }
.nav-toggle::marker { content: ''; }
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
}
.mobile-nav ul {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav li a {
  display: block;
  padding: 8px 10px;
  font-family: var(--font-mono);
  font-size: 14px;
  border-radius: var(--radius-btn);
}
.mobile-nav li a:hover { background: var(--paper); }

@media (max-width: 767px) {
  .site-nav { display: none; }
  .header-actions .phone-link { display: none; }
  .header-actions .btn-primary { display: none; }
  .icon-btn { display: inline-flex; }
  .mobile-nav { display: block; }
}

/* Sticky mobile call/WhatsApp bar: fixed to the bottom of the viewport,
   mobile only. Keeps the two fastest enquiry actions in one-handed thumb
   reach through the whole scroll, not just while the header is on screen. */
.mobile-cta-bar { display: none; }
@media (max-width: 767px) {
  body { padding-bottom: calc(56px + env(safe-area-inset-bottom)); }
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    border-top: 1px solid var(--line);
    background: var(--paper-2);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-cta-bar-btn {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 12px;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .mobile-cta-bar-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
  .mobile-cta-bar-btn--call { color: var(--ink); }
  .mobile-cta-bar-btn--whatsapp { color: var(--paper-2); background: var(--vermilion); }
  .mobile-cta-bar-btn--call:active { background: var(--paper); }
  .mobile-cta-bar-btn--whatsapp:active { background: var(--vermilion-ink); }
}

/* ---------- Hero: the catalogue-wall mosaic (the signature) ---------- */
.hero {
  background: var(--paper);
  padding: 32px 0 40px;
}
.hero-inner {
  display: flex;
  flex-direction: column-reverse;
  gap: 28px;
  min-width: 0;
}
.hero-copy {
  min-width: 0;
}
.hero-copy h1 {
  font-size: clamp(30px, 7vw, 52px);
  color: var(--ink);
  line-height: 1.05;
}
.hero-subtext {
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 16px);
  max-width: 46ch;
  overflow-wrap: break-word;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.hero-cta-quiet {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s var(--ease);
}
.hero-cta-quiet svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero-cta-quiet:hover { color: var(--vermilion); }

/* Product-wall mosaic: dense grid of real product crops, standing in for
   the airy single-photo hero. Reuses the same images as the category
   index below (see index.html comment for swapping in real storefront
   photography when supplied). */
.hero-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.hero-mosaic img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero { padding: 56px 0 72px; }
  .hero-inner {
    flex-direction: row;
    align-items: center;
  }
  .hero-copy { flex: 1; min-width: 0; }
  .hero-mosaic { flex: 1; min-width: 0; }
}

/* ---------- Spec row: quiet mono restatement of the old count-up stat band ---------- */
.spec-row {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.spec-row p {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--steel);
  line-height: 1.8;
}
.spec-rating {
  color: var(--vermilion);
  font-weight: 500;
}
@media (min-width: 1024px) {
  .spec-row p { font-size: 13px; text-align: center; }
}

/* ---------- Locations (two businesses) ---------- */
.locations { background: var(--paper-2); padding: 32px 0; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.location-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.location-card:hover {
  border-color: var(--vermilion);
}
.location-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}
.location-card-body { padding: 20px; }
.location-card-body h3 {
  font-size: 20px;
  color: var(--ink);
}
.location-card-body .kicker { color: var(--bronze); }

@media (min-width: 768px) {
  .location-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .locations { padding: 64px 0; }
}

/* ---------- Product categories: the numbered catalogue index (the other signature) ---------- */
.categories { background: var(--paper); padding: 32px 0; }
.categories h2 { font-size: clamp(22px, 4vw, 34px); color: var(--ink); }
.section-intro {
  max-width: 62ch;
  margin: 8px 0 4px;
  color: var(--muted);
  font-size: 15px;
}
.category-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.category-tile {
  background: var(--paper-2);
  display: block;
  position: relative;
}
.category-tile-media-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}
.category-tile-media {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background-color: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: transform 0.4s ease;
}
.category-tile:hover .category-tile-media { transform: scale(1.03); }
.category-tile-cta {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 4px 10px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  border-radius: var(--radius-btn);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.category-tile:hover .category-tile-cta,
.category-tile:focus .category-tile-cta,
.category-tile:focus-visible .category-tile-cta {
  opacity: 1;
  transform: none;
}
.category-tile-label {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.category-tile-index {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--vermilion);
  flex-shrink: 0;
}
.category-tile:hover .category-tile-label { color: var(--vermilion); }

@media (min-width: 640px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .categories { padding: 64px 0; }
  .category-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Brands: hairline mono index ---------- */
.brands { background: var(--paper-2); padding: 32px 0; }
.brands h2 { font-size: clamp(22px, 4vw, 34px); color: var(--ink); }
.brand-list {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.brand-chip {
  background: var(--paper-2);
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
}
@media (min-width: 640px) {
  .brand-list { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .brands { padding: 64px 0; }
  .brand-list { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Gifting: the one bold vermilion band ---------- */
.gifting {
  padding: 40px 0;
  background: var(--vermilion);
}
.gifting-inner { max-width: 640px; }
.gifting h2 {
  font-size: clamp(22px, 4vw, 34px);
  color: var(--paper-2);
  border-bottom: 1px solid rgba(251, 250, 246, 0.35);
}
.gifting p { color: var(--paper-2); }
.gifting .kicker { color: var(--paper); }
.gifting-trust {
  font-weight: 500;
  color: var(--paper-2);
}
.gifting-import { color: var(--paper-2); font-size: 14px; }
.gifting .btn-primary {
  background: var(--ink);
  color: var(--paper-2);
}
.gifting .btn-primary:hover { background: #3a2f20; }
@media (min-width: 1024px) {
  .gifting { padding: 72px 0; }
}

/* ---------- Reviews ---------- */
.reviews { background: var(--paper-2); padding: 32px 0; }
.reviews h2 { font-size: clamp(22px, 4vw, 34px); color: var(--ink); }
.reviews-summary {
  color: var(--muted);
  font-size: 14px;
  margin-top: -2px;
}
.reviews-badge {
  display: inline-block;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  padding: 2px 10px;
  margin-right: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink);
  vertical-align: middle;
}
.review-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.review-card {
  margin: 0;
  background: var(--paper-2);
  padding: 20px;
}
.review-stars { margin-bottom: 10px; }
.star {
  color: var(--bronze);
  font-size: 14px;
  letter-spacing: 1px;
}
.star--empty { color: var(--line); }
.review-card p {
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 14px;
}
.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-card cite {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
}
.review-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--steel);
}

@media (min-width: 768px) {
  .review-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .reviews { padding: 64px 0; }
}

/* ---------- Contact ---------- */
.contact { background: var(--paper); padding: 32px 0 48px; }
.contact h2 { font-size: clamp(22px, 4vw, 34px); color: var(--ink); }
.contact-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.address-block { margin-bottom: 18px; }
.address-block h3 {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--steel);
  margin-bottom: 4px;
}
.address-block p { color: var(--muted); font-size: 14px; }

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}
.hours { font-size: 14px; color: var(--muted); }
.hours strong { font-family: var(--font-mono); font-weight: 500; }

.map-embed {
  margin-top: 16px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-embed iframe { display: block; }

.enquiry-form {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 24px;
}
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-row .optional { font-weight: 400; color: var(--steel); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  background: var(--paper);
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--vermilion);
  outline-offset: 1px;
  border-color: var(--vermilion);
}
.form-submit { width: 100%; }
.form-status {
  margin-top: 12px;
  font-size: 14px;
  color: var(--vermilion-ink);
}
.form-status[data-error] { color: #A02020; }

/* Honeypot spam trap: hidden from people, present for bots. Do not display. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .contact { padding: 64px 0 72px; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}

/* ---------- Closing CTA: the ink band ---------- */
.closing-cta {
  background: var(--ink);
  padding: 40px 0;
  text-align: center;
}
.closing-cta-inner { max-width: 640px; margin: 0 auto; }
.closing-cta h2 {
  color: var(--paper-2);
  font-size: clamp(24px, 4vw, 34px);
}
.closing-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.closing-cta .btn-secondary {
  color: var(--paper-2);
  border-color: var(--paper-2);
}
.closing-cta .btn-secondary:hover {
  background: rgba(251, 250, 246, 0.1);
  border-color: var(--bronze-soft);
  color: var(--bronze-soft);
}
@media (min-width: 1024px) {
  .closing-cta { padding: 64px 0; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--paper-2);
  padding: 32px 0 24px;
  border-top: 1px solid rgba(231, 213, 166, 0.2);
}
.footer-inner { display: flex; flex-direction: column; gap: 24px; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-stretch: 125%;
  font-size: 16px;
}
.footer-brand img { border-radius: var(--radius-btn); }
.footer-nap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.footer-nap h3 {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bronze-soft);
  margin-bottom: 6px;
}
.footer-nap p { color: #D8CFC0; font-size: 14px; margin: 0; }
.footer-nap a { color: #D8CFC0; }
.footer-nap a:hover { color: var(--bronze-soft); }
.footer-directories, .footer-copyright {
  font-family: var(--font-mono);
  color: #A69A85;
  font-size: 12px;
  margin: 0;
}

@media (min-width: 768px) {
  .footer-nap { grid-template-columns: repeat(3, 1fr); }
}
