/* ========================================================================
   Arch International — editorial interface system

   A calm, product-first monochrome layer: generous space, system typography,
   soft surfaces and one restrained Arch red accent. This file intentionally
   loads after site.css so the working Flask templates and interactions remain
   intact while every public and staff-facing page shares one visual language.
   ======================================================================== */

:root {
  --page: #ffffff;
  --surface: #ffffff;
  --surface-2: #f5f5f7;
  --surface-3: #ececee;
  --line: #d9d9dd;
  --line-soft: #e8e8ed;
  --ink: #1d1d1f;
  --ink-2: #6e6e73;
  --ink-3: #86868b;
  --brand: #c9252d;
  --brand-dark: #a51d24;
  --brand-deep: #1d1d1f;
  --brand-tint: #fff1f2;
  --brand-tint2: #f4cfd1;
  --amber: #c9252d;
  --amber-dark: #9d1f25;
  --amber-tint: #fff1f2;
  --good: #248a3d;
  --bad: #c9252d;
  --bad-tint: #fff1f2;
  --display: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --r: 24px;
  --r-sm: 14px;
  --shell: 1280px;
  --hair: 1px solid var(--line-soft);
  --lift: 0 10px 30px rgba(0, 0, 0, .06);
  --lift-2: 0 24px 70px rgba(0, 0, 0, .10);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

html { background: var(--surface-2); }
body {
  background: var(--page);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -.011em;
}
main { overflow: clip; }
a { color: inherit; }
a:hover { color: var(--brand); }
::selection { color: #fff; background: var(--brand); }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: 8px; }
.shell { max-width: var(--shell); padding-inline: 28px; }
.shell-narrow { max-width: 820px; }
.muted { color: var(--ink-2); }
.small { font-size: .875rem; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.h-hero { font-size: clamp(4rem, 7vw, 7.25rem); line-height: .92; letter-spacing: -.065em; }
.h-page { font-size: clamp(3rem, 6vw, 6rem); line-height: .96; letter-spacing: -.06em; }
.h-sect { font-size: clamp(2.35rem, 4.4vw, 4.5rem); line-height: 1; letter-spacing: -.055em; }
.h-card { font-size: 1.35rem; line-height: 1.15; letter-spacing: -.025em; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-family: var(--body);
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.lede {
  max-width: 66ch;
  color: var(--ink-2);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.55;
}
.section-intro { color: var(--ink-2); font-size: 1.05rem; line-height: 1.6; }
.sect-head {
  align-items: flex-end;
  margin-bottom: 42px;
  padding: 0;
  border: 0;
}
.sect-head-centered { align-items: flex-start; }
.sect-head-centered > div { max-width: 760px; }
.sect-head-centered > .section-intro { max-width: 440px; }
.band { padding: 104px 0; }
.band-white { background: #fff; }

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

.page-progress {
  height: 2px;
  background: var(--brand);
  box-shadow: none;
}
.topbar {
  background: var(--surface-2);
  color: var(--ink-2);
  font-size: .76rem;
  letter-spacing: 0;
}
.topbar-inner {
  min-height: 38px;
  padding: 7px 28px;
  flex-wrap: nowrap;
}
.topbar a { color: var(--ink); font-weight: 550; }
.topbar a:hover { color: var(--brand); }
.topbar-origin { font-weight: 550; color: var(--ink); }
.masthead {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}
.masthead.is-scrolled { box-shadow: 0 8px 28px rgba(0, 0, 0, .06); }
.masthead-inner { min-height: 72px; gap: 28px; padding: 10px 28px; }
.brand { gap: 11px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-badge,
.page-index .brand-badge {
  width: 38px;
  height: 38px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 2px solid #1677ff;
  border-radius: 50%;
  background: #fff;
  color: #1677ff;
  font-size: 1.35rem;
  font-weight: 750;
  line-height: 1;
  letter-spacing: -.05em;
  box-shadow: none;
}
.brand-name { font-size: 1rem; font-weight: 650; letter-spacing: -.025em; }
.brand-tag { margin-top: 2px; font-family: var(--body); font-size: .58rem; letter-spacing: .12em; }
.mainnav { gap: 2px; }
.mainnav a,
.page-index .mainnav a {
  padding: 9px 13px;
  border-radius: 999px;
  color: #3d3d3f;
  font-family: var(--body);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: -.01em;
  text-transform: none;
}
.mainnav a:hover,
.page-index .mainnav a:hover { color: #000; background: var(--surface-2); }
.mainnav a.is-on,
.page-index .mainnav a.is-on { color: #000; background: transparent; font-weight: 650; }
.mainnav .nav-cta,
.page-index .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 7px;
  padding-inline: 17px;
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}
.mainnav .nav-cta:hover,
.page-index .nav-cta:hover { color: #fff; background: var(--brand); border-color: var(--brand); }
.page-index .mainnav a.nav-cta { color: #fff; }
.page-index .mainnav a.nav-cta:hover { color: #fff; }
.nav-cta svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.7; }

/* Buttons and inputs ----------------------------------------------------- */

.btn {
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-family: var(--body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: -.01em;
  text-transform: none;
  transition: transform .25s var(--ease-out), background .2s ease,
              color .2s ease, border-color .2s ease, box-shadow .25s ease;
}
.btn:hover { color: #000; border-color: #a9a9ae; background: #fff; transform: translateY(-1px); }
.btn:active { transform: scale(.985); }
.btn-cta {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: none;
}
.btn-cta:hover { color: #fff; border-color: var(--brand); background: var(--brand); }
.btn-steel {
  color: #fff;
  border-color: #6e6e73;
  background: #6e6e73;
  box-shadow: none;
}
.btn-steel:hover { color: #fff; border-color: #55555a; background: #55555a; }
.btn-quiet { color: var(--ink); border-color: var(--line); background: transparent; }
.btn-quiet:hover { color: #000; border-color: #b4b4b8; background: #fff; }
.btn-ondark { color: #fff; border-color: #5b5b60; background: transparent; }
.btn-ondark:hover { color: #000; border-color: #fff; background: #fff; }
.btn-sm { min-height: 38px; padding: 8px 16px; font-size: .8rem; }
.btn-lg { min-height: 52px; padding: 15px 25px; }
.btn-danger { color: var(--brand); }
.btn-danger:hover { color: #fff; border-color: var(--brand); background: var(--brand); }
.btn-row { gap: 10px; }

.field { margin-bottom: 20px; }
.field > label {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
.field input, .field textarea, .field select,
.notes-cell textarea, .selectmini {
  min-height: 50px;
  padding: 13px 15px;
  border: 1px solid #c8c8cd;
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  box-shadow: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field textarea { min-height: 124px; }
.field input:focus, .field textarea:focus, .field select:focus,
.notes-cell textarea:focus, .selectmini:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(29, 29, 31, .08);
  outline: 0;
}
.field-bad input, .field-bad textarea, .field-bad select {
  border-color: var(--brand);
  background: var(--brand-tint);
}
.field-hint { color: var(--ink-3); font-size: .78rem; line-height: 1.45; }
.field-err { color: var(--brand); font-weight: 550; }
.formcard, .panel {
  border: 0;
  border-radius: var(--r);
  background: #fff;
  box-shadow: none;
}
.formcard { padding: 36px; }
.notice { border: 0; border-radius: 14px; background: var(--brand-tint); color: var(--ink); }
.notice-ok { background: #edf8ef; }

/* Homepage --------------------------------------------------------------- */

.page-index { background: #fff; }
.page-index .topbar { background: var(--surface-2); color: var(--ink-2); }
.page-index .topbar a { color: var(--ink); }
.page-index .topbar a:hover { color: var(--brand); }
.page-index .masthead { border-bottom-color: rgba(0, 0, 0, .06); background: rgba(255, 255, 255, .82); }
.page-index .hero-home {
  color: var(--ink);
  background: #fff;
}
.page-index .hero-home::before,
.page-index .hero-home::after,
.page-index .hero-grid,
.page-index .hero-glow { display: none; }
.page-index .hero-collage-home .hero-inner {
  min-height: 680px;
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  gap: 42px;
  align-items: start;
  padding-top: 36px;
  padding-bottom: 52px;
}
.page-index .hero-copy { max-width: 680px; }
.page-index .hero-brands {
  gap: 10px 18px;
  margin-bottom: 30px;
  color: var(--ink-2);
  font-family: var(--body);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .095em;
}
.page-index .hero-brands li::before { width: 4px; height: 4px; background: var(--brand); }
.page-index .hero-home .h-hero-typewriter {
  max-width: 720px;
  margin: 0 0 30px;
  font-size: clamp(4rem, 6.6vw, 7rem);
  line-height: .9;
  letter-spacing: -.07em;
}
.page-index .hero-heading-top { color: var(--ink); }
.page-index .hero-home .h-hero .typewriter-slot { color: var(--brand); }
.page-index .hero-quote {
  max-width: 590px;
  margin-bottom: 30px;
  padding-left: 0;
  border: 0;
  color: var(--ink-2);
  font-size: 1.08rem;
  line-height: 1.6;
}
.page-index .hero-copy .btn-cta { color: #fff; background: var(--ink); border-color: var(--ink); box-shadow: none; }
.page-index .hero-copy .btn-cta:hover { color: #fff; background: var(--brand); border-color: var(--brand); }
.page-index .hero-copy .btn-glass { color: var(--ink); border-color: var(--line); background: #fff; backdrop-filter: none; }
.page-index .hero-copy .btn-glass:hover { color: #fff; border-color: var(--ink); background: var(--ink); }
.page-index .hero-trust { margin-top: 28px; gap: 12px 22px; color: var(--ink-2); font-size: .78rem; }
.page-index .hero-trust b { color: var(--brand); }

.page-index .hero-collage { min-height: 610px; }
.page-index .collage-ring {
  width: 470px;
  height: 470px;
  border-color: rgba(0, 0, 0, .055);
  box-shadow: 0 0 0 72px rgba(0, 0, 0, .018), 0 0 0 144px rgba(0, 0, 0, .01);
}
.page-index .collage-card {
  border: 0;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .14);
  animation-duration: 9s;
}
.page-index .collage-media { background: var(--surface-2); }
.page-index .collage-card figcaption {
  min-height: 50px;
  padding: 10px 13px;
  color: var(--ink);
  font-size: .65rem;
  font-weight: 600;
}
.page-index .collage-card figcaption span { color: var(--brand); }
.page-index .collage-card-1 { left: 2%; top: 2%; width: 230px; }
.page-index .collage-card-2 { right: 1%; top: 10%; width: 196px; }
.page-index .collage-card-3 { left: 28%; top: 33%; width: 238px; }
.page-index .collage-card-4 { right: -2%; top: 51%; width: 205px; }
.page-index .collage-card-5 { left: 0; bottom: 1%; width: 194px; }
.page-index .collage-card-6 { right: 24%; bottom: -2%; width: 184px; }
.page-index .collage-note {
  min-width: 224px;
  padding: 13px 16px;
  border: 0;
  border-radius: 999px;
  color: #b8b8bd;
  background: rgba(29, 29, 31, .94);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .18);
}
.page-index .collage-note i { background: var(--brand); box-shadow: 0 0 0 5px rgba(201, 37, 45, .16); }

.page-index .stats-strip {
  width: calc(100% - 48px);
  max-width: 1440px;
  margin: 0 auto;
  border: 0;
  border-radius: 32px;
  background: var(--ink);
  color: #fff;
  box-shadow: none;
  overflow: hidden;
}
.page-index .stats-strip-inner { max-width: 1320px; }
.page-index .stats-strip-inner > div {
  min-height: 150px;
  padding: 34px 28px;
  border-color: #39393d;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.page-index .stats-strip-inner > div:first-child { border-left: 0; }
.page-index .stats-strip strong { color: #fff; font-size: 2.45rem; letter-spacing: -.04em; }
.page-index .stats-strip-inner > div:nth-child(2) strong { color: #ff6268; }
.page-index .stats-strip span { color: #aaaab0; font-size: .8rem; }

.page-index .category-section { padding: 124px 0; background: var(--surface-2); }
.page-index .category-section .eyebrow,
.page-index .featured-section .eyebrow { color: var(--brand); }
.page-index .category-section .h-sect,
.page-index .featured-section .h-sect { color: var(--ink); }
.tiles { grid-template-columns: repeat(3, 1fr); gap: 18px; }
.page-index .tile,
.tile {
  min-height: 260px;
  padding: 28px;
  border: 0;
  border-radius: 28px;
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}
.page-index .tile:hover,
.tile:hover { border: 0; box-shadow: 0 22px 55px rgba(0, 0, 0, .08); transform: translateY(-4px); }
.tile::before { display: none; }
.page-index .tile::after,
.tile::after { width: 90px; height: 90px; right: -34px; bottom: -34px; border-color: #e3e3e7; }
.tile-index { margin-bottom: 42px; color: var(--brand); }
.tile h3 { font-size: 1.45rem; letter-spacing: -.03em; }
.tile p { font-size: .92rem; line-height: 1.55; }
.tile-count { color: var(--brand); }

.page-index .company-story {
  padding: 128px 0;
  color: #fff;
  background: var(--ink);
}
.page-index .company-story::before { display: none; }
.company-story-grid { gap: 90px; }
.story-copy .h-sect { font-size: clamp(2.8rem, 5vw, 5rem); }
.story-copy > p:not(.eyebrow) { color: #aaaab0; font-size: 1.05rem; }
.page-index .story-copy .eyebrow,
.page-index .story-pillars article > span,
.page-index .text-link span { color: #ff6268; }
.story-pillars { gap: 12px; border: 0; }
.story-pillars article {
  min-height: 250px;
  padding: 30px;
  border: 0;
  border-radius: 24px;
  background: #2a2a2d;
}
.story-pillars h3 { margin-top: 54px; font-size: 1.3rem; }
.story-pillars p { color: #aaaab0; }
.page-index .featured-section { padding: 124px 0; background: #fff; }

/* Shared page heroes and catalogue -------------------------------------- */

.pagehead {
  padding: 92px 0 74px;
  border: 0;
  background: #fff;
}
.pagehead-inner { max-width: 1100px; }
.pagehead-centered { text-align: center; }
.pagehead-centered .pagehead-inner { display: grid; justify-items: center; }
.pagehead-centered .lede { margin-top: 22px !important; }
.crumbs {
  margin-bottom: 28px;
  color: var(--ink-3);
  font-family: var(--body);
  font-size: .74rem;
  font-weight: 550;
  letter-spacing: 0;
  text-transform: none;
}
.crumbs a { color: var(--ink-2); }
.pagehead-catalogue { padding-bottom: 58px; }
.pagehead-catalogue .h-page { max-width: 980px; }

.page-products .band { padding-top: 36px; }
.catalogue { grid-template-columns: 230px minmax(0, 1fr); gap: 38px; }
.sidebar {
  top: 106px;
  padding: 22px;
  border-radius: 24px;
  background: var(--surface-2);
}
.sidebar h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-family: var(--body);
  font-size: .75rem;
  font-weight: 650;
  letter-spacing: .08em;
}
.catlist { display: grid; gap: 3px; }
.catlist a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--ink-2);
  font-size: .83rem;
}
.catlist a:hover { color: var(--ink); background: #fff; }
.catlist a.is-on { color: #fff; background: var(--ink); }
.catlist a.is-on span { color: #cfcfd4; }
.catalogue-toolbar { margin-bottom: 28px; }
.searchbar { margin-bottom: 16px; }
.searchbar input {
  min-height: 54px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px 0 0 999px;
  background: var(--surface-2);
  font-size: 1rem;
}
.searchbar input:focus { border-color: #b8b8bd; box-shadow: inset 0 0 0 1px #b8b8bd; outline: 0; }
.searchbar .btn { border-radius: 0 999px 999px 0; }
.searchbar-enhanced .search-icon { left: 18px; color: var(--ink-3); }
.searchbar-enhanced .search-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.searchbar-enhanced input { padding-left: 48px; }
.resultline { margin: 18px 2px 0; color: var(--ink-3); font-family: var(--body); font-size: .8rem; letter-spacing: 0; }
.chiprow { gap: 8px; }
.chip { border-color: var(--line); border-radius: 999px; background: #fff; font-family: var(--body); letter-spacing: 0; text-transform: none; }
.chip.is-on { color: #fff; border-color: var(--ink); background: var(--ink); }

.grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.card,
.page-index .featured-section .card {
  border: 0;
  border-radius: 28px;
  background: var(--surface-2);
  box-shadow: none;
  overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.card:hover,
.page-index .featured-section .card:hover { border: 0; box-shadow: 0 24px 60px rgba(0, 0, 0, .10); transform: translateY(-5px); }
.card-media { background: var(--surface-2); }
.card-media img, .card-media svg { aspect-ratio: 1.12 / 1; object-fit: contain; }
.card-tag,
.page-index .featured-section .card-tag {
  left: 16px;
  top: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(29, 29, 31, .88);
  font-family: var(--body);
  font-size: .62rem;
  letter-spacing: .04em;
  backdrop-filter: blur(10px);
}
.card-body { gap: 12px; padding: 22px 22px 24px; }
.card-title { font-size: 1.35rem; }
.card-model,
.page-index .featured-section .card-model {
  padding: 5px 9px;
  border: 0;
  border-radius: 999px;
  color: var(--ink-2);
  background: #e7e7ea;
}
.card-sum { color: var(--ink-2); line-height: 1.5; }
.keyspecs { padding-top: 15px; border-color: #dddde1; }
.keyspecs > div:nth-child(n+3) { display: none; }
.keyspecs dd { font-family: var(--body); font-weight: 550; text-align: right; }
.card-foot { margin-top: 5px; }
.onreq,
.page-index .featured-section .onreq {
  padding: 5px 9px;
  border: 0;
  border-radius: 999px;
  color: var(--brand);
  background: var(--brand-tint);
}
.page-index .featured-section .btn-steel { color: #fff; border-color: var(--ink); background: var(--ink); }
.page-index .featured-section .btn-steel:hover { border-color: var(--brand); background: var(--brand); }
.empty {
  padding: 64px 30px;
  border: 0;
  border-radius: 28px;
  background: var(--surface-2);
}

/* Product detail --------------------------------------------------------- */

.product-intro { padding: 34px 0 112px; background: #fff; }
.product-crumbs { margin-bottom: 34px; }
.detail.product-hero { grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr); gap: 68px; align-items: start; }
.detail-media {
  border: 0;
  border-radius: 36px;
  background: var(--surface-2);
  box-shadow: none;
  overflow: hidden;
}
.detail-media img, .detail-media svg { width: 100%; aspect-ratio: 1.08 / 1; object-fit: contain; }
.photo-note { border: 0; color: var(--ink-3); background: transparent; }
.detail-copy { position: sticky; top: 120px; padding-top: 34px; }
.detail-copy .h-page { margin-bottom: 20px; font-size: clamp(3rem, 4.8vw, 5.25rem); }
.detail-copy .lede { margin-top: 22px; }
.detail-meta { margin-bottom: 4px; }
.product-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 32px 0 18px; }
.copy-ref {
  max-width: 460px;
  margin: 0 0 28px;
  padding: 13px 15px;
  border: 0;
  border-radius: 14px;
  background: var(--surface-2);
}
.copy-ref:hover { border: 0; background: #ececef; }
.copy-ref span, .copy-ref b, .copy-ref i { font-family: var(--body); }
.copy-ref i { color: var(--brand); }
.product-applications { padding-top: 8px; }
.product-applications .h-card { margin-bottom: 12px; font-size: 1rem; }
.applist { gap: 7px; }
.applist li { border: 0; border-radius: 999px; background: var(--surface-2); color: var(--ink-2); }
.product-data { padding: 112px 0; background: var(--surface-2); }
.product-info-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr); gap: 82px; align-items: start; }
.product-story { padding-top: 18px; }
.product-story .h-sect { max-width: 600px; margin-bottom: 28px; }
.product-story .prose { max-width: 680px; color: var(--ink-2); font-size: 1.05rem; line-height: 1.7; }
.product-caution { margin-top: 30px; padding: 18px 20px; border-radius: 16px; background: #fff; color: var(--ink-2); font-size: .85rem; line-height: 1.55; }
.specwrap { border: 0; border-radius: 28px; background: #fff; box-shadow: none; }
.specwrap-head { padding: 24px 26px; color: var(--ink); background: #fff; border-bottom: var(--hair); }
.specwrap-head h2 { color: var(--ink); font-size: 1.35rem; }
.specwrap-head span { color: var(--ink-3); background: var(--surface-2); }
.specsheet > div { padding: 16px 26px; border-color: var(--line-soft); }
.specsheet > div:nth-child(even) { background: #fafafa; }
.specsheet dt { color: var(--ink-2); }
.specsheet dd { color: var(--ink); font-family: var(--body); font-weight: 550; }
.quote-section { padding: 24px 0 112px; background: #fff; scroll-margin-top: 92px; }
.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(500px, 1.18fr);
  gap: 72px;
  align-items: start;
  width: calc(100% - 56px);
  padding: 74px;
  border-radius: 36px;
  background: var(--ink);
  color: #fff;
}
.quote-intro { padding-top: 14px; }
.quote-intro .eyebrow { color: #ff6268; }
.quote-intro .h-sect { color: #fff; }
.quote-intro > p:not(.eyebrow) { color: #aaaab0; font-size: 1.05rem; line-height: 1.65; }
.quote-promise { display: grid; grid-template-columns: 34px 1fr; gap: 18px 10px; margin-top: 38px; }
.quote-promise span { color: #ff6268; font-size: .7rem; font-weight: 650; letter-spacing: .08em; }
.quote-promise p { margin: 0; color: #aaaab0; font-size: .85rem; line-height: 1.5; }
.quote-promise strong { display: block; color: #fff; }
.askbox { margin: 0; padding: 36px; border: 0; border-radius: 28px; background: #fff; color: var(--ink); box-shadow: none; }
.askbox h2 { font-size: 1.75rem; letter-spacing: -.035em; }
.askbox > p { color: var(--ink-2); }
.related-section { padding-top: 104px; }

/* About ------------------------------------------------------------------ */

.pagehead-about { padding-bottom: 96px; }
.pagehead-about .h-page { max-width: 980px; }
.pagehead-about .lede { max-width: 760px; }
.page-about > main > .band:first-of-type { padding-top: 24px; }
.about-layout { grid-template-columns: minmax(0, 1fr) 390px; gap: 84px; }
.about-story { max-width: 760px; }
.about-story h2 { margin-top: 46px; font-size: 1.65rem; }
.about-story p { color: var(--ink-2); font-size: 1.04rem; line-height: 1.75; }
.about-dropcap { color: var(--ink) !important; font-size: 1.35rem !important; line-height: 1.58 !important; }
.about-dropcap::first-letter { float: none; margin: 0; color: inherit; font: inherit; }
.about-facts { top: 110px; border: 0; border-radius: 28px; background: var(--surface-2); }
.about-facts-head { padding: 22px 24px; color: var(--ink); background: transparent; border-bottom: var(--hair); }
.about-facts-head span { font-family: var(--body); font-size: 1rem; letter-spacing: -.02em; text-transform: none; }
.about-facts-head strong { color: var(--brand); font-family: var(--body); }
.about-facts .specsheet > div { padding-inline: 24px; background: transparent; }
.about-facts-actions { padding: 20px 24px 24px; }
.work-section { background: var(--surface-2); }
.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 48px 0 0; padding: 0; list-style: none; }
.work-grid li { min-height: 270px; padding: 26px; border-radius: 26px; background: #fff; }
.work-grid span { color: var(--brand); font-size: .7rem; font-weight: 650; letter-spacing: .1em; }
.work-grid h3 { margin: 82px 0 10px; font-size: 1.35rem; }
.work-grid p { margin: 0; color: var(--ink-2); font-size: .9rem; line-height: 1.55; }
.values-section { padding: 120px 0; }
.values-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 50px; border: 0; }
.values-grid li {
  min-height: 180px;
  padding: 24px;
  border: 0;
  border-radius: 24px;
  background: var(--surface-2);
}
.values-grid li strong { font-family: var(--body); font-size: 1.05rem; letter-spacing: -.02em; text-transform: none; }
.values-grid li span { color: var(--brand); font-family: var(--body); }
.values-grid li:hover { color: var(--ink); background: #ececef; }
.values-grid li:hover span { color: var(--brand); }

/* Contact and enquiry ---------------------------------------------------- */

.service-pagehead .h-page { max-width: 970px; }
.service-pagehead .lede { max-width: 760px; }
.contact-method-section { padding: 12px 0 36px; }
.contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.contact-method {
  position: relative;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
  border-radius: 26px;
  background: var(--surface-2);
  color: var(--ink);
  text-decoration: none;
  transition: transform .35s var(--ease-out), background .25s ease;
}
.contact-method:hover { color: var(--ink); background: #ececef; transform: translateY(-4px); }
.contact-method-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: #fff; }
.contact-method-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.contact-method > span:nth-child(2) { display: grid; gap: 5px; margin-top: auto; }
.contact-method small { color: var(--brand); font-size: .7rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.contact-method strong { font-size: 1.15rem; letter-spacing: -.02em; }
.contact-method em { color: var(--ink-2); font-size: .78rem; font-style: normal; }
.contact-method > b { position: absolute; align-self: flex-end; font-size: 1rem; }
.service-section { background: var(--surface-2); }
.page-contact .service-section { padding-top: 48px; }
.service-layout { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr); gap: 22px; align-items: start; }
.service-aside, .service-card { border-radius: 30px; background: #fff; }
.service-aside { position: sticky; top: 110px; padding: 38px; }
.service-aside .h-sect { font-size: clamp(2rem, 3.2vw, 3.2rem); }
.service-card { padding: 44px; }
.service-card .h-sect { margin-bottom: 14px; font-size: clamp(2.4rem, 4vw, 4rem); }
.form-intro { max-width: 580px; margin: 0 0 34px; color: var(--ink-2); font-size: 1rem; line-height: 1.6; }
.contact-facts { margin: 32px 0; }
.contact-facts > div { padding: 17px 0; border-top: var(--hair); }
.contact-facts dt { margin-bottom: 5px; color: var(--ink-3); font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; }
.contact-facts dd { margin: 0; color: var(--ink); font-size: .92rem; line-height: 1.5; }
.service-tip { display: grid; gap: 6px; margin: 0; padding: 18px; border-radius: 16px; background: var(--surface-2); color: var(--ink-2); font-size: .82rem; line-height: 1.5; }
.service-tip strong { color: var(--ink); }
.enquiry-steps-section { padding: 10px 0 36px; }
.next-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 0; padding: 0; list-style: none; }
.next-steps li { display: grid; grid-template-columns: 34px 1fr; gap: 14px; min-height: 176px; padding: 26px; border-radius: 24px; background: var(--surface-2); }
.next-steps span { color: var(--brand); font-size: .68rem; font-weight: 650; letter-spacing: .09em; }
.next-steps strong { display: block; margin-bottom: 8px; font-size: 1.05rem; }
.next-steps p { margin: 0; color: var(--ink-2); font-size: .86rem; line-height: 1.5; }
.enquiry-form-section { padding-top: 48px; }
.detail-checklist { display: grid; gap: 0; margin: 30px 0; padding: 0; list-style: none; }
.detail-checklist li { position: relative; padding: 15px 0 15px 28px; border-top: var(--hair); color: var(--ink-2); font-size: .88rem; line-height: 1.45; }
.detail-checklist li::before { content: ""; position: absolute; left: 2px; top: 21px; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }
.direct-contact { display: grid; gap: 5px; margin: 28px 0 18px; }
.direct-contact p, .direct-contact small { margin: 0; color: var(--ink-3); font-size: .78rem; }
.direct-contact a { font-size: 1.35rem; font-weight: 600; text-decoration: none; }
.direct-contact a:hover { color: var(--brand); }

/* CTA and footer --------------------------------------------------------- */

.ctaband { padding: 24px 0 96px; border: 0; background: #fff; }
.ctaband .ctaband-card {
  width: calc(100% - 48px);
  max-width: 1400px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  padding: 72px;
  border-radius: 34px;
  background: var(--ink);
}
.ctaband .eyebrow { color: #ff6268; }
.ctaband h2 { max-width: 800px; color: #fff; }
.ctaband p:not(.eyebrow) { max-width: 720px; color: #aaaab0; font-size: 1rem; line-height: 1.6; }
.ctaband .btn-cta { color: #000; border-color: #fff; background: #fff; }
.ctaband .btn-cta:hover { color: #fff; border-color: var(--brand); background: var(--brand); }
.footer,
.page-index .footer {
  padding: 58px 0 22px;
  background: var(--surface-2);
  color: var(--ink-2);
}
.footer-inner { grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 46px; }
.footer h2,
.page-index .footer h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.footer p { font-size: .82rem; line-height: 1.55; }
.footer-name { color: var(--ink) !important; font-family: var(--body); font-size: 1.15rem !important; }
.footer-intro > p:not(.footer-name) { max-width: 360px; }
.footer a,
.page-index .footer a { color: var(--ink-2); font-size: .82rem; }
.footer a:hover,
.page-index .footer a:hover { color: var(--ink); text-decoration: underline; }
.footer-contact { display: inline-block; margin-top: 8px; color: var(--ink) !important; font-size: 1rem !important; font-weight: 600; }
.colophon,
.page-index .colophon {
  margin-top: 40px;
  padding-top: 18px;
  border-top-color: #d8d8dc;
  color: var(--ink-3);
  font-family: var(--body);
  font-size: .68rem;
  letter-spacing: 0;
  text-transform: none;
}
.whatsapp-float { right: max(20px, env(safe-area-inset-right)); bottom: max(20px, env(safe-area-inset-bottom)); }

/* Success, error and authentication ------------------------------------- */

.state-page, .auth-page {
  min-height: calc(100vh - 110px);
  display: grid;
  align-items: center;
  padding: 88px 0 104px;
  background: var(--surface-2);
}
.state-card, .auth-card {
  position: relative;
  padding: 62px;
  border-radius: 32px;
  background: #fff;
  text-align: center;
  overflow: hidden;
}
.state-card .h-page, .auth-card .h-page { margin-bottom: 18px; font-size: clamp(3rem, 6vw, 5.6rem); }
.state-card .lede { margin-inline: auto; }
.state-icon, .auth-mark {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
}
.state-icon svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.state-icon-success { background: #248a3d; }
.reference-pill {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  gap: 12px;
  align-items: center;
  margin: 30px auto 12px;
  padding: 12px 16px;
  border: 0;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--ink);
  cursor: pointer;
}
.reference-pill span { color: var(--ink-3); font-size: .7rem; }
.reference-pill strong { font-family: var(--mono); font-size: .82rem; }
.reference-pill i { color: var(--brand); font-size: .7rem; font-style: normal; font-weight: 650; }
.state-note { margin: 0; color: var(--ink-3); font-size: .78rem; }
.state-actions { justify-content: center; margin-top: 30px; }
.error-number { display: block; margin: -34px 0 -12px; color: #ededf0; font-size: clamp(7rem, 18vw, 12rem); font-weight: 700; line-height: 1; letter-spacing: -.08em; }
.state-not-found .eyebrow { position: relative; }
.auth-page { text-align: left; }
.auth-card { max-width: 560px; margin-inline: auto; text-align: left; }
.auth-mark { margin-left: 0; font-size: 1.5rem; font-weight: 700; }
.auth-card .h-page { font-size: clamp(3rem, 6vw, 4.6rem); }
.auth-intro { margin: -6px 0 30px; color: var(--ink-2); }
.auth-note { margin-top: 18px !important; text-align: center; }
.page-login .topbar, .page-login .whatsapp-float { display: none; }

/* Admin ------------------------------------------------------------------ */

.page-admin { background: var(--surface-2); }
.page-admin .topbar, .page-admin .whatsapp-float, .page-admin .footer { display: none; }
.page-admin .admin-shell { max-width: 1500px; }
.admin-pagehead { padding: 58px 0 34px; background: var(--surface-2); }
.admin-pagehead .h-page { font-size: clamp(3rem, 5vw, 5rem); }
.page-admin main > .band { padding: 30px 0 70px; background: var(--surface-2); }
.page-admin main > .band-white { padding-top: 60px; }
.statcards { gap: 14px; margin-bottom: 54px; }
.stat {
  min-height: 150px;
  padding: 24px;
  border: 0;
  border-radius: 24px;
  background: #fff;
}
.stat-hot { background: var(--ink); color: #fff; }
.stat dt { color: var(--ink-3); font-family: var(--body); letter-spacing: .04em; }
.stat-hot dt { color: #aaaab0; }
.stat dd { font-family: var(--body); font-size: 2.8rem; letter-spacing: -.055em; }
.page-admin .sect-head { margin-top: 30px; }
.pillnav { gap: 7px; margin-bottom: 22px; }
.pillnav a { border: 0; border-radius: 999px; background: #fff; font-family: var(--body); letter-spacing: 0; text-transform: none; }
.pillnav a:hover { color: var(--ink); border: 0; background: #ececef; }
.pillnav a.is-on { color: #fff; border: 0; background: var(--ink); }
.page-admin .panel { border-radius: 24px; }
.page-admin .scroller { overflow: auto; }
.page-admin .rows { min-width: 1120px; }
.rows th, .rows td { padding: 15px 16px; }
.rows thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: var(--ink-2);
  background: #fafafa;
  font-family: var(--body);
  font-size: .68rem;
  letter-spacing: .06em;
}
.rows tbody tr:hover td { background: #fafafa; }
.selectmini { min-height: 40px; padding: 8px 10px; }
.notes-cell textarea { min-height: 72px; }
.page-admin details.editor {
  margin: 12px;
  border: 0;
  border-radius: 18px;
  background: var(--surface-2);
  overflow: hidden;
}
.page-admin details.editor > summary { min-height: 64px; padding: 16px 20px; }
.page-admin details.editor > summary:hover { background: #ececef; }
.page-admin details.editor[open] > summary { background: var(--ink); color: #fff; }
.page-admin details.editor[open] > summary .muted { color: #b9b9be; }
.editor-body { padding: 24px; }
.photo-manager { padding: 22px; border: 0; border-radius: 18px; background: #fff; }
.photo-thumb { border: 0; border-radius: 14px; background: var(--surface-2); }
.page-admin .catalogue { grid-template-columns: 320px minmax(0, 1fr); gap: 24px; }
.page-admin .catalogue .sidebar { display: block; position: static; }
.admin-upload-field {
  padding: 18px;
  border: 1px dashed #c9c9ce;
  border-radius: 16px;
  background: var(--surface-2);
}
.category-help { margin: -4px 0 14px; line-height: 1.45; }
.category-manager { display: grid; gap: 8px; margin-bottom: 18px; }
.category-editor {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: #fff;
}
.category-editor > summary {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  cursor: pointer;
  list-style: none;
}
.category-editor > summary::-webkit-details-marker { display: none; }
.category-editor > summary::after { content: "+"; color: var(--ink-3); font-weight: 600; }
.category-editor[open] > summary::after { content: "−"; }
.category-editor > summary > span {
  margin-left: auto;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--ink-3);
  font-size: .7rem;
}
.category-editor form { padding: 12px; border-top: var(--hair); }
.category-editor .field { margin-bottom: 10px; }
.category-actions { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }

/* Motion ----------------------------------------------------------------- */

[data-reveal] { opacity: 1; transform: none; }
[data-reveal].will-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
[data-reveal].will-reveal.is-visible { opacity: 1; transform: none; }
.tiles [data-reveal].will-reveal:nth-child(2),
.work-grid [data-reveal].will-reveal:nth-child(2),
.values-grid [data-reveal].will-reveal:nth-child(2) { transition-delay: .06s; }
.tiles [data-reveal].will-reveal:nth-child(3),
.work-grid [data-reveal].will-reveal:nth-child(3),
.values-grid [data-reveal].will-reveal:nth-child(3) { transition-delay: .12s; }
.work-grid [data-reveal].will-reveal:nth-child(4),
.values-grid [data-reveal].will-reveal:nth-child(4) { transition-delay: .18s; }

/* Responsive ------------------------------------------------------------- */

@media (max-width: 1160px) {
  .page-index .hero-collage-home .hero-inner { grid-template-columns: 1fr; gap: 34px; padding-top: 72px; }
  .page-index .hero-copy { max-width: 840px; }
  .page-index .hero-home .h-hero-typewriter { max-width: 900px; font-size: clamp(4.4rem, 9vw, 7rem); }
  .page-index .hero-collage { width: min(760px, 100%); margin: 0 auto; }
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .company-story-grid { grid-template-columns: 1fr; gap: 54px; }
  .story-copy { position: static; max-width: 800px; }
  .work-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .detail.product-hero, .product-info-grid { gap: 48px; }
  .quote-layout { grid-template-columns: 1fr 1.1fr; gap: 42px; padding: 56px; }
}

@media (max-width: 940px) {
  .topbar-origin { display: none; }
  .topbar-inner { justify-content: center; text-align: center; }
  .catalogue { grid-template-columns: 1fr; }
  .page-admin .catalogue { grid-template-columns: 1fr; }
  .page-products .sidebar { display: none; }
  .chiprow { display: flex; }
  .detail.product-hero, .product-info-grid, .quote-layout, .about-layout, .service-layout {
    grid-template-columns: 1fr;
  }
  .detail-copy, .about-facts, .service-aside { position: static; }
  .detail-copy { padding-top: 12px; }
  .product-info-grid { gap: 48px; }
  .quote-layout { gap: 46px; }
  .about-layout { gap: 46px; }
  .contact-methods, .next-steps { grid-template-columns: 1fr; }
  .contact-method { min-height: 170px; }
  .next-steps li { min-height: 138px; }
  .ctaband .ctaband-card { grid-template-columns: 1fr; padding: 56px; }
  .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-column:last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .shell { padding-inline: 20px; }
  .topbar { display: none; }
  .masthead { position: sticky; }
  .masthead-inner { min-height: 64px; padding: 9px 20px; }
  .navtoggle {
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-family: var(--body);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
  }
  .mainnav,
  .page-index .mainnav {
    margin: 0 -20px -9px;
    padding: 12px 20px 20px;
    border-top: var(--hair);
    background: rgba(255, 255, 255, .98);
  }
  .mainnav a, .page-index .mainnav a { padding: 12px 14px; font-size: .95rem; }
  .mainnav .nav-cta, .page-index .nav-cta { justify-content: center; margin: 6px 0 0; }
  .band { padding: 76px 0; }
  .pagehead { padding: 66px 0 54px; }
  .h-page { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .h-sect { font-size: clamp(2.25rem, 10vw, 3.5rem); }
  .page-index .hero-collage-home .hero-inner { min-height: auto; padding: 58px 20px 70px; }
  .page-index .hero-home .h-hero-typewriter { font-size: clamp(3.2rem, 14.2vw, 5rem); }
  .page-index .hero-brands { gap: 9px 14px; }
  .page-index .hero-collage { min-height: 490px; }
  .page-index .collage-card { border-radius: 20px; }
  .page-index .collage-card-1 { width: 184px; }
  .page-index .collage-card-2 { width: 158px; }
  .page-index .collage-card-3 { width: 192px; }
  .page-index .collage-card-4 { width: 160px; }
  .page-index .collage-card-5 { width: 154px; }
  .page-index .collage-card-6 { width: 146px; }
  .page-index .stats-strip { width: calc(100% - 24px); border-radius: 26px; }
  .page-index .stats-strip-inner { grid-template-columns: 1fr 1fr; padding: 0; }
  .page-index .stats-strip-inner > div { min-height: 132px; padding: 24px 20px; border-color: #39393d; }
  .page-index .stats-strip-inner > div:nth-child(3),
  .page-index .stats-strip-inner > div:nth-child(4) { border-top: 1px solid #39393d; }
  .page-index .category-section, .page-index .featured-section, .page-index .company-story { padding: 88px 0; }
  .sect-head, .sect-head-centered { align-items: flex-start; }
  .tiles, .grid, .work-grid, .values-grid { grid-template-columns: 1fr; }
  .story-pillars { grid-template-columns: 1fr; }
  .quote-layout { width: calc(100% - 24px); padding: 38px 24px; border-radius: 28px; }
  .service-card, .service-aside { padding: 28px; }
  .ctaband { padding-bottom: 68px; }
  .ctaband .ctaband-card { width: calc(100% - 24px); padding: 42px 24px; border-radius: 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; padding-inline: 20px; }
  .footer-intro { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
  .state-card, .auth-card { padding: 42px 24px; border-radius: 26px; }
  .page-admin .rows-stack { min-width: 0; }
  .page-admin .rows-stack thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }
  .page-admin .rows-stack tbody { display: grid; gap: 14px; padding: 14px; }
  .page-admin .rows-stack tbody tr { border: 0; border-radius: 18px; background: var(--surface-2); }
  .page-admin .rows-stack td { padding: 6px 0; }
}

@media (max-width: 540px) {
  .brand-name { font-size: .94rem; }
  .brand-badge { width: 36px; height: 36px; }
  .page-index .hero-brands { font-size: .6rem; }
  .page-index .hero-quote { font-size: .98rem; }
  .page-index .hero-copy .btn-row { display: grid; }
  .page-index .hero-copy .btn { width: 100%; }
  .page-index .hero-collage { min-height: 400px; }
  .page-index .collage-ring { width: 280px; height: 280px; }
  .page-index .collage-card-1 { left: 0; width: 148px; }
  .page-index .collage-card-2 { right: 0; width: 128px; }
  .page-index .collage-card-3 { left: 24%; width: 154px; }
  .page-index .collage-card-4 { right: -2%; width: 124px; }
  .page-index .collage-card-5 { left: 0; width: 122px; }
  .page-index .collage-card-6 { right: 25%; width: 112px; }
  .page-index .collage-note { display: none; }
  .page-index .stats-strip-inner { grid-template-columns: 1fr; }
  .page-index .stats-strip-inner > div { min-height: 116px; border-right: 0; border-top: 1px solid #39393d; }
  .page-index .stats-strip-inner > div:first-child { border-top: 0; }
  .page-index .stats-strip strong { font-size: 2rem; }
  .tile { min-height: 230px; }
  .detail.product-hero { gap: 34px; }
  .detail-copy .h-page { font-size: clamp(2.8rem, 13vw, 4rem); }
  .product-actions { display: grid; }
  .product-actions .btn { width: 100%; }
  .specsheet > div { grid-template-columns: 1fr; gap: 5px; }
  .askbox { padding: 26px 20px; }
  .pair { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-intro, .footer-column:last-child { grid-column: auto; }
  .state-actions { display: grid; }
  .reference-pill { grid-template-columns: 1fr; justify-items: center; border-radius: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal].will-reveal { opacity: 1; transform: none; }
  .collage-card, .typewriter-word::after { animation: none !important; }
  .typewriter-word::after { opacity: 0; }
}

@supports not ((backdrop-filter: blur(20px)) or (-webkit-backdrop-filter: blur(20px))) {
  .masthead { background: rgba(255, 255, 255, .97); }
}

@media print {
  .masthead { position: static; background: #fff; }
  .whatsapp-float, .page-progress { display: none !important; }
}

/* Homepage refinements: requested brand, grid collage and credibility row. */
.page-index .brand-badge {
  border-color: #1677ff;
  background: #fff;
  color: #1677ff;
  box-shadow: none;
}

.page-index .mainnav a.nav-cta,
.page-index .mainnav a.nav-cta:visited {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}
.page-index .mainnav a.nav-cta:hover,
.page-index .mainnav a.nav-cta:focus-visible {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}

.page-index .hero-collage {
  min-height: auto;
  display: grid;
  align-content: center;
  isolation: isolate;
  transform: none !important;
}
.page-index .collage-ring { display: none; }
.page-index .collage-set {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .55s ease, visibility 0s linear .75s;
}
.page-index .collage-set.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.page-index .collage-card,
.page-index .collage-card-1,
.page-index .collage-card-2,
.page-index .collage-card-3,
.page-index .collage-card-4,
.page-index .collage-card-5,
.page-index .collage-card-6 {
  position: relative;
  inset: auto;
  width: auto;
  margin: 0;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .08);
  animation: none;
  opacity: 0;
  transform: translateY(12px) scale(.985);
  transition: opacity .55s ease, transform .7s var(--ease-out);
  transition-delay: calc(var(--collage-index) * 85ms);
}
.page-index .collage-set.is-active .collage-card {
  opacity: 1;
  transform: none;
}
.page-index .collage-media { aspect-ratio: 1 / 1; }
.page-index .collage-card figcaption {
  min-height: 66px;
  align-items: flex-start;
  padding: 11px 12px;
}
.page-index .collage-note {
  position: static;
  grid-column: 1 / -1;
  justify-self: end;
  min-width: 0;
  padding: 6px 2px;
  border: 0;
  border-radius: 0;
  color: var(--ink-2);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.page-index .collage-note b { color: var(--ink); }

.page-index .stats-strip {
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .06);
}
.page-index .stats-strip-inner {
  max-width: 1320px;
  grid-template-columns: repeat(3, 1fr);
}
.page-index .stats-strip-inner > div {
  min-height: 140px;
  border: 0;
  border-left: 1px solid var(--line-soft);
}
.page-index .stats-strip-inner > div:first-child { border-left: 0; }
.page-index .stats-strip strong,
.page-index .stats-strip-inner > div:nth-child(2) strong {
  color: var(--ink);
  font-size: clamp(1.75rem, 3vw, 2.3rem);
}
.page-index .stats-strip-inner > div:nth-child(2) strong { color: var(--brand); }
.page-index .stats-strip span { color: var(--ink-2); font-size: .82rem; }

.page-index .featured-section .grid { align-items: stretch; }
.page-index .featured-section .product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.page-index .featured-section .card-body { flex: 1; }

@media (max-width: 760px) {
  .page-index .collage-set { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .page-index .collage-card,
  .page-index .collage-card-1,
  .page-index .collage-card-2,
  .page-index .collage-card-3,
  .page-index .collage-card-4,
  .page-index .collage-card-5,
  .page-index .collage-card-6 { width: auto; }
  .page-index .stats-strip-inner { grid-template-columns: repeat(3, 1fr); }
  .page-index .stats-strip-inner > div { min-height: 122px; border: 0; border-left: 1px solid var(--line-soft); }
  .page-index .stats-strip-inner > div:first-child { border-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .page-index .collage-set { display: none; }
  .page-index .collage-set.is-active {
    display: grid;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .page-index .collage-set.is-active .collage-card {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 540px) {
  .page-index .collage-card figcaption { min-height: 58px; font-size: .55rem; }
  .page-index .collage-note { display: flex; justify-self: start; }
  .page-index .stats-strip-inner { grid-template-columns: 1fr; }
  .page-index .stats-strip-inner > div { min-height: 104px; border: 0; border-top: 1px solid var(--line-soft); }
  .page-index .stats-strip-inner > div:first-child { border-top: 0; }
}
