/* shelter.ie — master stylesheet
   Voice: punchy editorial + lawyerly product. Intensity 6/10.
   Aesthetic: private members' club crossed with property-law chambers.
   Last updated: 2026-04-25
*/

/* ───────────────────────────────────────────
   1. Design tokens
   ─────────────────────────────────────────── */

:root {
  /* Palette */
  --teal: #0F3D3E;
  --teal-light: #1B5253;
  --teal-dark: #0A2829;
  --brass: #B08D57;
  --brass-bright: #C8A06B;
  --cream: #F4EFE6;
  --cream-dark: #E8E0D0;
  --ink: #0E1614;
  --ink-soft: #2A3A36;
  --grey: #6B7670;
  --grey-light: #B5BCB7;
  --warning-red: #A8261B;
  --line: #D9D2C2;

  /* Typography */
  --font-headline: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing scale (8pt grid) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 16px;
  --s-4: 24px;
  --s-5: 32px;
  --s-6: 48px;
  --s-7: 64px;
  --s-8: 96px;
  --s-9: 128px;

  /* Layout */
  --max-width: 1200px;
  --max-width-prose: 720px;
  --max-width-narrow: 560px;

  /* Radii (sparse — we don't want round) */
  --r-sm: 2px;
  --r-md: 4px;

  /* Shadows (subtle — chambers, not startup) */
  --shadow-sm: 0 1px 2px rgba(14, 22, 20, 0.06);
  --shadow-md: 0 2px 8px rgba(14, 22, 20, 0.08);
  --shadow-lg: 0 8px 24px rgba(14, 22, 20, 0.12);

  /* Transitions */
  --t-fast: 120ms ease-out;
  --t: 200ms ease-out;
}

/* ───────────────────────────────────────────
   2. Reset & base
   ─────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color var(--t-fast), border-color var(--t-fast);
}
a:hover, a:focus { color: var(--brass); }
a:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
  border-color: transparent;
}

ul, ol { padding-left: 1.5em; }
li { margin-bottom: 0.5em; }
li:last-child { margin-bottom: 0; }

::selection { background: var(--brass); color: var(--cream); }

/* ───────────────────────────────────────────
   3. Typography
   ─────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: var(--s-4); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: var(--s-3); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); margin-bottom: var(--s-3); }
h4 { font-size: 1.2rem; margin-bottom: var(--s-2); }

p {
  margin-bottom: var(--s-3);
  max-width: var(--max-width-prose);
}
p:last-child { margin-bottom: 0; }

.subhead {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--ink-soft);
  font-weight: 400;
  margin-bottom: var(--s-5);
  max-width: 720px;
  line-height: 1.4;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--s-3);
}

strong, b { font-weight: 600; color: var(--ink); }
em { font-style: italic; }

/* Blockquote — used for callouts */
blockquote {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.4;
  border-left: 3px solid var(--brass);
  padding: var(--s-3) var(--s-4);
  margin: var(--s-5) 0;
  color: var(--ink-soft);
  max-width: var(--max-width-prose);
}

/* Code (we use sparingly) */
code {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Consolas, monospace;
  font-size: 0.9em;
  background: var(--cream-dark);
  padding: 2px 6px;
  border-radius: var(--r-sm);
}

/* ───────────────────────────────────────────
   4. Layout primitives
   ─────────────────────────────────────────── */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--s-4);
}

.container-narrow {
  max-width: var(--max-width-prose);
  margin: 0 auto;
  padding: 0 var(--s-4);
}

.section {
  padding: var(--s-8) 0;
}

@media (max-width: 768px) {
  .section { padding: var(--s-7) 0; }
}

.section-tight { padding: var(--s-7) 0; }
.section-loose { padding: var(--s-9) 0; }

.section-teal {
  background: var(--teal);
  color: var(--cream);
}
.section-teal h1, .section-teal h2, .section-teal h3, .section-teal h4 {
  color: var(--cream);
}
.section-teal a { color: var(--brass-bright); }
.section-teal a:hover { color: var(--cream); }
.section-teal .eyebrow { color: var(--brass-bright); }
.section-teal blockquote { color: var(--cream); border-left-color: var(--brass-bright); }

.section-cream-dark { background: var(--cream-dark); }

.text-center { text-align: center; }

/* ───────────────────────────────────────────
   5. Buttons
   ─────────────────────────────────────────── */

.btn {
  display: inline-block;
  padding: var(--s-3) var(--s-5);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 2px solid var(--teal);
  border-radius: var(--r-sm);
  background: var(--teal);
  color: var(--cream);
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t);
  text-align: center;
}
.btn:hover, .btn:focus {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
  border-bottom-color: var(--ink);
}

.btn-secondary {
  background: transparent;
  color: var(--teal);
}
.btn-secondary:hover {
  background: var(--teal);
  color: var(--cream);
}

.btn-brass {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--cream);
}
.btn-brass:hover {
  background: var(--brass-bright);
  border-color: var(--brass-bright);
  color: var(--ink);
}

.btn-on-teal {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--teal);
}
.btn-on-teal:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--cream);
}

.btn-large {
  padding: var(--s-3) var(--s-6);
  font-size: 1.05rem;
}

/* ───────────────────────────────────────────
   6. Header / nav
   ─────────────────────────────────────────── */

.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background var(--t);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-3) 0;
  gap: var(--s-5);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-headline);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--teal);
  border-bottom: none;
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--brass); }
.brand__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: var(--s-5);
}
.nav-primary ul {
  list-style: none;
  display: flex;
  gap: var(--s-5);
  padding: 0;
  margin: 0;
}
.nav-primary li { margin: 0; }
.nav-primary a {
  font-size: 0.95rem;
  color: var(--ink);
  border-bottom: none;
  font-weight: 500;
  position: relative;
  padding: var(--s-1) 0;
  transition: color var(--t-fast);
}
.nav-primary a:hover, .nav-primary a.active {
  color: var(--teal);
}
.nav-primary a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brass);
}
.nav-primary .nav-cta { margin-left: var(--s-3); }
.nav-primary .nav-cta a {
  padding: var(--s-2) var(--s-4);
  background: var(--teal);
  color: var(--cream);
  border-radius: var(--r-sm);
  font-weight: 600;
}
.nav-primary .nav-cta a:hover { background: var(--ink); }

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
}
.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  position: relative;
}
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--ink);
  left: 0;
}
.nav-toggle__bar::before { top: -7px; }
.nav-toggle__bar::after { top: 7px; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-primary {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 88%;
    max-width: 360px;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--s-7) var(--s-5);
    gap: 0;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--t);
    z-index: 200;
  }
  .nav-primary.is-open { transform: translateX(0); }
  .nav-primary ul {
    flex-direction: column;
    gap: var(--s-3);
    width: 100%;
  }
  .nav-primary li { width: 100%; }
  .nav-primary a {
    display: block;
    padding: var(--s-2) 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-primary .nav-cta { margin-left: 0; margin-top: var(--s-3); width: 100%; }
  .nav-primary .nav-cta a {
    display: block;
    text-align: center;
    border-bottom: none;
  }
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14, 22, 20, 0.5);
  z-index: 150;
  opacity: 0;
  transition: opacity var(--t);
}
.nav-overlay.is-visible {
  display: block;
  opacity: 1;
}

/* ───────────────────────────────────────────
   7. Hero
   ─────────────────────────────────────────── */

.hero {
  background: var(--teal);
  color: var(--cream);
  padding: var(--s-8) 0 var(--s-9) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at top right, var(--teal-light) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.hero h1 {
  color: var(--cream);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: var(--s-4);
}
.hero h1 .accent {
  color: var(--brass-bright);
  font-style: italic;
}

.hero__subhead {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: var(--s-6);
  max-width: 640px;
  font-weight: 400;
}

.hero__ctas {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-bottom: var(--s-6);
}

.hero__trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(244, 239, 230, 0.2);
}
.hero__trust-strip .trust-item {
  font-family: var(--font-body);
  color: var(--cream);
  font-size: 0.9rem;
}
.hero__trust-strip .trust-item__big {
  font-family: var(--font-headline);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--brass-bright);
  margin-bottom: var(--s-1);
  display: block;
}
.hero__trust-strip .trust-item__src {
  font-size: 0.78rem;
  color: rgba(244, 239, 230, 0.7);
  font-style: italic;
  display: block;
  margin-top: var(--s-1);
}

@media (max-width: 768px) {
  .hero { padding: var(--s-7) 0; }
  .hero__trust-strip {
    grid-template-columns: 1fr;
    gap: var(--s-4);
  }
  .hero__ctas { flex-direction: column; align-items: stretch; }
}

/* ───────────────────────────────────────────
   8. Service cards (3-pack grid)
   ─────────────────────────────────────────── */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-6);
}

.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
  border-bottom: none; /* we use the link's underline differently */
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-card__num {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  color: var(--brass);
  margin-bottom: var(--s-2);
  letter-spacing: 0.05em;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--s-3);
}

.service-card__price {
  font-family: var(--font-headline);
  font-size: 1.4rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: var(--s-3);
}

.service-card__price .price-note {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--grey);
  display: block;
  margin-top: var(--s-1);
}

.service-card__body {
  color: var(--ink-soft);
  margin-bottom: var(--s-4);
  flex-grow: 1;
  font-size: 0.95rem;
}

.service-card__cta {
  font-weight: 600;
  color: var(--teal);
  border-bottom: 1px solid var(--brass);
  align-self: flex-start;
  font-size: 0.95rem;
}

.service-card--soft {
  border-style: dashed;
  background: transparent;
}
.service-card--soft .service-card__price {
  color: var(--grey);
  font-style: italic;
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .service-grid { grid-template-columns: 1fr; gap: var(--s-3); }
}

/* ───────────────────────────────────────────
   9. Case cards (cases hub + home teasers)
   ─────────────────────────────────────────── */

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-5);
}

.case-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: var(--s-4) var(--s-5);
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
  border-bottom: none;
  color: var(--ink);
}
.case-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--ink);
}

.case-card__tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--s-2);
}
.case-card__tag--cautionary { color: var(--warning-red); }

.case-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--s-2);
  color: var(--teal);
}
.case-card__summary {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: var(--s-3);
}
.case-card__hook {
  color: var(--ink);
  font-size: 0.92rem;
  margin-bottom: var(--s-3);
}
.case-card__source {
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: auto;
}

@media (max-width: 768px) {
  .case-grid { grid-template-columns: 1fr; }
}

/* ───────────────────────────────────────────
   10. Source / press strip (replaces testimonials)
   ─────────────────────────────────────────── */

.source-strip {
  background: var(--cream-dark);
  padding: var(--s-5) 0;
  text-align: center;
}
.source-strip__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: var(--s-3);
}
.source-strip__items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-5);
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink-soft);
}
.source-strip__items span {
  white-space: nowrap;
}

/* ───────────────────────────────────────────
   11. Stat block
   ─────────────────────────────────────────── */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  text-align: center;
  margin-top: var(--s-6);
}

.stat {
  padding: var(--s-3);
}
.stat__big {
  font-family: var(--font-headline);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--teal);
  font-weight: 600;
  line-height: 1;
  display: block;
  margin-bottom: var(--s-2);
}
.section-teal .stat__big { color: var(--brass-bright); }

.stat__label {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.section-teal .stat__label { color: var(--cream); }

@media (max-width: 700px) {
  .stats { grid-template-columns: 1fr; }
}

/* ───────────────────────────────────────────
   12. CTA band
   ─────────────────────────────────────────── */

.cta-band {
  background: var(--teal);
  color: var(--cream);
  padding: var(--s-7) 0;
  text-align: center;
}
.cta-band h2 { color: var(--cream); margin-bottom: var(--s-3); }
.cta-band p {
  margin: 0 auto var(--s-5);
  color: rgba(244, 239, 230, 0.85);
}

/* ───────────────────────────────────────────
   13. Article / prose pages
   ─────────────────────────────────────────── */

.prose {
  max-width: var(--max-width-prose);
  margin: 0 auto;
  font-size: 1.02rem;
}

.prose h2 {
  margin-top: var(--s-7);
  margin-bottom: var(--s-3);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
}
.prose h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }

.prose h3 {
  margin-top: var(--s-5);
  margin-bottom: var(--s-2);
}

.prose ul, .prose ol {
  margin-bottom: var(--s-4);
  max-width: var(--max-width-prose);
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--s-4) 0;
  font-size: 0.95rem;
}
.prose th, .prose td {
  padding: var(--s-2) var(--s-3);
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.prose th {
  font-weight: 600;
  background: var(--cream-dark);
  font-family: var(--font-body);
}

/* Disclaimer callout (used at top of case pages) */
.disclaimer-callout {
  background: var(--cream-dark);
  border-left: 3px solid var(--brass);
  padding: var(--s-3) var(--s-4);
  margin: var(--s-5) 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.disclaimer-callout strong { color: var(--ink); }

/* ───────────────────────────────────────────
   14. Forms
   ─────────────────────────────────────────── */

.form {
  max-width: 560px;
}

.form-group {
  margin-bottom: var(--s-4);
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--s-2);
}

.form-group label .req { color: var(--warning-red); }

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  display: block;
  width: 100%;
  padding: var(--s-3);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 61, 62, 0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-body);
}

.form-group select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%230F3D3E' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

.form-radio {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.form-radio label {
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: var(--s-2);
  cursor: pointer;
  margin-bottom: 0;
}
.form-radio input { margin: 0; }

.form-error {
  display: none;
  color: var(--warning-red);
  font-size: 0.85rem;
  margin-top: var(--s-1);
}
.form-group.has-error .form-error { display: block; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--warning-red);
}

.honeypot { position: absolute; left: -9999px; }

.form-help {
  font-size: 0.85rem;
  color: var(--grey);
  margin-top: var(--s-2);
}

/* ───────────────────────────────────────────
   15. Footer
   ─────────────────────────────────────────── */

.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: var(--s-7) 0 var(--s-5);
  font-size: 0.92rem;
}

.site-footer h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-bright);
  margin-bottom: var(--s-3);
  font-weight: 600;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-6);
}

.footer-grid ul {
  list-style: none;
  padding: 0;
}

.footer-grid li { margin-bottom: var(--s-2); }

.footer-grid a {
  color: var(--cream);
  border-bottom: none;
  opacity: 0.85;
}
.footer-grid a:hover {
  color: var(--brass-bright);
  opacity: 1;
}

.footer-brand {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: var(--s-2);
  margin-bottom: var(--s-3);
}

.footer-tagline {
  color: rgba(244, 239, 230, 0.7);
  margin-bottom: var(--s-4);
  font-size: 0.95rem;
}

.footer-baseline {
  border-top: 1px solid rgba(244, 239, 230, 0.15);
  padding-top: var(--s-4);
  font-size: 0.82rem;
  color: rgba(244, 239, 230, 0.65);
  line-height: 1.5;
}
.footer-baseline p { margin-bottom: var(--s-2); max-width: none; }
.footer-baseline strong { color: var(--cream); }

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--s-5);
  }
}

/* ───────────────────────────────────────────
   16. Cookie banner
   ─────────────────────────────────────────── */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: var(--cream);
  padding: var(--s-3) var(--s-4);
  z-index: 500;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
  font-size: 0.9rem;
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; min-width: 280px; }
.cookie-banner__text a { color: var(--brass-bright); }
.cookie-banner__buttons {
  display: flex;
  gap: var(--s-2);
}
.cookie-banner .btn {
  padding: var(--s-2) var(--s-4);
  font-size: 0.9rem;
}

/* ───────────────────────────────────────────
   17. Utility
   ─────────────────────────────────────────── */

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

.mt-0 { margin-top: 0; }
.mt-3 { margin-top: var(--s-3); }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }

.mb-0 { margin-bottom: 0; }
.mb-3 { margin-bottom: var(--s-3); }
.mb-4 { margin-bottom: var(--s-4); }
.mb-5 { margin-bottom: var(--s-5); }
.mb-6 { margin-bottom: var(--s-6); }

/* ───────────────────────────────────────────
   18. Print
   ─────────────────────────────────────────── */

@media print {
  .site-header, .site-footer, .cookie-banner, .nav-toggle, .nav-overlay, .cta-band, .hero__ctas { display: none !important; }
  body { background: white; color: black; font-size: 11pt; }
  .hero { background: white; color: black; padding: 0; }
  .hero h1 { color: black; }
  a { color: black; text-decoration: underline; }
}
