/* ==========================================================================
   Carna Medicare
   Ivory and Gold design system, shared with the printed product catalogue
   so the site and the PDF read as one identity.

   Palette is sampled from the logo artwork:
     #FAAA18 amber wordmark   (primary)
     #E65D25 #3FA944 #2FACDC #AF4784   the four bracket quadrants
   ========================================================================== */

:root {
  --brand:      #FAAA18;
  --brand-dark: #C6800A;
  --brand-soft: #FDECCA;
  --a1: #E65D25;
  --a2: #3FA944;
  --a3: #2FACDC;
  --a4: #AF4784;

  --ink:      #16191E;
  --ink-mid:  #424750;
  --ink-mute: #737980;
  --paper:    #F5F1E9;
  --paper-2:  #EFEAE0;
  --card:     #FFFFFF;
  --line:     #E0DBD2;
  --line-lt:  #ECE7DE;

  --maxw: 1200px;
  --radius: 10px;
  --shadow: 0 1px 2px rgba(22,25,30,.04), 0 8px 24px rgba(22,25,30,.05);
  --shadow-lift: 0 2px 4px rgba(22,25,30,.06), 0 16px 40px rgba(22,25,30,.10);

  --sans: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --serif: "Lora", Georgia, "Times New Roman", serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
/* If a rule pins an image height, the width must follow the artwork,
   otherwise the browser uses the width attribute and stretches it. */
img[width][height] { width: auto; }
a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.25rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.3rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1.1em; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Letter spaced small caps. The single cheapest cue that a page was
   designed rather than assembled. */
.eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin: 0 0 .9rem;
}
.eyebrow--mute { color: var(--ink-mute); }

.rule { width: 56px; height: 3px; background: var(--brand); border: 0; margin: 0 0 1.6rem; }

/* accent bar of the four bracket colours, used as a masthead device */
.bar4 { display: flex; height: 3px; }
.bar4 span { flex: 1; }
.bar4 span:nth-child(1) { background: var(--a1); }
.bar4 span:nth-child(2) { background: var(--a2); }
.bar4 span:nth-child(3) { background: var(--a3); }
.bar4 span:nth-child(4) { background: var(--a4); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.6rem;
  border-radius: 999px;
  font-size: .93rem; font-weight: 600; letter-spacing: .01em;
  border: 1px solid transparent;
  cursor: pointer; transition: .18s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--brand); color: #1a1206; }
.btn--primary:hover { background: #e89a10; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-dark); }
.btn--sm { padding: .55rem 1.1rem; font-size: .85rem; }

/* ---------- top bar and header ---------- */
.topbar {
  background: var(--ink);
  color: #cfd2d6;
  font-size: .82rem;
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 1rem; padding-block: .5rem; flex-wrap: wrap; }
.topbar a { color: #e8e2d6; }
.topbar strong { color: #fff; font-weight: 600; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  /* the mega menu is a child, so nothing here may clip overflow */
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header > .wrap { display: flex; align-items: center; gap: 1.5rem; padding-block: .85rem; }
.brand img { height: 46px; width: auto; transition: height .2s ease; }
.site-header.is-stuck .brand img { height: 38px; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 1.6rem; }
.nav a {
  color: var(--ink); font-size: .93rem; font-weight: 500;
  padding: .35rem 0; border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--brand-dark); text-decoration: none; border-bottom-color: var(--brand); }
.nav a.is-active { border-bottom-color: var(--brand); color: var(--brand-dark); }

.nav-toggle {
  display: none; margin-left: auto;
  width: 44px; height: 40px; border: 1px solid var(--line);
  border-radius: 8px; background: #fff; cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 20px; height: 2px; background: var(--ink);
  margin: 0 auto; position: relative; transition: .2s;
}
.nav-toggle span::before { content: ""; position: absolute; top: -6px; }
.nav-toggle span::after  { content: ""; position: absolute; top: 6px; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 420px at 82% 18%, rgba(250,170,24,.13), transparent 60%),
    linear-gradient(180deg, #FBF8F2 0%, var(--paper) 60%, var(--paper-2) 100%);
  border-bottom: 1px solid var(--line);
}
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; padding-block: clamp(3rem, 7vw, 6rem); }
.hero h1 span { color: var(--brand-dark); }
.hero .lede { font-size: 1.12rem; max-width: 34em; }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.6rem; }

/* Oversized faint monogram, echoing the catalogue covers. */
.hero::after {
  content: "C";
  position: absolute; right: -3vw; bottom: -18vw;
  font-family: var(--serif); font-size: 42vw; line-height: 1;
  color: rgba(250,170,24,.06); pointer-events: none;
}

.hero-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; position: relative; z-index: 1;
}
.hero-card .pad { padding: 1.6rem 1.8rem 1.9rem; }
.hero-card h3 { margin-bottom: .3rem; }
.hero-card ul { margin: 0; padding: 0; list-style: none; }
.hero-card li { display: flex; gap: .7rem; padding: .55rem 0; border-bottom: 1px solid var(--line-lt); font-size: .95rem; }
.hero-card li:last-child { border-bottom: 0; }
.dot { width: 8px; height: 8px; border-radius: 50%; margin-top: .55rem; flex: none; }

/* ---------- generic section ---------- */
.section { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section--tint { background: var(--paper-2); border-block: 1px solid var(--line); }
.section--white { background: #FBF9F5; border-block: 1px solid var(--line); }
.section-head { max-width: 46rem; margin-bottom: 2.6rem; }

/* ---------- stat band ---------- */
.stats {
  background: var(--brand-soft);
  border-top: 3px solid var(--brand);
  border-bottom: 1px solid #eddfbd;
}
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding-block: 2.2rem; }
.stat b { font-family: var(--serif); font-size: 2.1rem; color: var(--brand-dark); display: block; line-height: 1; }
.stat span { font-size: .88rem; color: var(--ink-mid); }

/* ---------- cards grid ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: .2s ease;
}
.card:hover { box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.card__media {
  /* A fixed height, not an aspect ratio. The manufacturer photos vary from
     tall trolleys to wide monitors, and letting the box follow the image
     leaves every card title on a different line. */
  height: 190px; flex: none; background: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 1.1rem; border-bottom: 1px solid var(--line-lt);
}
.card__media img {
  max-height: 100%; max-width: 100%;
  width: auto; height: auto; object-fit: contain;
}
.card__body { padding: 1.1rem 1.2rem 1.3rem; flex: 1; display: flex; flex-direction: column; }
.card__brand {
  font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brand-dark); margin-bottom: .35rem;
}
.card__title { font-family: var(--serif); font-size: 1.08rem; color: var(--ink); margin: 0 0 .3rem; }
.card__desc { font-size: .88rem; color: var(--ink-mute); margin: 0 0 .8rem; }
.card__specs { list-style: none; margin: 0; padding: 0; font-size: .84rem; }
.card__specs li { position: relative; padding-left: 1rem; margin-bottom: .3rem; }
.card__specs li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent, var(--brand));
}

/* feature cards on the home page */
.feature { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; position: relative; }
.feature::before { content: ""; position: absolute; left: 0; top: 1.6rem; bottom: 1.6rem; width: 3px; border-radius: 2px; background: var(--accent, var(--brand)); }
.feature h3 { margin-bottom: .35rem; }
.feature p { margin: 0; font-size: .93rem; }

/* ---------- category nav on the products page ---------- */
.catnav { position: sticky; top: 68px; z-index: 20; background: rgba(245,241,233,.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
/* Chips scroll sideways on a phone, but wrap on a wide screen so the last
   category is never hidden off the edge. */
.catnav ul { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: .7rem 0; list-style: none; }
@media (max-width: 900px) {
  .catnav ul { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
.catnav a {
  white-space: nowrap; font-size: .84rem; color: var(--ink);
  border: 1px solid var(--line); background: #fff;
  padding: .4rem .9rem; border-radius: 999px;
}
.catnav a:hover { border-color: var(--brand); color: var(--brand-dark); text-decoration: none; }

.cat-head { display: flex; align-items: baseline; gap: 1rem; margin: 0 0 1.5rem; padding-top: .5rem; border-top: 1px solid var(--line); }
.cat-head .num { font-family: var(--serif); font-size: .95rem; color: var(--accent, var(--brand-dark)); font-weight: 600; }
.cat-head h2 { margin: 0; }
.cat-head .sub { font-size: .9rem; color: var(--ink-mute); }
.cat-block { margin-bottom: 3.4rem; scroll-margin-top: 130px; }

/* ---------- brand roster ---------- */
.pills { display: flex; flex-wrap: wrap; gap: .55rem; padding: 0; margin: 0; list-style: none; }
.pills li { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: .42rem 1rem; font-size: .87rem; color: var(--ink); display: flex; align-items: center; gap: .5rem; }
.pills i { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }

/* ---------- callout ---------- */
.callout {
  background: var(--brand-soft); border-top: 3px solid var(--brand);
  border-radius: var(--radius); padding: 2.2rem 2.4rem;
  display: grid; grid-template-columns: 1.4fr auto; gap: 2rem; align-items: center;
}
.callout h2 { margin-bottom: .4rem; }
.callout p { margin: 0; }

/* ---------- forms ---------- */
.form { display: grid; gap: 1rem; }
.field label { display: block; font-size: .84rem; font-weight: 600; color: var(--ink); margin-bottom: .35rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .75rem .9rem; font: inherit; font-size: .95rem;
  border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(250,170,24,.18);
}
.field textarea { min-height: 130px; resize: vertical; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
/* honeypot, hidden from people and picked up by bots */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.note { font-size: .82rem; color: var(--ink-mute); }
.alert { padding: .9rem 1.1rem; border-radius: 8px; font-size: .92rem; margin-bottom: 1rem; }
.alert--ok  { background: #eaf6ec; border: 1px solid #bfe0c6; color: #1e5a2c; }
.alert--err { background: #fdeceb; border: 1px solid #f2c4c0; color: #8a2c24; }

/* ---------- contact detail cards ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.4rem; position: relative; }
.contact-card::before { content: ""; position: absolute; left: 0; top: 1.2rem; bottom: 1.2rem; width: 3px; border-radius: 2px; background: var(--accent, var(--brand)); }
.contact-card b { display: block; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-dark); margin-bottom: .3rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #b9bcc2; font-size: .9rem; }
.site-footer .wrap { padding-block: 3rem 1.6rem; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.1fr; gap: 2rem; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 1rem; }
.site-footer a { color: #d6d8dc; }
.site-footer a:hover { color: var(--brand); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .5rem; }
.foot-logo { height: 54px; width: auto; margin-bottom: 1.1rem; }
.foot-bottom { border-top: 1px solid #2a2f36; margin-top: 2.4rem; padding-top: 1.2rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: #8c9098; }
.foot-links a { margin-right: 1.1rem; }

/* floating WhatsApp */
.wa {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.22);
}
.wa:hover { transform: scale(1.06); }
.wa svg { width: 28px; height: 28px; fill: #fff; }

/* ---------- page banner for inner pages ---------- */
.banner {
  background: linear-gradient(180deg, #FBF8F2, var(--paper-2));
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.4rem, 5vw, 4rem);
}
.banner h1 { margin-bottom: .4rem; }
.banner p { max-width: 44em; margin: 0; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .grid--4 { grid-template-columns: repeat(3, 1fr); }
  .hero .wrap { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav {
    position: fixed; inset: 64px 0 auto 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: .5rem 24px 1rem; display: none; box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .8rem 0; border-bottom: 1px solid var(--line-lt); }
  .nav-toggle { display: block; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats .wrap { grid-template-columns: repeat(2, 1fr); }
  .callout { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .row-2 { grid-template-columns: 1fr; }
  .catnav { top: 62px; }
}
@media (max-width: 460px) {
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .card__media { height: 210px; }
  .foot-grid { grid-template-columns: 1fr; }
}

@media print {
  .site-header, .catnav, .wa, .site-footer, .topbar { display: none; }
}

/* ==========================================================================
   Additions: product detail pages, FAQ, legal pages, sitemap
   ========================================================================== */

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 6px 0;
}
.skip:focus { left: 0; }

:focus-visible { outline: 3px solid rgba(250,170,24,.55); outline-offset: 2px; }

.mt-2 { margin-top: 1.4rem; }
.mt-3 { margin-top: 2.2rem; }

.btn--outline { background: transparent; color: #e8e2d6; border-color: #3a3f47; }
.btn--outline:hover { border-color: var(--brand); color: var(--brand); }

/* ---------- breadcrumbs ---------- */
.crumbs { background: var(--paper-2); border-bottom: 1px solid var(--line); font-size: .82rem; }
.crumbs .wrap { padding-block: .7rem; color: var(--ink-mute); }
.crumbs a { color: var(--ink-mid); }
.crumbs a:hover { color: var(--brand-dark); }
.crumbs .sep { padding: 0 .55rem; color: var(--line); }

/* ---------- product cards become links ---------- */
.card__link { display: flex; flex-direction: column; height: 100%; color: inherit; text-decoration: none; }
.card__link:hover { text-decoration: none; }
.card__more {
  margin-top: auto; padding-top: .85rem;
  font-size: .8rem; font-weight: 600; color: var(--brand-dark);
  display: inline-flex; align-items: center; gap: .35rem;
}
.card__more::after { content: "→"; transition: transform .18s ease; }
.card:hover .card__more::after { transform: translateX(3px); }

/* ---------- category feature tiles ---------- */
.feature { display: block; color: inherit; }
a.feature:hover { text-decoration: none; box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.feature__num {
  font-family: var(--serif); font-size: .8rem; font-weight: 600;
  color: var(--accent, var(--brand-dark)); display: block; margin-bottom: .3rem;
}
.feature__count { font-size: .78rem; color: var(--ink-mute); display: block; margin-top: .7rem; }

/* ---------- product detail ---------- */
.product { background: linear-gradient(180deg, #FBF8F2, var(--paper)); border-bottom: 1px solid var(--line); }
.product .wrap {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 3rem;
  align-items: center; padding-block: clamp(2.4rem, 5vw, 4rem);
}
.product__media {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 2rem;
  display: flex; align-items: center; justify-content: center; min-height: 320px;
}
.product__media img { max-height: 340px; width: auto; object-fit: contain; }
.product__intro h1 { margin-bottom: .3rem; }

.quick { list-style: none; margin: 0 0 1.6rem; padding: 0; }
.quick li { display: flex; gap: .7rem; align-items: baseline; padding: .45rem 0; border-bottom: 1px solid var(--line-lt); font-size: .95rem; }
.quick li:last-child { border-bottom: 0; }
.quick i { width: 7px; height: 7px; border-radius: 50%; flex: none; }

.panes { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: start; }
.pane h2 { font-size: 1.35rem; margin-bottom: 1rem; }

.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li { position: relative; padding-left: 1.5rem; margin-bottom: .6rem; font-size: .94rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .5em;
  width: 8px; height: 8px; border-radius: 2px; background: var(--brand);
}

.tablewrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table.spec { width: 100%; border-collapse: collapse; font-size: .9rem; }
table.spec th, table.spec td { padding: .72rem .95rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line-lt); }
table.spec tr:last-child th, table.spec tr:last-child td { border-bottom: 0; }
table.spec tr:nth-child(odd) { background: #FCFAF6; }
table.spec th { width: 38%; font-weight: 600; color: var(--ink); }
table.spec td { color: var(--ink-mid); }

.pills--sm li { font-size: .8rem; padding: .3rem .8rem; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 56rem; }
.faq {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: .8rem; overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 1.05rem 3rem 1.05rem 1.3rem;
  font-family: var(--serif); font-size: 1.05rem; color: var(--ink); position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 1.35rem; color: var(--brand-dark); line-height: 1;
}
.faq[open] summary::after { content: "\2212"; }
.faq[open] summary { border-bottom: 1px solid var(--line-lt); }
.faq__a { padding: 1rem 1.3rem 1.2rem; }
.faq__a p { margin: 0; font-size: .95rem; }

/* ---------- downloads ---------- */
.dl {
  display: block; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem; color: inherit; position: relative;
}
.dl::before { content: ""; position: absolute; left: 0; top: 1.6rem; bottom: 1.6rem; width: 3px; border-radius: 2px; background: var(--accent, var(--brand)); }
.dl:hover { text-decoration: none; box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.dl__type {
  display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  background: var(--brand-soft); color: var(--brand-dark); padding: .2rem .55rem;
  border-radius: 4px; margin-bottom: .7rem;
}
.dl__meta { font-size: .8rem; color: var(--ink-mute); }

/* ---------- long form pages ---------- */
.prose { max-width: 46rem; }
.prose h2 { font-size: 1.3rem; margin-top: 2.2rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: .97rem; }

.two-col { display: grid; grid-template-columns: 1.6fr .9fr; gap: 3rem; align-items: start; }

/* ---------- html sitemap ---------- */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.4rem; }
.sm-col h3 { font-size: 1rem; margin-bottom: .6rem; }
.sm-col ul { list-style: none; margin: 0 0 1.6rem; padding: 0; }
.sm-col li { padding: .18rem 0; font-size: .9rem; }

.contact-cards--stack { grid-template-columns: 1fr; }
.callout__actions { display: flex; gap: .7rem; flex-wrap: wrap; }

@media (max-width: 1000px) {
  .product .wrap { grid-template-columns: 1fr; }
  .panes { grid-template-columns: 1fr; gap: 2rem; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .sitemap-grid { grid-template-columns: 1fr; }
  .product__media { min-height: 220px; padding: 1.2rem; }
  .product__media img { max-height: 240px; }
  table.spec th { width: 45%; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   Navigation, search, filters, enquiry list
   ========================================================================== */

.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;
}

.nav__link { color: var(--ink); font-size: .93rem; font-weight: 500; padding: .35rem 0; border-bottom: 2px solid transparent; }
.nav__link:hover { color: var(--brand-dark); text-decoration: none; border-bottom-color: var(--brand); }
.nav__link.is-active { border-bottom-color: var(--brand); color: var(--brand-dark); }

.has-mm { position: relative; display: flex; align-items: center; }
.caret {
  display: inline-block; width: 0; height: 0; margin-left: .35rem;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid currentColor; opacity: .55; transition: transform .18s;
}
.has-mm a[aria-expanded="true"] .caret { transform: rotate(180deg); }

/* ---------- mega menu ---------- */
.mm {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lift);
  opacity: 0; transform: translateY(-6px); transition: opacity .16s ease, transform .16s ease;
  z-index: 45;
}
.mm.is-open { opacity: 1; transform: none; }
.mm__inner { display: grid; grid-template-columns: 1fr 280px; gap: 2.5rem; padding-block: 1.8rem 2rem; }
.mm__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.mm__col { list-style: none; margin: 0; padding: 0; }
.mm__col a {
  display: flex; gap: .7rem; align-items: baseline;
  padding: .45rem .5rem; border-radius: 6px; color: var(--ink);
}
.mm__col a:hover { background: var(--paper); text-decoration: none; }
.mm__num { font-family: var(--serif); font-size: .74rem; color: var(--brand-dark); min-width: 1.4rem; }
.mm__col strong { display: block; font-weight: 500; font-size: .94rem; }
.mm__col em { display: block; font-style: normal; font-size: .76rem; color: var(--ink-mute); }
.mm__side { border-left: 1px solid var(--line-lt); padding-left: 2rem; }
.mm__depts { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.2rem; }
.mm__depts a { font-size: .88rem; color: var(--ink); }
.mm__depts a:hover { color: var(--brand-dark); }
.mm__all { width: 100%; justify-content: center; }
.mm__cat { display: block; margin-top: .8rem; font-size: .82rem; }

/* ---------- icon buttons in the header ---------- */
.iconbtn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 8px;
  border: 1px solid var(--line); background: #fff; cursor: pointer;
  color: var(--ink); position: relative; padding: 0;
}
.iconbtn:hover { border-color: var(--brand); color: var(--brand-dark); text-decoration: none; }
.iconbtn svg { width: 18px; height: 18px; fill: currentColor; }
.enq-count {
  position: absolute; top: -6px; right: -6px; min-width: 18px; height: 18px;
  border-radius: 9px; background: var(--brand); color: #1a1206;
  font-size: .68rem; font-weight: 700; line-height: 18px; text-align: center; padding: 0 4px;
}

/* ---------- search bar ---------- */
.searchbar { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 64px; z-index: 44; }
.searchbar .wrap { display: flex; align-items: center; gap: .6rem; padding-block: .8rem; position: relative; }
.searchbar input {
  flex: 1; padding: .75rem 1rem; font: inherit; font-size: .95rem;
  border: 1px solid var(--line); border-radius: 8px; background: #fff;
}
.searchbar input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(250,170,24,.18); }
.searchres {
  position: absolute; left: 24px; right: 24px; top: 100%;
  background: #fff; border: 1px solid var(--line); border-top: 0;
  border-radius: 0 0 8px 8px; box-shadow: var(--shadow-lift); overflow: hidden;
}
.searchres:empty { display: none; }
.searchres a { display: block; padding: .7rem 1rem; border-bottom: 1px solid var(--line-lt); color: var(--ink); }
.searchres a:last-child { border-bottom: 0; }
.searchres a:hover { background: var(--paper); text-decoration: none; }
.searchres strong { display: block; font-size: .95rem; font-weight: 500; }
.searchres span { font-size: .8rem; color: var(--ink-mute); }
.searchres__none { padding: .9rem 1rem; margin: 0; font-size: .9rem; color: var(--ink-mute); }
.searchres__all { font-size: .85rem; color: var(--brand-dark) !important; background: var(--paper); }

/* ---------- product filters ---------- */
.filters { background: #fff; border-bottom: 1px solid var(--line); }
.filters .wrap { padding-block: 1rem; }
.filters__row { display: flex; gap: 1rem; align-items: flex-end; flex-wrap: wrap; }
.field--inline { min-width: 170px; }
.field--inline label { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); }
.field--grow { flex: 1; min-width: 220px; }
.filters__count { margin: .7rem 0 0; font-size: .85rem; color: var(--ink-mute); }
.filters__count:empty { display: none; }
.catnav a.is-here { border-color: var(--brand); color: var(--brand-dark); background: var(--brand-soft); }

/* ---------- add to enquiry ---------- */
.card { position: relative; }
.card__add {
  border: 0; border-top: 1px solid var(--line-lt); background: #FCFAF6;
  padding: .6rem 1.2rem; font: inherit; font-size: .8rem; font-weight: 600;
  color: var(--brand-dark); cursor: pointer; text-align: left; width: 100%;
}
.card__add:hover { background: var(--brand-soft); }
.card__add.is-added { background: #eaf6ec; color: #1e5a2c; }
.btn.is-added { background: #eaf6ec; border-color: #bfe0c6; color: #1e5a2c; }

.enqbox { background: var(--brand-soft); border: 1px solid #eddfbd; border-radius: var(--radius); padding: 1.1rem 1.3rem; margin-bottom: 1.6rem; }
.enqbox__head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.enqbox ul { list-style: none; margin: .6rem 0 .6rem; padding: 0; }
.enqbox li { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .4rem 0; border-bottom: 1px solid rgba(0,0,0,.06); font-size: .92rem; }
.enqbox li:last-child { border-bottom: 0; }
.enqbox li button { border: 0; background: transparent; font-size: 1.2rem; line-height: 1; color: var(--ink-mute); cursor: pointer; padding: 0 .3rem; }
.enqbox li button:hover { color: #8a2c24; }
.enqbox .note { margin: 0; }

/* ---------- sticky mobile action bar ---------- */
.actionbar { display: none; }
.mb-1 { margin-bottom: .8rem; }

@media (max-width: 860px) {
  .mm { position: static; box-shadow: none; border: 0; }
  .mm__inner { grid-template-columns: 1fr; gap: 1.2rem; padding-block: .6rem 1.2rem; }
  .mm__cols { grid-template-columns: 1fr; gap: 0; }
  .mm__side { border-left: 0; border-top: 1px solid var(--line-lt); padding: 1rem 0 0; }
  .searchbar { top: 62px; }
  .searchres { left: 24px; right: 24px; }

  .actionbar {
    display: grid; grid-template-columns: repeat(3, 1fr);
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    background: #fff; border-top: 1px solid var(--line);
    box-shadow: 0 -2px 14px rgba(0,0,0,.07);
  }
  .actionbar a {
    display: flex; flex-direction: column; align-items: center; gap: .15rem;
    padding: .55rem 0 .5rem; font-size: .72rem; font-weight: 600; color: var(--ink);
    border-right: 1px solid var(--line-lt);
  }
  .actionbar a:last-child { border-right: 0; }
  .actionbar a:hover { text-decoration: none; color: var(--brand-dark); }
  .actionbar svg { width: 19px; height: 19px; fill: var(--brand-dark); }
  body { padding-bottom: 58px; }
  .wa { bottom: 70px; }
  .site-header > .wrap { gap: .6rem; }
  .nav { padding-bottom: .6rem; }
  .nav .iconbtn { display: inline-flex; }
  .nav { flex-direction: column; align-items: stretch; }
  .nav__link { padding: .8rem 0; border-bottom: 1px solid var(--line-lt); }
  .has-mm { display: block; }
  .has-mm .nav__link { display: flex; justify-content: space-between; align-items: center; }
  body.nav-open { overflow: hidden; }
}


/* the mega menu lives inside the nav, so on desktop it is positioned against
   the sticky header and on mobile it simply flows inside the open panel */
.mm { position: absolute; left: 0; right: 0; top: 100%; }
@media (max-width: 860px) {
  .nav { max-height: calc(100vh - 64px); overflow-y: auto; }
  .mm { position: static; margin: 0 0 .4rem; background: var(--paper); border-radius: 8px; }
  .mm__inner { padding-inline: 1rem; }
  .mm__col a { padding-inline: 0; }
}


/* mobile: the menu is a plain accordion inside the nav panel */
@media (max-width: 860px) {
  .mm__inner { grid-template-columns: 1fr !important; gap: 1rem; }
  .mm__cols  { grid-template-columns: 1fr !important; gap: 0; }
  .mm__side  { border-left: 0; padding-left: 0; }
  .mm__col a { padding: .55rem .2rem; border-bottom: 1px solid var(--line-lt); }
  .mm__col:last-child a:last-child { border-bottom: 0; }
}

/* ==========================================================================
   Depth, photography and motion
   --------------------------------------------------------------------------
   Every photographic area is built as a layer with a gradient underneath.
   If the photograph is missing the panel still looks deliberate rather than
   broken, so the site can go live before the images arrive.
   ========================================================================== */

.photo {
  position: relative; overflow: hidden;
  background:
    linear-gradient(135deg, rgba(22,25,30,.55), rgba(22,25,30,.20)),
    linear-gradient(160deg, #2a3138, #12161b);
  background-size: cover; background-position: center;
}
.photo__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  /* slow drift, so a still image does not feel dead */
  animation: driftin 18s ease-in-out infinite alternate;
}
@keyframes driftin { from { transform: scale(1.04) translate3d(0,0,0); } to { transform: scale(1.10) translate3d(-1.2%, -1%, 0); } }
.photo__veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(14,17,21,.92) 0%, rgba(14,17,21,.72) 42%, rgba(14,17,21,.18) 100%);
}
.photo > .wrap, .photo__body { position: relative; z-index: 2; }

/* ---------- hero, rebuilt with a photographic right hand panel ---------- */
.hero { position: relative; }
.hero__figure {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 420px; box-shadow: var(--shadow-lift);
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(250,170,24,.20), transparent 60%),
    linear-gradient(160deg, #232a31, #10141a);
}
.hero__figure img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(10,13,17,0) 30%, rgba(10,13,17,.45) 62%, rgba(10,13,17,.90) 100%);
}
.hero__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.4rem 1.6rem;
  color: #fff;
}
.hero__cap .bar4 { margin-bottom: .8rem; width: 74px; }
.hero__cap strong { display: block; font-family: var(--serif); font-size: 1.12rem; font-weight: 500; }
.hero__cap span { font-size: .85rem; color: rgba(255,255,255,.78); }

/* the supply list moves under the copy, so the hero can carry a picture */
.supply { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: .1rem; }
.supply li { display: flex; gap: .75rem; align-items: baseline; padding: .6rem 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.supply li:last-child { border-bottom: 0; }
.supply i { width: 8px; height: 8px; border-radius: 50%; flex: none; }

/* ---------- full width photographic band ---------- */
.band { padding-block: clamp(3.4rem, 7vw, 5.5rem); color: #fff; }
.band h2 { color: #fff; }
.band p { color: rgba(255,255,255,.80); }
.band .eyebrow { color: var(--brand); }
.band__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
/* The figures sit over the busiest part of the photograph, so they get a
   panel of their own rather than fighting the machine behind them. */
.band__stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem;
  background: rgba(10,13,17,.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  padding: 1.8rem 1.9rem;
}
.band__stat b { display: block; font-family: var(--serif); font-size: 2.4rem; color: var(--brand); line-height: 1; }
.band__stat span { font-size: .88rem; color: rgba(255,255,255,.75); }

/* ---------- department tiles with photography ---------- */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.tile {
  position: relative; overflow: hidden; border-radius: var(--radius);
  min-height: 330px; display: flex; align-items: flex-end;
  color: #fff; text-decoration: none;
  background: linear-gradient(160deg, #262d34, #11151a);
  transition: transform .25s ease, box-shadow .25s ease;
}
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,13,17,.05) 35%, rgba(10,13,17,.86) 100%);
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); text-decoration: none; }
.tile:hover img { transform: scale(1.06); }
.tile__body { position: relative; z-index: 2; padding: 1.3rem 1.4rem; }
.tile__body h3 { color: #fff; margin: 0 0 .2rem; font-size: 1.08rem; }
.tile__body p { margin: 0; font-size: .84rem; color: rgba(255,255,255,.78); }
.tile__rule { width: 34px; height: 3px; background: var(--brand); margin-bottom: .7rem; }

/* ---------- richer section tones, less flat white ---------- */
.section--white {
  background:
    radial-gradient(80% 60% at 90% 0%, rgba(250,170,24,.07), transparent 60%),
    linear-gradient(180deg, #FCFAF6, #F7F3EC);
  border-block: 1px solid var(--line);
}
.section--tint {
  background:
    radial-gradient(70% 50% at 10% 0%, rgba(47,172,220,.06), transparent 60%),
    linear-gradient(180deg, var(--paper-2), #EAE4D8);
  border-block: 1px solid var(--line);
}
.banner {
  background:
    radial-gradient(60% 90% at 88% 20%, rgba(250,170,24,.14), transparent 62%),
    linear-gradient(180deg, #FBF8F2, var(--paper-2));
}
.site-header { background: rgba(253,251,247,.90); }
.site-header.is-stuck { box-shadow: 0 6px 22px rgba(22,25,30,.08); background: rgba(253,251,247,.96); }
.site-header > .wrap { transition: padding .2s ease; }
.site-header.is-stuck > .wrap { padding-block: .55rem; }

/* card polish */
.card { transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.card:hover { border-color: #d8d0c2; }
.card__media img { transition: transform .45s ease; }
.card:hover .card__media img { transform: scale(1.05); }

/* ---------- scroll reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(14px); }
.js .reveal.is-in { opacity: 1; transform: none; transition: opacity .55s ease, transform .55s cubic-bezier(.22,.68,.36,1); }
.js .reveal-d1.is-in { transition-delay: .06s; }
.js .reveal-d2.is-in { transition-delay: .12s; }
.js .reveal-d3.is-in { transition-delay: .18s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .js .reveal.is-in { opacity: 1; transform: none; transition: none; }
  .photo__img { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- product image lightbox ---------- */
.product__media { cursor: zoom-in; }
.lb {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 4vh 4vw;
  background: rgba(12,14,18,.86); backdrop-filter: blur(3px);
}
.lb.is-open { display: flex; }
.lb img { max-width: 100%; max-height: 92vh; width: auto; border-radius: 6px; background: #fff; padding: 2rem; }
.lb__close {
  position: absolute; top: 18px; right: 22px; width: 42px; height: 42px;
  border-radius: 50%; border: 0; background: rgba(255,255,255,.14); color: #fff;
  font-size: 1.5rem; line-height: 1; cursor: pointer;
}
.lb__close:hover { background: rgba(255,255,255,.25); }

/* anchors must clear the sticky header */
:target { scroll-margin-top: 120px; }

@media (max-width: 1000px) {
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .band__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__figure { min-height: 300px; }
}
@media (max-width: 560px) {
  .tiles { grid-template-columns: 1fr; }
  .band__stats { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   Interactive elements
   ========================================================================== */

/* ---------- scroll progress ---------- */
.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, #C6800A, var(--brand), #E9C463);
  z-index: 120; transition: width .08s linear;
}

/* ---------- back to top ---------- */
.totop {
  position: fixed; right: 18px; bottom: 84px; z-index: 60;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(255,255,255,.94);
  box-shadow: var(--shadow); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(8px); transition: opacity .2s, transform .2s;
}
.totop[hidden] { display: none; }
.totop.is-in { opacity: 1; transform: none; }
.totop svg { width: 20px; height: 20px; fill: var(--ink); }
.totop:hover { border-color: var(--brand); }
.totop:hover svg { fill: var(--brand-dark); }

/* ---------- toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 26px; z-index: 130;
  transform: translate(-50%, 20px);
  background: var(--ink); color: #fff;
  padding: .8rem 1.3rem; border-radius: 999px;
  font-size: .9rem; box-shadow: 0 10px 30px rgba(0,0,0,.28);
  opacity: 0; pointer-events: none; transition: opacity .22s, transform .22s;
  display: flex; align-items: center; gap: .6rem; max-width: 90vw;
}
.toast.is-in { opacity: 1; transform: translate(-50%, 0); }
.toast::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); flex: none; }

/* ---------- brand marquee ---------- */
.marquee {
  position: relative; overflow: hidden; padding-block: .4rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex; gap: .7rem; width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee:hover .marquee__track, .marquee:focus-within .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex; align-items: center; gap: .55rem;
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: .5rem 1.1rem; font-size: .9rem; color: var(--ink); white-space: nowrap;
}
.marquee__item i { width: 7px; height: 7px; border-radius: 50%; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- card actions and quick view ---------- */
.card__actions { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-lt); }
.card__quick, .card__add {
  border: 0; background: #FCFAF6; padding: .62rem .8rem;
  font: inherit; font-size: .78rem; font-weight: 600; color: var(--brand-dark);
  cursor: pointer; text-align: center;
}
.card__quick { border-right: 1px solid var(--line-lt); }
.card__quick:hover, .card__add:hover { background: var(--brand-soft); }
.card__add.is-added { background: #eaf6ec; color: #1e5a2c; }

.qv {
  position: fixed; inset: 0; z-index: 150; display: none;
  align-items: center; justify-content: center; padding: 4vh 4vw;
  background: rgba(12,14,18,.72); backdrop-filter: blur(4px);
}
.qv.is-open { display: flex; }
.qv__panel {
  background: #fff; border-radius: 14px; overflow: hidden; position: relative;
  display: grid; grid-template-columns: .85fr 1.15fr;
  max-width: 900px; width: 100%; max-height: 88vh;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  animation: qvin .24s cubic-bezier(.22,.68,.36,1);
}
@keyframes qvin { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.qv__media { background: #FBF9F5; display: flex; align-items: center; justify-content: center; padding: 2rem; border-right: 1px solid var(--line-lt); }
.qv__media img { max-height: 320px; width: auto; object-fit: contain; }
.qv__body { padding: 2rem 2.1rem; overflow-y: auto; }
.qv__body h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.qv__spec { margin-top: 1.1rem; font-size: .86rem; }
.qv__spec th { width: 42%; padding: .5rem .7rem; text-align: left; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line-lt); }
.qv__spec td { padding: .5rem .7rem; border-bottom: 1px solid var(--line-lt); }
.qv__spec tr:last-child th, .qv__spec tr:last-child td { border-bottom: 0; }
.qv__actions { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1.5rem; }
.qv__close {
  position: absolute; top: 12px; right: 14px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%; border: 0;
  background: rgba(22,25,30,.08); color: var(--ink); font-size: 1.4rem; line-height: 1; cursor: pointer;
}
.qv__close:hover { background: rgba(22,25,30,.16); }

/* ---------- FAQ filter ---------- */
.faq-filter { margin-bottom: 1.6rem; }
.faq-filter input { width: 100%; padding: .8rem 1rem; font: inherit; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.faq-filter input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(250,170,24,.18); }
.faq[hidden] { display: none; }

/* ---------- copy to clipboard ---------- */
.copy {
  border: 0; background: transparent; cursor: pointer; padding: 0 0 0 .45rem;
  color: var(--ink-mute); font-size: .78rem; text-decoration: underline;
}
.copy:hover { color: var(--brand-dark); }

@media (max-width: 760px) {
  .qv__panel { grid-template-columns: 1fr; max-height: 92vh; }
  .qv__media { border-right: 0; border-bottom: 1px solid var(--line-lt); padding: 1.2rem; }
  .qv__media img { max-height: 190px; }
  .qv__body { padding: 1.4rem; }
  .totop { bottom: 130px; right: 14px; }
  .card__actions { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .qv__panel { animation: none; }
  .progress { display: none; }
}

/* ==========================================================================
   ONE CARD LANGUAGE
   --------------------------------------------------------------------------
   Every panel on the site was a plain white rectangle with a thin coloured
   edge, which reads as empty. From here every card shares the same
   construction, so the site is uniform and the cards carry some weight:

     surface   warm paper gradient rather than flat white
     corner    a soft wash of the card's accent colour in the top right
     edge      a hairline warm border, and a coloured spine on the left
     lift      the same shadow and travel on hover everywhere
     radius    14px everywhere

   The accent comes from --accent, which every card already sets from the
   four logo bracket colours.
   ========================================================================== */

:root {
  --radius: 14px;
  --card-surface: linear-gradient(158deg, #FFFDF9 0%, #FBF7F0 62%, #F7F2E9 100%);
  --card-line: #E6DFD3;
  --lift: 0 2px 3px rgba(22,25,30,.03), 0 14px 34px rgba(22,25,30,.10);
  --lift-hi: 0 3px 6px rgba(22,25,30,.05), 0 22px 52px rgba(22,25,30,.16);
}

/* the shared surface, applied to every panel type at once */
.feature,
.card,
.contact-card,
.dl,
.faq,
.hero-card,
.pane .tablewrap,
.enqbox {
  position: relative;
  background: var(--card-surface);
  border: 1px solid var(--card-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .24s cubic-bezier(.22,.68,.36,1),
              box-shadow .24s ease, border-color .24s ease;
}

/* the accent wash in the corner, the thing that stops them looking blank */
.feature::after,
.card::after,
.contact-card::after,
.dl::after {
  content: "";
  position: absolute; top: 0; right: 0; width: 62%; height: 58%;
  background: radial-gradient(120% 120% at 100% 0%,
              color-mix(in srgb, var(--accent, #FAAA18) 16%, transparent) 0%,
              transparent 68%);
  pointer-events: none; z-index: 0;
  transition: opacity .25s ease;
  opacity: .85;
}
.feature:hover::after,
.card:hover::after,
.dl:hover::after { opacity: 1; }

/* the coloured spine, replacing the thin bar each card used to draw itself */
.feature::before,
.contact-card::before,
.dl::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg,
              var(--accent, var(--brand)) 0%,
              color-mix(in srgb, var(--accent, #FAAA18) 35%, transparent) 100%);
  border-radius: 4px 0 0 4px;
  z-index: 1;
}

.feature:hover, .dl:hover, .card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lift-hi);
  border-color: color-mix(in srgb, var(--accent, #FAAA18) 45%, var(--card-line));
}
.contact-card:hover { box-shadow: var(--lift); }

/* ---------- category and service cards ---------- */
.feature { padding: 1.7rem 1.7rem 1.6rem 2rem; }
.feature > * { position: relative; z-index: 1; }
.feature h3 { font-size: 1.16rem; margin-bottom: .4rem; }
.feature p { font-size: .92rem; color: var(--ink-mid); }

/* the number becomes a proper design element instead of a small label */
.feature__num {
  position: absolute; top: .9rem; right: 1.3rem; z-index: 0;
  font-family: var(--serif); font-size: 3.4rem; font-weight: 600;
  line-height: 1; margin: 0;
  color: color-mix(in srgb, var(--accent, #FAAA18) 26%, transparent);
  transition: color .25s ease, transform .25s ease;
}
.feature:hover .feature__num {
  color: color-mix(in srgb, var(--accent, #FAAA18) 42%, transparent);
  transform: translateY(-2px);
}
.feature__count {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: .9rem; font-size: .78rem; font-weight: 600;
  color: var(--ink-mute);
}
.feature__count::after {
  content: "\2192"; color: var(--accent, var(--brand-dark));
  transition: transform .22s ease;
}
a.feature:hover .feature__count::after { transform: translateX(4px); }
a.feature:hover { text-decoration: none; }

/* ---------- product cards ---------- */
.card__link { position: relative; z-index: 1; }
.card__media {
  background:
    radial-gradient(80% 70% at 50% 15%, #FFFFFF 0%, #FDFBF7 55%, #F8F3EA 100%);
  border-bottom: 1px solid var(--line-lt);
}
.card__body { padding: 1.15rem 1.25rem 1.3rem; }
.card__brand {
  display: inline-block;
  background: color-mix(in srgb, var(--accent, #FAAA18) 14%, transparent);
  color: var(--ink);
  padding: .16rem .55rem; border-radius: 4px;
  font-size: .64rem; letter-spacing: .12em;
}
.card__title { font-size: 1.1rem; margin-top: .5rem; }
.card__specs li::before { background: var(--accent, var(--brand)); }
.card__actions { position: relative; z-index: 1; background: transparent; }
.card__quick, .card__add {
  background: color-mix(in srgb, var(--accent, #FAAA18) 8%, #FBF7F0);
  color: var(--ink);
}
.card__quick:hover, .card__add:hover {
  background: color-mix(in srgb, var(--accent, #FAAA18) 22%, #FBF7F0);
  color: var(--ink);
}

/* ---------- contact cards ---------- */
.contact-card { padding: 1.4rem 1.5rem 1.4rem 1.8rem; }
.contact-card > * { position: relative; z-index: 1; }
.contact-card b { color: var(--accent, var(--brand-dark)); }

/* ---------- downloads ---------- */
.dl { padding: 1.7rem 1.7rem 1.6rem 2rem; }
.dl > * { position: relative; z-index: 1; }

/* ---------- FAQ ---------- */
.faq { --accent: var(--brand); margin-bottom: .9rem; }
.faq summary { padding: 1.15rem 3.2rem 1.15rem 1.5rem; position: relative; z-index: 1; }
.faq summary::after {
  width: 26px; height: 26px; right: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand) 18%, transparent);
  font-size: 1.05rem;
}
.faq[open] { border-color: color-mix(in srgb, var(--brand) 45%, var(--card-line)); }
.faq__a { padding: .2rem 1.5rem 1.3rem; position: relative; z-index: 1; }

/* ---------- hero card and panes ---------- */
.hero-card .pad { position: relative; z-index: 1; }
.pane .tablewrap { background: var(--card-surface); }
table.spec tr:nth-child(odd) { background: rgba(255,255,255,.55); }

/* ---------- section headings get a small accent mark ---------- */
.section-head .eyebrow::before {
  content: ""; display: inline-block;
  width: 18px; height: 2px; background: var(--brand);
  vertical-align: middle; margin-right: .6rem; margin-bottom: .18rem;
}

/* ---------- category block heading on the products page ---------- */
.cat-head {
  background: var(--card-surface);
  border: 1px solid var(--card-line);
  border-left: 4px solid var(--accent, var(--brand));
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  align-items: baseline;
}
.cat-head .num {
  font-size: 1.05rem; font-weight: 600;
  color: var(--accent, var(--brand-dark));
}

/* ---------- older browsers without color-mix ---------- */
@supports not (background: color-mix(in srgb, red 10%, blue)) {
  .feature::after, .card::after, .contact-card::after, .dl::after {
    background: radial-gradient(120% 120% at 100% 0%, rgba(250,170,24,.14), transparent 68%);
  }
  .feature::before, .contact-card::before, .dl::before { background: var(--brand); }
  .feature__num { color: rgba(250,170,24,.32); }
  .card__brand { background: rgba(250,170,24,.14); }
  .card__quick, .card__add { background: #FBF7F0; }
}

/* ---------- refinements after seeing them together ---------- */

/* The brand chip is a flex child, so inline-block still stretched it to the
   full card width. It has to opt out of the stretch. */
.card__brand { align-self: flex-start; }

/* The corner wash was reading as pastel rather than premium. Same idea,
   about a third less colour, and the numeral pulled back with it. */
.feature::after,
.card::after,
.contact-card::after,
.dl::after {
  background: radial-gradient(120% 120% at 100% 0%,
              color-mix(in srgb, var(--accent, #FAAA18) 11%, transparent) 0%,
              transparent 70%);
}
.feature__num {
  font-size: 2.9rem; top: 1.1rem; right: 1.4rem;
  color: color-mix(in srgb, var(--accent, #FAAA18) 30%, transparent);
}
.feature:hover .feature__num {
  color: color-mix(in srgb, var(--accent, #FAAA18) 48%, transparent);
}
.card__brand { background: color-mix(in srgb, var(--accent, #FAAA18) 12%, transparent); }
