/* ============================================================
   Ignis Secure Limited - site stylesheet
   Single locked look: WHITE page + BLACK header (the client's choice).
   Brand: red "IGNIS", white "SECURE", white "LIMITED" with red rules.
   Design tokens first, mobile first, 8px spacing rhythm.
   ============================================================ */

:root {
  /* Brand colours, taken straight from the logo */
  --ignis-red: #F23A44;        /* IGNIS / primary CTA */
  --ignis-red-hover: #FF515C;
  --ignis-blue: #1C9CE6;       /* accents + links */
  --ignis-blue-hover: #45B1F2;

  /* Legacy token names kept so components don't have to change */
  --brand-red: var(--ignis-red);
  --brand-red-dark: var(--ignis-red-hover);
  --brand-blue: var(--ignis-blue);
  --brand-blue-dark: var(--ignis-blue-hover);

  /* Neutrals (light page) */
  --ink: #1B2433;             /* primary text */
  --ink-soft: #586273;        /* muted text */
  --line: rgba(18, 28, 45, 0.12);
  --bg: #F6F8FB;              /* page background */
  --surface: #FFFFFF;         /* cards, inputs, FAQ, panels */
  --wash: #ECF1F8;            /* alternating sections */
  --black: #000000;          /* header + footer ground */

  /* Black-header chrome (white text + dropdown panel on the black bar) */
  --header-ink: #EEF1F6;
  --header-ink-soft: #9AA4B4;
  --header-line: rgba(255, 255, 255, 0.16);
  --menu-surface: #141A24;

  /* Type */
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;

  /* Spacing tiers (8px rhythm) */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-6: 48px;
  --space-8: 64px;
  --space-12: 96px;

  --radius: 6px;
  --container: 1100px;

  color-scheme: light;
}

/* ---------- Reset and base ---------- */

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

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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden; /* belt-and-braces against accidental horizontal scroll */
}

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

h1, h2, h3 {
  line-height: 1.15;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-2);
}

h1 { font-size: clamp(1.8rem, 7vw, 2rem); }
h2 { font-size: 1.5rem; margin-top: var(--space-6); }
h3 { font-size: 1.15rem; margin-top: var(--space-4); }

p, ul, ol { margin: 0 0 var(--space-2); }
ul, ol { padding-left: 1.4em; }

a { color: var(--ignis-blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ignis-blue-hover); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--ignis-blue);
  outline-offset: 2px;
  border-radius: 2px;
}

::selection { background: var(--ignis-red); color: #fff; }

/* Anchored sections clear the sticky header when jumped to */
:target { scroll-margin-top: 96px; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--space-3);
  padding-right: var(--space-3);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ignis-red);
  color: #fff;
  padding: var(--space-1) var(--space-2);
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* Tracked uppercase kicker */
.kicker {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ignis-red);
  display: block;
  margin-bottom: var(--space-1);
}

/* ---------- Logo (crisp inline SVG mark on the black header) ---------- */

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  line-height: 1;
  text-decoration: none;
  padding: 4px 0;
  flex-shrink: 0; /* never let the header row squeeze the logo */
}

.brand-logo {
  display: block;
  height: 38px;
  width: auto;
}
.brand-logo text { font-family: var(--font-sans); }

/* Strapline sits under the mark; hidden on phones where it would be too small.
   align-self:stretch + centred text keeps it centred under the wordmark, matching
   the centred LIMITED rules above it. */
.brand-tagline {
  display: none;
  align-self: stretch;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.13em;
  color: #C7D0DE;
  white-space: nowrap;
}

@media (min-width: 880px) {
  .brand-logo { height: 54px; }
  .brand-tagline { display: block; }
}

/* ---------- Header ---------- */

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  min-height: 72px;
  padding-top: var(--space-1);
  padding-bottom: var(--space-1);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 44px;
  min-height: 44px;
  padding: 0 12px;
  background: none;
  border: 1px solid var(--header-line);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--header-ink);
  font: inherit;
  font-weight: 600;
}
.nav-toggle svg { width: 22px; height: 22px; }

.site-nav { display: none; }
.site-nav.open {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--black);
  border-bottom: 1px solid var(--header-line);
  padding: var(--space-2) var(--space-3) var(--space-3);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.site-nav a {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  color: var(--header-ink);
  font-weight: 600;
  border-radius: var(--radius);
}
.site-nav a:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.site-nav a[aria-current="page"] { color: var(--ignis-red); }

.header-actions .header-cta { display: none; }

@media (min-width: 768px) {
  .header-actions .header-cta { display: inline-flex; }
}

@media (min-width: 880px) {
  .nav-toggle { display: none; }
  .site-nav { display: block; position: static; }
  .site-nav ul { flex-direction: row; align-items: center; gap: var(--space-1); }
}

/* ---------- Dropdown submenus ---------- */

.submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  background: none;
  border: none;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 600;
  color: var(--header-ink);
  cursor: pointer;
}
.submenu-toggle:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.submenu-toggle.current { color: var(--ignis-red); }
.submenu-toggle svg {
  width: 16px;
  height: 16px;
  flex: none;
  transition: transform 150ms ease-out;
}
.submenu-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.site-nav .submenu {
  list-style: none;
  margin: 0;
  padding: 0 0 var(--space-1) 12px;
  display: none;
  max-height: 62vh;
  overflow-y: auto;
}
.site-nav .submenu-toggle[aria-expanded="true"] + .submenu { display: block; }
.submenu a[aria-current="page"] { color: var(--ignis-red); }

.site-nav .submenu-soon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  color: var(--header-ink-soft);
  font-weight: 600;
  cursor: default;
}
.site-nav .submenu-soon em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6B7689;
  flex: none;
}

@media (min-width: 880px) {
  .has-submenu { position: relative; }
  .submenu-toggle { width: auto; justify-content: flex-start; }
  .site-nav .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    padding: 6px;
    background: var(--menu-surface);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
    max-height: min(70vh, 460px);
    z-index: 60;
  }
  .site-nav .submenu-toggle[aria-expanded="true"] + .submenu { display: block; }
  .submenu a,
  .submenu-soon { white-space: nowrap; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 150ms ease-out, transform 150ms ease-out;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--ignis-red); color: #fff; }
.btn-primary:hover { background: var(--ignis-red-hover); color: #fff; }

.btn-secondary { background: var(--ignis-blue); color: #fff; }
.btn-secondary:hover { background: var(--ignis-blue-hover); color: #fff; }

.btn-quiet {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(18, 28, 45, 0.28);
}
.btn-quiet:hover { background: rgba(18, 28, 45, 0.06); color: var(--ink); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: var(--space-12) 0;
  overflow: hidden;
  background: #2A3340;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  opacity: 0.96;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero .kicker {
  color: var(--ignis-red);
}

.hero h1 {
  font-size: clamp(2rem, 8vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  max-width: 20ch;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.hero .lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 52ch;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.hero .btn-quiet {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.hero .btn-quiet:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

@media (min-width: 768px) {
  h2 { font-size: 1.75rem; }
  .hero h1 { font-size: 3.2rem; }
  .hero { min-height: 640px; }
}

/* ---------- Trust bar ---------- */

.trust-bar {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.trust-bar ul {
  list-style: none;
  margin: 0;
  padding: var(--space-3) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2) var(--space-3);
}

.trust-bar li {
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.trust-bar svg { width: 20px; height: 20px; flex: none; color: var(--ignis-blue); }

@media (min-width: 768px) {
  .trust-bar ul { grid-template-columns: repeat(4, auto); justify-content: space-between; }
}

/* ---------- Sections ---------- */

.section { padding: var(--space-8) 0; }
.section-wash { background: var(--wash); }

.section-intro { max-width: 62ch; color: var(--ink-soft); }

/* Service cards */
.card-grid {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

@media (min-width: 640px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .card-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: var(--space-3);
  box-shadow: 0 2px 14px rgba(18, 28, 45, 0.08);
  transition: box-shadow 200ms ease-out, transform 200ms ease-out, border-color 200ms ease-out;
}


.card:hover {
  box-shadow: 0 14px 36px rgba(18, 28, 45, 0.13);
  border-color: rgba(18, 28, 45, 0.16);
  transform: translateY(-2px);
}

.card-icon {
  color: var(--ignis-blue);
  margin-bottom: var(--space-2);
}
.card-icon svg { display: block; }

.card h3 { margin-top: 0; }
.card p { color: var(--ink-soft); font-size: 0.98rem; }
.card .card-link { font-weight: 600; }
.card .card-note {
  font-size: 0.95rem;
}

/* Open layout for service cards (no box, image floats at top) */
.card-grid-3 .card {
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
  overflow: visible;
  transition: transform 300ms ease-out;
}
.card-grid-3 .card:hover {
  box-shadow: none;
  transform: translateY(-4px);
}
.card-grid-3 .card:hover .card-media img {
  transform: scale(1.04);
}
.card-grid-3 .card:hover .card-read-more {
  gap: 8px;
  color: var(--ignis-blue);
}
.card-grid-3 .card-media {
  margin: 0 0 var(--space-2);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.card-grid-3 .card-media img {
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  transition: transform 300ms ease-out;
}
.card-grid-3 .card h3 {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-top: var(--space-2);
  margin-bottom: var(--space-1);
}
.card-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-2);
  flex-wrap: wrap;
}
.btn-sm {
  min-height: 38px;
  padding: 7px 18px;
  font-size: 0.92rem;
}
.card-read-more {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-read-more:hover { color: var(--ignis-blue); }

/* Areas grid: plain text towns, only live pages are links */
.areas-grid {
  list-style: none;
  margin: var(--space-4) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-1) var(--space-3);
}

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

.areas-grid li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.areas-grid a { font-weight: 600; }

/* FAQs */
.faq-list { margin-top: var(--space-4); }

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  margin-bottom: var(--space-2);
  box-shadow: 0 2px 14px rgba(18, 28, 45, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: var(--space-2) var(--space-3);
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  min-height: 44px;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "";
  flex: none;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--ignis-blue);
  border-bottom: 2px solid var(--ignis-blue);
  transform: rotate(45deg);
  transition: transform 150ms ease-out;
}

.faq-list details[open] summary::after { transform: rotate(225deg); }

.faq-list .faq-answer { padding: 0 var(--space-3) var(--space-3); color: var(--ink-soft); }
.faq-list .faq-answer p:last-child { margin-bottom: 0; }

/* Steps / process */
.steps {
  list-style: none;
  counter-reset: step;
  margin: var(--space-4) 0 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
}

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

.steps li {
  counter-increment: step;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: var(--space-3);
  box-shadow: 0 2px 14px rgba(18, 28, 45, 0.06);
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ignis-red);
  display: block;
  margin-bottom: var(--space-1);
}

.steps h3 { margin-top: 0; font-size: 1.05rem; }
.steps p { margin-bottom: 0; color: var(--ink-soft); font-size: 0.98rem; }

/* Checklist */
.check-list { list-style: none; padding: 0; }
.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: var(--space-1);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 8px;
  border-left: 2.5px solid var(--ignis-blue);
  border-bottom: 2.5px solid var(--ignis-blue);
  transform: rotate(-45deg);
}

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(242,58,68,0.18) 0%, rgba(242,58,68,0) 55%),
    radial-gradient(120% 140% at 100% 30%, rgba(28,156,230,0.15) 0%, rgba(28,156,230,0) 55%),
    var(--black);
  color: #fff;
  padding: var(--space-8) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Band at the end of the page flows straight into the black footer */
main > .cta-band:last-child { border-bottom: 0; }

.cta-band h2 { color: #fff; margin-top: 0; }
.cta-band p { color: #C7D0DE; max-width: 56ch; }
.cta-band .kicker { color: var(--ignis-red); }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-4);
}

@media (min-width: 880px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }

.contact-details p { margin-bottom: var(--space-2); }
.contact-details strong { display: block; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-soft); margin-bottom: 2px; }
.contact-details a { font-size: 1.15rem; font-weight: 600; }

.form-field { margin-bottom: var(--space-3); }

.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  padding: 12px 14px;
  min-height: 48px;
  border: 1px solid rgba(18, 28, 45, 0.18);
  border-radius: var(--radius);
  background: #FFFFFF;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: #8A93A3; }

.form-field input:focus,
.form-field textarea:focus { border-color: var(--ignis-blue); }

.form-field textarea { min-height: 140px; resize: vertical; }

.form-hint { font-size: 0.9rem; color: var(--ink-soft); margin-top: 4px; }

/* GDPR consent row on the enquiry form */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: var(--space-3);
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.form-consent input[type="checkbox"] {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--ignis-red);
}
.form-consent label { font-weight: 500; }

/* ---------- Article / long-form pages ---------- */

.page-head {
  background: var(--wash);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--line);
}

.page-head h1 { max-width: 26ch; }
.page-head .lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 58ch; }

.prose { max-width: 72ch; }
.prose h2 { margin-top: var(--space-6); }
.prose h3 { margin-top: var(--space-4); }

.meta-line {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: var(--space-2);
}

.toc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-3);
  margin: var(--space-4) 0;
}

.toc strong { display: block; margin-bottom: var(--space-1); }
.toc ol { margin: 0; padding-left: 1.3em; }
.toc li { margin-bottom: 4px; }

.note-box {
  background: var(--surface);
  border-left: 4px solid var(--ignis-blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--space-2) var(--space-3);
  margin: var(--space-3) 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

table.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-3) 0;
  font-size: 0.98rem;
}

.spec-table th, .spec-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.spec-table th { background: var(--surface); }

.map-embed {
  margin-top: var(--space-4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.map-embed iframe { display: block; width: 100%; height: 360px; border: 0; }

/* ---------- Footer (stays black) ---------- */

.site-footer {
  background: var(--black);
  color: #9AA4B4;
  padding: var(--space-8) 0 var(--space-4);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  gap: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.site-footer h2 {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 var(--space-2);
}

.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: var(--space-1); }

.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--ignis-blue); }

.footer-brand .footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ignis-blue);
}

.footer-bottom {
  padding-top: var(--space-3);
  font-size: 0.85rem;
  color: #6B7689;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1) var(--space-3);
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: var(--space-1) var(--space-3); }
.footer-bottom a { color: #9AA4B4; }
.footer-bottom a:hover { color: var(--ignis-blue); }

/* ---------- Images ---------- */

.feature-img {
  margin: 0 0 var(--space-4);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.feature-img img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  max-height: 440px;
}

/* The call-point photo is portrait — show it in full (no crop),
   centred and height-capped, rather than as a cropped banner. */
.feature-img--contain {
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.feature-img--contain img {
  aspect-ratio: auto;
  object-fit: contain;
  width: auto;
  max-width: 100%;
  max-height: 480px;
}

.card { overflow: hidden; }

/* Whole-card link: clicking anywhere on a blog card opens the article */
.card { position: relative; }
.card-cover-link { color: inherit; text-decoration: none; }
.card-cover-link::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.card-cover-link:hover { color: var(--ignis-blue); }
.card-actions { position: relative; z-index: 2; }

.card-media {
  margin: calc(-1 * var(--space-3)) calc(-1 * var(--space-3)) var(--space-3);
}
.card-media img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* ---------- Header actions ---------- */

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
