/* ===========================================================================
   One Careful Owner — My LEGO Collection
   Brick-inspired, deliberately not LEGO-branded. No external fonts or assets:
   every flourish here is CSS, so the site stays dependency-free and offline.
   =========================================================================== */

:root {
  --bg: #f4f5f8;
  --bg-alt: #eaecf1;
  --surface: #ffffff;
  --surface-2: #f1f3f7;
  --text: #12151b;
  --text-dim: #5a6472;
  --border: #dfe3ea;

  --accent: #d1232a;          /* brick red */
  --accent-hot: #f04248;
  --accent-soft: #fdecec;
  --gold: #9a6b00;            /* signed / premium */
  --gold-soft: #fdf1d6;
  --blue: #0a5fb4;
  --blue-soft: #e6f0fb;
  --good: #147a4d;
  --good-soft: #e4f4ec;
  --warn: #8a6100;
  --warn-soft: #fdf3dd;

  --shadow-sm: 0 1px 2px rgb(18 21 27 / 0.05);
  --shadow: 0 2px 4px rgb(18 21 27 / 0.05), 0 8px 24px rgb(18 21 27 / 0.07);
  --shadow-lg: 0 12px 32px rgb(18 21 27 / 0.14);
  --radius: 14px;
  --radius-sm: 10px;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0c0f14;
    --bg-alt: #11151c;
    --surface: #161b23;
    --surface-2: #1d232d;
    --text: #eaeef4;
    --text-dim: #97a2b2;
    --border: #262e3a;

    --accent: #ff6b63;
    --accent-hot: #ff8a80;
    --accent-soft: #2c1a1a;
    --gold: #ffc857;
    --gold-soft: #2b2416;
    --blue: #63a9f0;
    --blue-soft: #16232f;
    --good: #4bd493;
    --good-soft: #10251c;
    --warn: #e8b64c;
    --warn-soft: #2a2216;

    --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.4);
    --shadow: 0 2px 6px rgb(0 0 0 / 0.4), 0 10px 28px rgb(0 0 0 / 0.35);
    --shadow-lg: 0 16px 40px rgb(0 0 0 / 0.5);
    color-scheme: dark;
  }
}

:root[data-theme='light'] {
  --bg: #f4f5f8; --bg-alt: #eaecf1; --surface: #ffffff; --surface-2: #f1f3f7;
  --text: #12151b; --text-dim: #5a6472; --border: #dfe3ea;
  --accent: #d1232a; --accent-hot: #f04248; --accent-soft: #fdecec;
  --gold: #9a6b00; --gold-soft: #fdf1d6; --blue: #0a5fb4; --blue-soft: #e6f0fb;
  --good: #147a4d; --good-soft: #e4f4ec; --warn: #8a6100; --warn-soft: #fdf3dd;
  --shadow-sm: 0 1px 2px rgb(18 21 27 / 0.05);
  --shadow: 0 2px 4px rgb(18 21 27 / 0.05), 0 8px 24px rgb(18 21 27 / 0.07);
  --shadow-lg: 0 12px 32px rgb(18 21 27 / 0.14);
  color-scheme: light;
}

:root[data-theme='dark'] {
  --bg: #0c0f14; --bg-alt: #11151c; --surface: #161b23; --surface-2: #1d232d;
  --text: #eaeef4; --text-dim: #97a2b2; --border: #262e3a;
  --accent: #ff6b63; --accent-hot: #ff8a80; --accent-soft: #2c1a1a;
  --gold: #ffc857; --gold-soft: #2b2416; --blue: #63a9f0; --blue-soft: #16232f;
  --good: #4bd493; --good-soft: #10251c; --warn: #e8b64c; --warn-soft: #2a2216;
  --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.4);
  --shadow: 0 2px 6px rgb(0 0 0 / 0.4), 0 10px 28px rgb(0 0 0 / 0.35);
  --shadow-lg: 0 16px 40px rgb(0 0 0 / 0.5);
  color-scheme: dark;
}

/* --- Base ----------------------------------------------------------------- */
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.55 ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.wrap { max-width: 1220px; margin: 0 auto; padding: 0 20px; }

/* --- Header --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 14px; padding-block: 11px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }

/* A 2x2 stud plate, drawn in CSS — the identity mark. */
.brand-mark {
  width: 34px; height: 34px; flex: none; border-radius: 7px;
  background: linear-gradient(150deg, var(--accent-hot), var(--accent));
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
  padding: 5px; box-shadow: var(--shadow-sm), inset 0 -2px 0 rgb(0 0 0 / 0.18);
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.brand-mark i {
  border-radius: 50%;
  background: rgb(255 255 255 / 0.9);
  box-shadow: inset 0 -1px 1px rgb(0 0 0 / 0.22);
}
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.06); }
.brand-text strong { display: block; font-size: 16px; letter-spacing: -0.015em; line-height: 1.2; }
.brand-text small { display: block; color: var(--text-dim); font-size: 12.5px; }

.site-nav { display: flex; gap: 3px; margin-left: auto; flex-wrap: wrap; }
.site-nav a {
  text-decoration: none; font-size: 14px; font-weight: 550; color: var(--text-dim);
  padding: 8px 13px; border-radius: 999px; transition: background 0.15s, color 0.15s;
}
.site-nav a:hover { color: var(--text); background: var(--surface-2); }
.site-nav a.active { color: #fff; background: var(--accent); }
.theme-toggle {
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text-dim);
  width: 36px; height: 36px; border-radius: 999px; font-size: 15px; flex: none;
  transition: color 0.15s, transform 0.15s;
}
.theme-toggle:hover { color: var(--text); transform: rotate(180deg); }
@media (max-width: 620px) {
  .site-nav a { padding: 7px 9px; font-size: 13px; }
  .brand-text small { display: none; }
}

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  margin: 22px 0 30px; padding: 46px 38px 40px;
  border-radius: 22px; color: #fff;
  background:
    radial-gradient(120% 140% at 88% 8%, rgb(255 255 255 / 0.16) 0%, transparent 55%),
    linear-gradient(128deg, #b81c22 0%, #d1232a 42%, #7d2ea8 100%);
  box-shadow: var(--shadow-lg);
}
/* Stud pattern, evoking a brick surface without imitating the brand. */
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at center, rgb(255 255 255 / 0.16) 3.5px, transparent 4px);
  background-size: 30px 30px; opacity: 0.6;
  mask-image: linear-gradient(105deg, #000 0%, transparent 62%);
}
.hero-inner { position: relative; z-index: 1; max-width: 62ch; }
.hero-eyebrow {
  margin: 0 0 12px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.13em; color: rgb(255 255 255 / 0.82);
}
.hero-title {
  margin: 0 0 12px; font-size: clamp(30px, 5.2vw, 50px); line-height: 1.02;
  letter-spacing: -0.035em; font-weight: 800;
}
.hero-lede {
  margin: 0 0 26px; font-size: clamp(15px, 1.6vw, 17.5px);
  color: rgb(255 255 255 / 0.9); max-width: 54ch;
}
.hero-stats { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.stat {
  background: rgb(255 255 255 / 0.14); border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 12px; padding: 9px 15px; backdrop-filter: blur(4px);
}
.stat b { display: block; font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.stat span { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.09em; opacity: 0.85; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-btn {
  display: inline-block; text-decoration: none; font-weight: 650; font-size: 14.5px;
  padding: 11px 20px; border-radius: 999px;
  background: #fff; color: #b81c22;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.hero-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgb(0 0 0 / 0.22); }
.hero-btn.ghost { background: rgb(255 255 255 / 0.13); color: #fff; border: 1px solid rgb(255 255 255 / 0.35); }
@media (max-width: 640px) { .hero { padding: 34px 22px 30px; border-radius: 18px; } }

/* --- Layout --------------------------------------------------------------- */
.loading { padding: 70px 0; color: var(--text-dim); }
.layout { display: grid; grid-template-columns: 246px 1fr; gap: 30px; align-items: start; padding-bottom: 56px; }
@media (max-width: 900px) { .layout { grid-template-columns: 1fr; } }

.search-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 18px; }
.search-input {
  flex: 1 1 260px; min-width: 0;
  padding: 12px 16px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--surface); color: var(--text);
  font-size: 15px; box-shadow: var(--shadow-sm);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.search-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.sort-select {
  padding: 12px 14px; border-radius: 999px; border: 1px solid var(--border);
  background: var(--surface); color: var(--text); box-shadow: var(--shadow-sm);
}

/* --- Facets --------------------------------------------------------------- */
.facets {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 6px 16px 16px; box-shadow: var(--shadow);
  position: sticky; top: 74px; max-height: calc(100vh - 96px); overflow-y: auto;
}
@media (max-width: 900px) { .facets { position: static; max-height: none; } }
.facet-group { border-top: 1px solid var(--border); padding: 13px 0 5px; }
.facet-group:first-child { border-top: none; }
.facet-group h3 {
  margin: 0 0 9px; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.09em; color: var(--text-dim); font-weight: 700;
}
.facet-option {
  display: flex; align-items: center; gap: 9px; padding: 4px 6px; margin: 0 -6px;
  font-size: 14px; cursor: pointer; border-radius: 7px; transition: background 0.12s;
}
.facet-option:hover { background: var(--surface-2); }
.facet-option input { accent-color: var(--accent); margin: 0; flex: none; }
.facet-option span:first-of-type { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.facet-count {
  color: var(--text-dim); font-size: 11.5px; font-variant-numeric: tabular-nums;
  background: var(--surface-2); padding: 1px 7px; border-radius: 999px;
}
.facet-more { background: none; border: none; color: var(--accent); padding: 5px 0; font-size: 13px; font-weight: 600; }
.clear-filters {
  width: 100%; margin-top: 14px; padding: 9px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--surface-2); color: var(--text);
  font-weight: 550; transition: border-color 0.15s, color 0.15s;
}
.clear-filters:hover { border-color: var(--accent); color: var(--accent); }

/* --- Cards ---------------------------------------------------------------- */
.result-meta { color: var(--text-dim); font-size: 14px; margin-bottom: 16px; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(238px, 1fr)); gap: 20px; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); text-decoration: none; color: inherit;
  display: flex; flex-direction: column; position: relative;
  transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.2s, border-color 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); }
.card-img {
  aspect-ratio: 4 / 3; overflow: hidden;
  background: radial-gradient(120% 120% at 50% 0%, var(--surface-2) 0%, var(--bg-alt) 100%);
  display: grid; place-items: center; padding: 14px;
}
.card-img img { max-height: 100%; width: auto; object-fit: contain; transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1); }
.card:hover .card-img img { transform: scale(1.06); }
.card-img.empty { color: var(--text-dim); font-size: 30px; }
.card-body { padding: 13px 15px 15px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.card-title { font-weight: 650; font-size: 15px; line-height: 1.32; letter-spacing: -0.01em; }
.card-sub { color: var(--text-dim); font-size: 12.5px; }
.card-price { margin-top: auto; padding-top: 9px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 7px; }
.card-price .now { font-size: 19px; font-weight: 800; letter-spacing: -0.025em; color: var(--accent); }
.card-price .was { color: var(--text-dim); text-decoration: line-through; font-size: 12.5px; }
.card-price .none { color: var(--text-dim); font-size: 14px; font-style: italic; }

/* --- Badges --------------------------------------------------------------- */
.badges { display: flex; flex-wrap: wrap; gap: 5px; }
.badge {
  font-size: 10.5px; font-weight: 700; padding: 3px 9px; border-radius: 999px;
  border: 1px solid transparent; letter-spacing: 0.03em; white-space: nowrap;
  text-transform: uppercase;
}
.badge-available { background: var(--good-soft); color: var(--good); }
.badge-pending { background: var(--warn-soft); color: var(--warn); }
.badge-sold { background: var(--surface-2); color: var(--text-dim); }
.badge-signed { background: var(--gold-soft); color: var(--gold); border-color: color-mix(in srgb, var(--gold) 35%, transparent); }
.badge-bundle { background: var(--blue-soft); color: var(--blue); }
.badge-opened { background: var(--surface-2); color: var(--text-dim); border-color: var(--border); }
.card.is-sold .card-img { opacity: 0.45; filter: grayscale(0.6); }

/* --- Detail --------------------------------------------------------------- */
.back-link {
  display: inline-block; margin: 22px 0 16px; color: var(--text-dim);
  text-decoration: none; font-size: 14px; font-weight: 550;
}
.back-link:hover { color: var(--accent); }
.detail { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 36px; padding-bottom: 56px; }
@media (max-width: 900px) { .detail { grid-template-columns: 1fr; gap: 24px; } }
.detail-media {
  background: radial-gradient(120% 120% at 50% 0%, var(--surface) 0%, var(--bg-alt) 100%);
  border: 1px solid var(--border); border-radius: 18px;
  padding: 26px; display: grid; place-items: center; box-shadow: var(--shadow);
}
.detail h1 { margin: 12px 0 8px; font-size: clamp(24px, 3.4vw, 32px); line-height: 1.12; letter-spacing: -0.03em; font-weight: 800; }
.detail-sub { color: var(--text-dim); margin: 0 0 16px; }
.spec-list {
  display: grid; grid-template-columns: auto 1fr; gap: 0; font-size: 14px; margin: 20px 0;
  border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden;
}
.spec-list dt { color: var(--text-dim); padding: 8px 14px; background: var(--surface-2); }
.spec-list dd { margin: 0; padding: 8px 14px; background: var(--surface); font-weight: 550; }

.price-box {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; margin: 20px 0; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.price-box::before {
  content: ''; position: absolute; inset: 0 auto 0 0; width: 4px;
  background: linear-gradient(var(--accent-hot), var(--accent));
}
.price-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 6px 0; font-size: 15px; }
.price-row.total { border-top: 1px solid var(--border); margin-top: 10px; padding-top: 14px; }
.price-row .label { color: var(--text-dim); }
.price-row .value { font-variant-numeric: tabular-nums; font-weight: 600; }
.price-row.total .label { color: var(--text); font-weight: 650; }
.price-row.total .value { font-size: 30px; font-weight: 850; letter-spacing: -0.035em; color: var(--accent); }
.price-row.discount .value { color: var(--good); }
.price-row.premium .value { color: var(--gold); }
.price-row .value.muted { color: var(--text-dim); font-size: 13.5px; font-weight: 500; }
.price-row .value.struck { color: var(--text-dim); text-decoration: line-through; font-weight: 500; }

.confidence { font-size: 13px; padding: 10px 13px; border-radius: var(--radius-sm); margin-top: 13px; }
.confidence-high { background: var(--good-soft); color: var(--good); }
.confidence-medium { background: var(--warn-soft); color: var(--warn); }
.confidence-low { background: var(--warn-soft); color: var(--warn); }
.confidence-none { background: var(--surface-2); color: var(--text-dim); }

.sources { margin: 22px 0; }
.sources h2, .detail h2 { font-size: 15px; margin: 0 0 11px; letter-spacing: -0.01em; font-weight: 700; }
.source-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.source-table th, .source-table td { text-align: left; padding: 9px 11px; border-bottom: 1px solid var(--border); }
.source-table th { color: var(--text-dim); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.07em; }
.source-table td.num { text-align: right; font-variant-numeric: tabular-nums; }
.source-table tbody tr:hover { background: var(--surface-2); }
.table-scroll { overflow-x: auto; }

.bundle-members { display: grid; gap: 10px; margin: 12px 0 20px; }
.bundle-member {
  display: flex; gap: 13px; align-items: center; padding: 11px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  text-decoration: none; transition: border-color 0.15s;
}
.bundle-member:hover { border-color: var(--accent); }
.bundle-member img { width: 54px; height: 54px; object-fit: contain; flex: none; }
.bundle-member .m-title { font-size: 14px; font-weight: 650; }
.bundle-member .m-sub { font-size: 12.5px; color: var(--text-dim); }
.bundle-member .m-price { margin-left: auto; font-variant-numeric: tabular-nums; font-size: 14px; font-weight: 650; }

.link-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 15px 0; }
.link-chip {
  font-size: 13px; padding: 7px 14px; border-radius: 999px; font-weight: 550;
  border: 1px solid var(--border); background: var(--surface); text-decoration: none;
  transition: border-color 0.15s, color 0.15s, transform 0.15s;
}
.link-chip:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }

.enquire {
  display: inline-block; text-decoration: none; font-weight: 650;
  background: linear-gradient(140deg, var(--accent-hot), var(--accent)); color: #fff;
  padding: 13px 24px; border-radius: 999px; margin-top: 6px; border: none;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--accent) 35%, transparent);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.enquire:hover { transform: translateY(-2px); box-shadow: 0 8px 22px color-mix(in srgb, var(--accent) 45%, transparent); }
.enquire.disabled, .enquire:disabled {
  background: var(--surface-2); color: var(--text-dim); pointer-events: none; box-shadow: none;
}
.enquire.secondary { background: var(--surface-2); color: var(--text); border: 1px solid var(--border); box-shadow: none; }

/* --- Enquiry form --------------------------------------------------------- */
.enquiry-box {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; margin: 24px 0; box-shadow: var(--shadow);
}
.enquiry-box h2 { margin-top: 0; font-size: 17px; }
.enquiry-form { display: grid; gap: 13px; margin-top: 15px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 5px; }
.field > span { font-size: 12.5px; font-weight: 650; color: var(--text-dim); }
.field > span em { font-weight: 400; font-style: normal; }
.field input, .field textarea {
  width: 100%; padding: 11px 13px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--bg); color: var(--text);
  font: inherit; font-size: 15px; resize: vertical;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.enquiry-form .enquire { justify-self: start; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: 13.5px; margin: 0; min-height: 1.2em; color: var(--text-dim); }
.form-status.is-ok { color: var(--good); font-weight: 600; }
.form-status.is-error { color: var(--accent); font-weight: 600; }

.caveat { font-size: 13px; color: var(--text-dim); margin-top: 15px; line-height: 1.55; }
.notes-box {
  background: var(--surface-2); border-left: 3px solid var(--accent);
  padding: 11px 15px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 14px; margin: 15px 0;
}
.empty-state { padding: 70px 20px; text-align: center; color: var(--text-dim); }

/* --- Static pages --------------------------------------------------------- */
.page { padding: 30px 0 56px; }
/*
 * Two columns rather than one narrow one. Prose still needs a readable measure,
 * but capping it inside a wide container and leaving the remainder blank reads
 * as a broken layout — so the space carries the offer instead.
 */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 44px;
  align-items: start;
}
@media (max-width: 940px) { .about-layout { grid-template-columns: 1fr; gap: 8px; } }
.about-layout .prose { max-width: 62ch; }
.about-side { position: sticky; top: 88px; }
@media (max-width: 940px) { .about-side { position: static; } }
.about-facts {
  display: grid; grid-auto-flow: column; gap: 6px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow-sm);
}
.about-facts div { text-align: center; }
.about-facts b {
  display: block; font-size: 22px; font-weight: 800;
  letter-spacing: -0.03em; color: var(--accent);
}
.about-facts span {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-dim);
}
.page h1 { font-size: clamp(26px, 4vw, 36px); letter-spacing: -0.03em; margin: 0 0 14px; font-weight: 800; }
.page-intro { color: var(--text-dim); max-width: 68ch; margin: 0 0 28px; font-size: 16.5px; }
.group-heading {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--text-dim); margin: 34px 0 13px; font-weight: 700;
  display: flex; align-items: center; gap: 12px;
}
.group-heading::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.prose p { margin: 0 0 16px; line-height: 1.68; font-size: 16.5px; }
.prose a { color: var(--accent); font-weight: 550; }
/* The enquiry box supplies its own heading, so it needs no wrapper of its own. */
.about-side .enquiry-box { margin-top: 16px; }

/* --- Footer --------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--border); background: var(--surface); padding: 26px 0 44px; margin-top: 24px; }
.smallprint { font-size: 12.5px; color: var(--text-dim); max-width: 78ch; line-height: 1.6; margin: 0 0 10px; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  .card:hover { transform: none; }
}
