@import url("../fonts/fonts.css");

/* ==========================================================================
   Wesha Stones — brand system
   Palette, type and spacing follow wesha-brand-guidelines.html v1.0.
   Rules taken from the guidelines and enforced here:
     · weight range stops at Medium (500) — no bold anywhere
     · uppercase always carries wide tracking
     · Triesta is an accent and stays under ~10% of any layout
     · left-align by default
   ========================================================================== */

:root {
  --basalt:    #2B2723;
  --quarry:    #6E655C;
  --triesta:   #C3B0A1;
  --alabaster: #F5F1EA;
  --stratum:   #97897C;
  --sand:      #E4D7C7;
  --ochre:     #A87F52;

  --line:      #E2DACE;
  --line-soft: #EDE7DD;
  --paper:     #FFFFFF;
  --ink:       #2B2723;
  --ink-2:     #403934;

  --sans: Poppins, system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: Lora, Georgia, "Times New Roman", serif;

  --wrap: 1220px;
  --gap: 28px;
  --section: clamp(64px, 9vw, 120px);
  --radius: 2px;
}

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

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

body {
  margin: 0;
  background: var(--alabaster);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, canvas, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--basalt);
  outline-offset: 3px;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }
.wrap--narrow { max-width: 820px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--basalt); color: var(--alabaster); padding: 12px 20px;
}
.skip:focus { left: 0; }

/* ---------- type ---------------------------------------------------------- */

h1, h2, h3, h4 { font-weight: 300; margin: 0; letter-spacing: .02em; }

.display {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: .01em;
}
.h1 { font-size: clamp(32px, 4.6vw, 54px); line-height: 1.12; }
.h2 { font-size: clamp(26px, 3.2vw, 38px); line-height: 1.2; }
.h3 { font-size: clamp(19px, 2vw, 23px); line-height: 1.3; }

.eyebrow {
  font-size: 11px; font-weight: 400;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--quarry);
  margin: 0 0 18px;
}
.eyebrow--light { color: var(--triesta); }

.micro {
  font-size: 10.5px; font-weight: 400;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--quarry);
}

.lede {
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.72;
  color: var(--ink-2);
  max-width: 58ch;
}

p { margin: 0 0 18px; max-width: 66ch; color: var(--ink-2); }
p:last-child { margin-bottom: 0; }

.muted { color: var(--quarry); }
.small { font-size: 13.5px; line-height: 1.6; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- buttons -------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 30px;
  border: 1px solid var(--basalt);
  background: var(--basalt); color: var(--alabaster);
  font-size: 11px; font-weight: 400;
  letter-spacing: .24em; text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { background: transparent; color: var(--basalt); }
.btn--ghost { background: transparent; color: var(--basalt); }
.btn--ghost:hover { background: var(--basalt); color: var(--alabaster); }
.btn--light { background: var(--alabaster); border-color: var(--alabaster); color: var(--basalt); }
.btn--light:hover { background: transparent; color: var(--alabaster); }
.btn--outline-light { background: transparent; border-color: rgba(245,241,234,.45); color: var(--alabaster); }
.btn--outline-light:hover { background: var(--alabaster); color: var(--basalt); border-color: var(--alabaster); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--basalt);
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
  transition: border-color .25s ease, gap .25s ease;
}
.link-arrow::after { content: "→"; letter-spacing: 0; }
.link-arrow:hover { border-color: var(--basalt); gap: 16px; }

/* ---------- header --------------------------------------------------------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,241,234,.94);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 78px;
}
.brand { display: flex; align-items: center; }
.brand img { width: 148px; height: auto; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--quarry);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--basalt); border-bottom-color: var(--triesta); }
.nav .btn { padding: 12px 22px; }
.nav .btn:hover { border-bottom-color: var(--basalt); }

.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--line);
  width: 44px; height: 44px; border-radius: var(--radius);
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 18px; height: 1px; background: var(--basalt); content: "";
  position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ---------- hero ----------------------------------------------------------- */

.hero { position: relative; background: var(--basalt); color: var(--alabaster); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg canvas { width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(43,39,35,.94) 0%, rgba(43,39,35,.78) 46%, rgba(43,39,35,.42) 100%);
}
.hero__in { position: relative; padding: clamp(84px, 13vw, 168px) 0 clamp(64px, 9vw, 120px); }
.hero p { color: rgba(245,241,234,.82); }
.hero .display { color: var(--alabaster); max-width: 19ch; }
.hero__lede { max-width: 52ch; margin-top: 28px; font-family: var(--serif); font-size: clamp(17px,1.6vw,20px); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 44px; }
.hero__facts {
  display: flex; flex-wrap: wrap; gap: 0 56px;
  margin-top: clamp(48px, 7vw, 88px);
  padding-top: 28px;
  border-top: 1px solid rgba(245,241,234,.18);
}
.hero__fact { padding: 10px 0; }
.hero__fact b { display: block; font-weight: 300; font-size: 26px; letter-spacing: .04em; color: var(--alabaster); }
.hero__fact span { color: var(--triesta); font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; }

/* ---------- sections -------------------------------------------------------- */

.section { padding: var(--section) 0; }
.section + .section { border-top: 1px solid var(--line); }
.section--sand { background: var(--sand); border-top: 0; }
.section--paper { background: var(--paper); border-top: 0; }
.section--dark { background: var(--basalt); color: var(--alabaster); border-top: 0; }
.section--dark p { color: rgba(245,241,234,.78); }
.section--dark .h2, .section--dark .h1 { color: var(--alabaster); }

.section__head { max-width: 68ch; margin-bottom: clamp(36px, 5vw, 60px); }
.section__head p { margin-top: 20px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.split--wide { grid-template-columns: 1.05fr .95fr; }
.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.cols-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.cols-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }

/* ---------- category tiles --------------------------------------------------- */

.tile {
  display: block; position: relative; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius);
}
.tile__surface { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand); }
.tile__surface canvas { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .5s ease; }
.tile__surface.is-painted canvas, .is-painted > canvas { opacity: 1; }
.tile__surface::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(43,39,35,0) 45%, rgba(43,39,35,.55) 100%);
}
.tile__label {
  position: absolute; left: 24px; right: 24px; bottom: 20px; z-index: 2;
  color: var(--alabaster);
}
.tile__label .h3 { color: var(--alabaster); }
.tile__label span { color: var(--triesta); font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; }
.tile__body { padding: 26px 26px 30px; }
.tile__body p { font-size: 14.5px; margin-bottom: 20px; }
.tile:hover .tile__surface canvas { transform: scale(1.02); }
.tile__surface canvas { transition: opacity .5s ease, transform .8s ease; }

/* ---------- stone cards ------------------------------------------------------ */

.catalogue {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: var(--gap);
}
.stone-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.stone-card:hover {
  border-color: var(--triesta);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -24px rgba(43,39,35,.55);
}
.stone-card__surface {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  background: var(--sand);
}
.stone-card__surface canvas {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .45s ease;
}
.stone-card__surface.is-painted canvas { opacity: 1; }
.stone-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.stone-card__name { font-size: 19px; letter-spacing: .03em; }
.stone-card__meta { color: var(--quarry); font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; }
.stone-card__blurb { font-size: 14px; color: var(--ink-2); margin: 4px 0 0; }
.stone-card__foot {
  margin-top: auto; padding-top: 16px;
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--quarry);
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
}
.stone-card__foot > span:first-child {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0;
}
.stone-card__foot > span:last-child { flex: none; }
.stone-card:hover .stone-card__foot { color: var(--basalt); }

.chip {
  display: inline-block; width: 11px; height: 11px; border-radius: 50%;
  border: 1px solid rgba(43,39,35,.18);
  vertical-align: -1px; margin-right: 8px;
}

/* ---------- filters ----------------------------------------------------------- */

.filters { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; margin-bottom: 40px; }
.filters__row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; }
.filters__row + .filters__row { margin-top: 14px; }
.filters__label { font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--quarry); min-width: 74px; }
.pill {
  border: 1px solid var(--line); background: transparent;
  padding: 8px 16px; border-radius: 40px; cursor: pointer;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--quarry);
  transition: all .2s ease;
}
.pill:hover { border-color: var(--stratum); color: var(--basalt); }
.pill.is-active { background: var(--basalt); border-color: var(--basalt); color: var(--alabaster); }
.search {
  flex: 1; min-width: 200px;
  border: 1px solid var(--line); background: var(--paper);
  padding: 10px 16px; border-radius: 40px;
  font-family: var(--sans); font-weight: 300; font-size: 14px; color: var(--ink);
}
.search::placeholder { color: var(--stratum); }
.result-count { font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--quarry); }

/* ---------- 360 viewer --------------------------------------------------------- */

.s360 { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.s360__stage {
  position: relative; overflow: hidden; cursor: grab;
  background:
    radial-gradient(120% 90% at 50% 12%, #FFFFFF 0%, #F3EEE6 55%, #E7DFD3 100%);
}
.s360__stage.is-dragging { cursor: grabbing; }
.s360__canvas { width: 100%; height: 100%; display: block; touch-action: pan-y; }
.s360__hint {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(43,39,35,.82); color: var(--alabaster);
  padding: 8px 16px; border-radius: 40px;
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity .4s ease;
}
.s360__hint.is-gone { opacity: 0; }
.s360__hand { width: 16px; height: 1px; background: var(--triesta); position: relative; }
.s360__hand::before, .s360__hand::after {
  content: ""; position: absolute; top: -3px; width: 7px; height: 7px;
  border-top: 1px solid var(--triesta); border-right: 1px solid var(--triesta);
}
.s360__hand::before { left: -1px; transform: rotate(-135deg); }
.s360__hand::after { right: -1px; transform: rotate(45deg); }
.s360__bar {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; border-top: 1px solid var(--line);
}
.s360__btn {
  background: transparent; border: 1px solid var(--line); cursor: pointer;
  padding: 8px 16px; border-radius: 40px;
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--quarry);
  transition: all .2s ease;
}
.s360__btn:hover { border-color: var(--basalt); color: var(--basalt); }
.s360__readout { margin-left: auto; font-size: 10.5px; letter-spacing: .24em; color: var(--stratum); }

.finish-switch { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.finish-switch .pill.is-active { background: var(--triesta); border-color: var(--triesta); color: var(--basalt); }

/* ---------- close-up strip -------------------------------------------------------- */

.detail-strip {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
  aspect-ratio: 136 / 45;
}
.detail-strip canvas {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .5s ease;
}
.detail-strip.is-painted canvas { opacity: 1; }
.detail-strip::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 60px -30px rgba(43,39,35,.5);
}

/* ---------- stone detail --------------------------------------------------------- */

.stone-head { padding: clamp(40px, 6vw, 72px) 0 0; }
.breadcrumb { font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--quarry); margin-bottom: 26px; }
.breadcrumb a:hover { color: var(--basalt); }
.breadcrumb span { color: var(--stratum); margin: 0 10px; }

.stone-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 64px); align-items: start; }

.fact-list { border-top: 1px solid var(--line); margin: 0; }
.fact-list div { display: grid; grid-template-columns: 150px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.fact-list dt { font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--quarry); padding-top: 3px; }
.fact-list dd { margin: 0; font-size: 14.5px; color: var(--ink-2); }

.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table th, .spec-table td { text-align: left; padding: 13px 14px; border-bottom: 1px solid var(--line); }
.spec-table th { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--quarry); font-weight: 400; }
.spec-table tbody tr:nth-child(even) { background: rgba(228,215,199,.28); }
.spec-table td:last-child { color: var(--quarry); font-size: 12.5px; letter-spacing: .04em; white-space: nowrap; }

.notice {
  border-left: 2px solid var(--triesta);
  padding: 4px 0 4px 20px;
  color: var(--quarry);
  font-size: 13.5px; line-height: 1.6;
  max-width: 68ch;
}

.taglist { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; }
.taglist li {
  border: 1px solid var(--line); border-radius: 40px; padding: 7px 15px;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--quarry);
}

/* ---------- steps / features ------------------------------------------------------ */

.steps { counter-reset: step; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.step { background: var(--alabaster); padding: 32px 30px; }
.section--paper .step { background: var(--paper); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  display: block; font-size: 10.5px; letter-spacing: .28em; color: var(--triesta); margin-bottom: 16px;
}
.step h3 { font-size: 18px; margin-bottom: 10px; }
.step p { font-size: 14px; margin: 0; }

.feature { padding: 30px 0; border-top: 1px solid var(--line); }
.feature h3 { font-size: 18px; margin-bottom: 8px; }
.feature p { font-size: 14.5px; margin: 0; }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.stat b { display: block; font-weight: 300; font-size: clamp(30px, 3.4vw, 44px); letter-spacing: .02em; }
.stat span { font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--quarry); }
.section--dark .stat span { color: var(--triesta); }

/* ---------- forms -------------------------------------------------------------------- */

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--quarry); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-weight: 300; font-size: 15px; color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 15px;
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--stratum); outline: none; }
.field textarea { min-height: 130px; resize: vertical; }
.field small { color: var(--stratum); font-size: 12px; letter-spacing: .02em; }
.honey { position: absolute; left: -9999px; }
.form-status {
  margin-top: 20px; padding: 16px 20px;
  background: var(--sand); border-left: 2px solid var(--ochre);
  font-size: 14px; color: var(--ink-2);
}

.calc { background: var(--paper); border: 1px solid var(--line); padding: 30px; }
.calc__out { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line); }
.calc__out b { display: block; font-weight: 300; font-size: 34px; letter-spacing: .02em; }
.calc__out span { font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--quarry); }

/* ---------- cta band ------------------------------------------------------------------ */

.cta {
  background: var(--basalt); color: var(--alabaster);
  padding: clamp(56px, 8vw, 100px) 0;
}
.cta__in { display: flex; flex-wrap: wrap; gap: 32px; align-items: end; justify-content: space-between; }
.cta h2 { color: var(--alabaster); max-width: 18ch; }
.cta p { color: rgba(245,241,234,.78); max-width: 46ch; margin-top: 16px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- footer ---------------------------------------------------------------------- */

.site-footer { background: var(--basalt); color: rgba(245,241,234,.72); border-top: 1px solid rgba(245,241,234,.12); }
.site-footer a { color: rgba(245,241,234,.72); }
.site-footer a:hover { color: var(--alabaster); }
.site-footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding: clamp(52px, 7vw, 84px) 0 56px; }
.site-footer h4 { font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--triesta); margin-bottom: 18px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 14px; }
.site-footer img { width: 168px; margin-bottom: 22px; }
.site-footer p { color: rgba(245,241,234,.6); font-size: 14px; max-width: 34ch; }
.site-footer__bar {
  border-top: 1px solid rgba(245,241,234,.12);
  padding: 22px 0 30px;
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: rgba(245,241,234,.5);
}

/* ---------- utilities ------------------------------------------------------------------- */

.stack > * + * { margin-top: 18px; }
.stack-lg > * + * { margin-top: 34px; }
.mt-0 { margin-top: 0; }
.mt-lg { margin-top: clamp(32px, 5vw, 56px); }
[hidden] { display: none !important; }

.prose h3 { margin: 40px 0 14px; font-size: 20px; }
.prose ul { max-width: 66ch; color: var(--ink-2); padding-left: 20px; }
.prose li { margin-bottom: 10px; }

/* ---------- responsive ------------------------------------------------------------------ */

@media (max-width: 1040px) {
  .cols-4, .stat-row { grid-template-columns: repeat(2, 1fr); }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .stone-layout { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  .wrap { padding: 0 22px; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 78px 0 auto; z-index: 45;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--alabaster); border-bottom: 1px solid var(--line);
    padding: 12px 22px 26px;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { width: 100%; padding: 15px 0; border-bottom: 1px solid var(--line-soft); font-size: 12px; }
  .nav .btn { margin-top: 18px; width: 100%; justify-content: center; }
  .split, .split--wide, .cols-3, .cols-2, .form-grid { grid-template-columns: 1fr; }
  .hero__facts { gap: 0 32px; }
  .fact-list div { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 520px) {
  .s360__hint { font-size: 9px; letter-spacing: .18em; padding: 6px 12px; bottom: 10px; }
  .cols-4, .stat-row { grid-template-columns: 1fr; }
  .catalogue { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr; }
  .filters__label { min-width: 100%; }
}

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

@media print {
  .site-header, .site-footer, .s360__bar, .filters, .cta { display: none; }
  body { background: #fff; }
}
