/* =============================================================================
   Supreme Tech — stylesheet
   Palette derived from the supplied Supreme Tech / KIQA catalogue artwork
   (plum, blush, cream, KIQA red) and lifted to a semi-bright range.
   ========================================================================== */

:root {
  /* Semi-bright brand palette */
  --berry:        #b3325f;
  --berry-bright: #d94a7c;
  --berry-deep:   #7c1f42;
  --plum:         #4a2038;
  --ink:          #2e1220;
  --ink-soft:     #6b4a5a;

  --teal:         #17a9a0;
  --teal-bright:  #2fc8bd;
  --amber:        #f2a03d;
  --coral:        #ef6a4c;

  --cream:        #fdf6f1;
  --cream-2:      #f8ebe4;
  --blush:        #f6ddd7;
  --blush-2:      #efc9c2;
  --white:        #ffffff;
  --line:         #ecd7d0;

  --radius-s: 8px;
  --radius:   14px;
  --radius-l: 24px;

  --shadow-s: 0 1px 2px rgba(46, 18, 32, .06), 0 2px 8px rgba(46, 18, 32, .05);
  --shadow-m: 0 4px 12px rgba(46, 18, 32, .07), 0 12px 32px rgba(46, 18, 32, .08);
  --shadow-l: 0 12px 28px rgba(46, 18, 32, .10), 0 32px 64px rgba(46, 18, 32, .10);

  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;

  --wrap: 1280px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 116px;
}

/* ----------------------------------------------------------- base --------- */
*, *::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);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
/* images that fill a fixed-ratio box must ignore the auto height above */
.cat-card .thumb img, .prod-card .thumb img, .pd-gallery .main-img img, .pd-thumbs img { height: 100%; }
a { color: var(--berry); text-decoration: none; }
a:hover { color: var(--berry-deep); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; color: var(--plum); letter-spacing: -.01em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p  { margin: 0 0 1em; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, 900px); margin-inline: auto; }

.eyebrow {
  font-size: .74rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--berry);
  margin: 0 0 .9rem; display: flex; align-items: center; gap: .7rem;
}
.eyebrow::after { content: ""; flex: 0 0 42px; height: 2px; background: linear-gradient(90deg, var(--berry), transparent); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { content: ""; flex: 0 0 42px; height: 2px; background: linear-gradient(270deg, var(--berry), transparent); }

.lede { font-size: 1.08rem; color: var(--ink-soft); max-width: 62ch; }

section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section-head { margin-bottom: 2.75rem; }
.section-head.center { text-align: center; }
.section-head.center .lede { margin-inline: auto; }

/* ---------------------------------------------------------- buttons ------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.6rem; border-radius: 999px; border: 1.5px solid transparent;
  font-size: .93rem; font-weight: 600; letter-spacing: .01em; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  font-family: inherit;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--berry); color: #fff; box-shadow: 0 4px 14px rgba(179, 50, 95, .28); }
.btn-primary:hover { background: var(--berry-bright); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(179, 50, 95, .34); }
.btn-ghost { border-color: var(--blush-2); color: var(--plum); background: transparent; }
.btn-ghost:hover { border-color: var(--berry); color: var(--berry); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--plum); box-shadow: var(--shadow-s); }
.btn-light:hover { color: var(--berry); transform: translateY(-2px); box-shadow: var(--shadow-m); }
.btn-teal { background: var(--teal); color: #fff; box-shadow: 0 4px 14px rgba(23, 169, 160, .3); }
.btn-teal:hover { background: var(--teal-bright); color: #fff; transform: translateY(-2px); }
.btn-sm { padding: .6rem 1.15rem; font-size: .85rem; }

/* ----------------------------------------------------------- header ------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(253, 246, 241, .86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 2px 18px rgba(46, 18, 32, .08); background: rgba(253, 246, 241, .95); }
.site-header .wrap { display: flex; align-items: center; gap: 1.5rem; min-height: 74px; }

.brand { display: flex; align-items: center; gap: .7rem; flex: 0 0 auto; }
.brand svg { width: 44px; height: auto; }
.brand .brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand .brand-name { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; color: var(--plum); letter-spacing: .01em; }
.brand .brand-sub { font-size: .58rem; letter-spacing: .3em; text-transform: uppercase; color: var(--berry); margin-top: .3rem; }

.main-nav { margin-left: auto; display: flex; align-items: center; gap: .35rem; }
.main-nav a {
  position: relative; padding: .55rem .85rem; border-radius: var(--radius-s);
  font-size: .92rem; font-weight: 500; color: var(--plum);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.main-nav a::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .28rem; height: 2px;
  background: var(--berry); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.main-nav a:hover { color: var(--berry); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--berry); }

.header-actions { display: flex; align-items: center; gap: .6rem; }

.nav-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line);
  background: #fff; border-radius: var(--radius-s); cursor: pointer;
  align-items: center; justify-content: center; padding: 0;
}
.nav-toggle span { display: block; width: 18px; height: 1.8px; background: var(--plum); position: relative; transition: background .2s; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.8px; background: var(--plum);
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* ------------------------------------------------------------- hero ------- */
.hero { position: relative; padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3.5rem, 7vw, 5.5rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 520px at 12% -10%, #ffe6de 0%, transparent 62%),
    radial-gradient(760px 480px at 96% 8%, #d9f4f1 0%, transparent 60%),
    var(--cream);
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(2px); opacity: .5; z-index: -1;
  animation: float 16s ease-in-out infinite;
}
.hero-blob.b1 { width: 320px; height: 320px; background: #f7d9d2; top: -90px; right: 8%; }
.hero-blob.b2 { width: 190px; height: 190px; background: #cdece9; bottom: -50px; left: 4%; animation-delay: -6s; }
@keyframes float { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-22px) } }

.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero h1 { margin-bottom: .55rem; }
.hero h1 .accent { color: inherit; font-style: italic; }
.hero .lede { font-size: 1.13rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.9rem; }

.hero-figure { position: relative; }
.hero-figure img { border-radius: var(--radius-l); box-shadow: var(--shadow-l); width: 100%; aspect-ratio: 3 / 2; object-fit: cover; height: auto; }
.photo-frame { border-radius: var(--radius-l); box-shadow: var(--shadow-l); width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: -22px; left: -18px; background: #fff; border-radius: var(--radius);
  padding: .95rem 1.3rem; box-shadow: var(--shadow-m); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: .1rem; max-width: 74%;
}
.hero-badge strong { font-family: var(--serif); color: var(--plum); font-size: 1.02rem; }
.hero-badge span { font-size: .78rem; color: var(--ink-soft); line-height: 1.45; }

.hero-stats { display: flex; gap: 2.4rem; margin-top: 2.6rem; flex-wrap: wrap; }
.hero-stat strong { display: block; font-family: var(--serif); font-size: 1.85rem; color: var(--berry); line-height: 1; }
.hero-stat span { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }

/* ------------------------------------------------------ brand strip ------- */
.brandstrip { background: var(--white); border-block: 1px solid var(--line); padding: 1.6rem 0; }
.brandstrip .wrap { display: flex; align-items: center; justify-content: center; gap: clamp(1.5rem, 5vw, 4rem); flex-wrap: wrap; }
.brandstrip .label { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }
.brandstrip .strip-name { font-family: var(--serif); font-size: 1.22rem; color: var(--plum); letter-spacing: .01em; }
.brandstrip img { height: 46px; width: auto; object-fit: contain; opacity: .9; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.brandstrip img.wide { height: 40px; }
.brandstrip img:hover { opacity: 1; transform: translateY(-2px); }

/* --------------------------------------------------------- category ------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 1.5rem; }
.cat-card {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .38s var(--ease), box-shadow .38s var(--ease), border-color .38s var(--ease);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); border-color: var(--blush-2); }
.cat-card .thumb { aspect-ratio: 4 / 3; overflow: hidden; background: #fff; }
.cat-card .thumb img { width: 100%; height: 100%; object-fit: contain; padding: 8%; transition: transform .55s var(--ease); }
.cat-card:hover .thumb img { transform: scale(1.06); }
.cat-card .body { padding: 1.15rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.cat-card h3 { margin-bottom: .35rem; font-size: 1.12rem; }
.cat-card p { font-size: .87rem; color: var(--ink-soft); margin-bottom: 1rem; flex: 1; }
.cat-card .go { font-size: .82rem; font-weight: 600; color: var(--berry); display: inline-flex; align-items: center; gap: .4rem; }
.cat-card .go svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.cat-card:hover .go svg { transform: translateX(4px); }
.cat-card .count { position: absolute; top: .85rem; right: .85rem; background: var(--blush); color: var(--berry-deep); font-size: .72rem; font-weight: 700; padding: .22rem .6rem; border-radius: 999px; }

/* ---------------------------------------------------- product cards ------- */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(238px, 1fr)); gap: 1.35rem; }

.prod-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); border-color: var(--blush-2); }
.prod-card .thumb { aspect-ratio: 4 / 3; background: #fff; overflow: hidden; position: relative; }
.prod-card .thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6%; transition: transform .5s var(--ease); }
.prod-card:hover .thumb img { transform: scale(1.07); }
.prod-card .body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.prod-card .cat-label { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); font-weight: 700; margin-bottom: .4rem; }
.prod-card h3 { font-size: 1.02rem; margin-bottom: .5rem; line-height: 1.3; }
.prod-card h3 a { color: inherit; }
.prod-card h3 a:hover { color: var(--berry); }
.prod-card .mini-specs { list-style: none; margin: 0 0 1rem; padding: 0; font-size: .8rem; color: var(--ink-soft); flex: 1; }
.prod-card .mini-specs li { display: flex; gap: .4rem; padding: .12rem 0; }
.prod-card .mini-specs dt { font-weight: 600; color: var(--plum); flex: 0 0 auto; }
.prod-card .view {
  font-size: .82rem; font-weight: 600; color: var(--berry);
  display: inline-flex; align-items: center; gap: .4rem; align-self: flex-start;
}
.prod-card .view svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.prod-card:hover .view svg { transform: translateX(4px); }

/* ------------------------------------------------------- catalogue -------- */
.cat-layout { display: grid; grid-template-columns: 268px 1fr; gap: 2.4rem; align-items: start; }

.filters {
  position: sticky; top: calc(74px + 1.2rem); background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.35rem 1.4rem; box-shadow: var(--shadow-s);
}
.filters h3 { font-size: 1.05rem; margin-bottom: 1rem; display: flex; align-items: center; justify-content: space-between; }
.filter-group { border-top: 1px solid var(--line); padding: 1rem 0 .35rem; }
.filter-group:first-of-type { border-top: 0; padding-top: 0; }
.filter-group > h4 {
  font-size: .74rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-soft);
  margin-bottom: .7rem; font-family: var(--sans); font-weight: 700;
}
.filter-opt { display: flex; align-items: center; gap: .6rem; padding: .3rem 0; cursor: pointer; font-size: .89rem; color: var(--plum); }
.filter-opt input { appearance: none; width: 17px; height: 17px; border: 1.5px solid var(--blush-2); border-radius: 5px; cursor: pointer; flex: 0 0 auto; position: relative; transition: background .2s, border-color .2s; }
.filter-opt input:checked { background: var(--berry); border-color: var(--berry); }
.filter-opt input:checked::after { content: ""; position: absolute; left: 5px; top: 1.5px; width: 4px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.filter-opt:hover { color: var(--berry); }
.filter-opt .n { margin-left: auto; font-size: .76rem; color: var(--ink-soft); }
.filters .clear { width: 100%; margin-top: 1rem; }

.cat-toolbar {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
  margin-bottom: 1.6rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--line);
}
.search-field { position: relative; flex: 1 1 300px; }
.search-field svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; color: var(--ink-soft); pointer-events: none; }
.search-field input {
  width: 100%; padding: .8rem 1rem .8rem 2.75rem; border: 1px solid var(--line);
  border-radius: 999px; background: #fff; font-family: inherit; font-size: .92rem; color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.search-field input:focus { outline: none; border-color: var(--berry); box-shadow: 0 0 0 3px rgba(179, 50, 95, .12); }
.select-field select {
  padding: .8rem 2.4rem .8rem 1.1rem; border: 1px solid var(--line); border-radius: 999px;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b4a5a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 1rem center / 15px;
  appearance: none; font-family: inherit; font-size: .9rem; color: var(--plum); cursor: pointer;
}
.select-field select:focus { outline: none; border-color: var(--berry); }
.result-count { font-size: .87rem; color: var(--ink-soft); }
.result-count b { color: var(--plum); }

.active-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.3rem; }
.chip {
  display: inline-flex; align-items: center; gap: .45rem; background: var(--blush);
  color: var(--berry-deep); font-size: .8rem; font-weight: 600; padding: .32rem .5rem .32rem .8rem;
  border-radius: 999px; border: 1px solid var(--blush-2);
}
.chip button { background: none; border: 0; cursor: pointer; color: inherit; line-height: 1; font-size: 1.05rem; padding: 0 .2rem; opacity: .7; }
.chip button:hover { opacity: 1; }

.empty-state { text-align: center; padding: 4rem 1rem; color: var(--ink-soft); }
.empty-state h3 { color: var(--plum); }

.filters-mobile-btn { display: none; }

/* ---------------------------------------------------- product page -------- */
.breadcrumb { font-size: .82rem; color: var(--ink-soft); padding: 1.3rem 0 0; }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--berry); }
.breadcrumb span { margin: 0 .45rem; opacity: .5; }

.pd-layout { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; padding-top: 2rem; }

.pd-gallery .main-img {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l);
  aspect-ratio: 4 / 3; overflow: hidden; box-shadow: var(--shadow-s);
}
.pd-gallery .main-img img { width: 100%; height: 100%; object-fit: contain; padding: 5%; transition: opacity .3s var(--ease); }
.pd-thumbs { display: flex; gap: .7rem; margin-top: .85rem; flex-wrap: wrap; }
.pd-thumbs button {
  width: 78px; aspect-ratio: 1; padding: 5px; background: #fff; border: 1.5px solid var(--line);
  border-radius: var(--radius-s); cursor: pointer; transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.pd-thumbs button img { width: 100%; height: 100%; object-fit: contain; }
.pd-thumbs button:hover { transform: translateY(-2px); border-color: var(--blush-2); }
.pd-thumbs button.active { border-color: var(--berry); }

.pd-info .tag-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.pd-tag { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px; }
.pd-tag.cat { background: #d9f4f1; color: #0d6f68; }
.pd-info h1 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: .6rem; }
.pd-desc { color: var(--ink-soft); font-size: 1rem; }
.pd-desc .attrib { display: block; font-size: .78rem; color: var(--ink-soft); opacity: .8; margin-top: .35rem; font-style: italic; }

.spec-table { width: 100%; border-collapse: collapse; margin: 1.6rem 0; font-size: .93rem; }
.spec-table caption { text-align: left; font-family: var(--serif); font-size: 1.15rem; color: var(--plum); padding-bottom: .7rem; }
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table tr:last-child { border-bottom: 0; }
.spec-table th { text-align: left; padding: .78rem 1rem .78rem 0; font-weight: 600; color: var(--plum); width: 42%; vertical-align: top; }
.spec-table td { padding: .78rem 0; color: var(--ink-soft); }

.pd-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.8rem 0 1.4rem; }

.source-note {
  background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1rem 1.2rem; font-size: .82rem; color: var(--ink-soft);
}
.source-note strong { color: var(--plum); display: block; margin-bottom: .3rem; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; }
.source-note ul { margin: 0; padding-left: 1.1rem; }

/* ------------------------------------------------------------ misc -------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }

.region-band { background: var(--plum); color: #f6e7e1; }
.region-band h2 { color: #fff; }
.region-band .lede { color: #e3c9c1; }
.region-list { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.region-list span {
  border: 1px solid rgba(255,255,255,.24); border-radius: 999px; padding: .45rem 1.1rem;
  font-size: .87rem; background: rgba(255,255,255,.06);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.region-list span:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; }
.info-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.info-card .ico {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--blush); color: var(--berry-deep); margin-bottom: 1rem;
}
.info-card .ico svg { width: 21px; height: 21px; }
.info-card h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.info-card p, .info-card address { font-size: .89rem; color: var(--ink-soft); font-style: normal; margin: 0; }
.info-card a { color: var(--berry); word-break: break-word; }
.phone-rows { display: flex; flex-direction: column; gap: .3rem; }
.phone-rows a { display: block; }

.cta-band {
  background: linear-gradient(120deg, var(--berry) 0%, var(--berry-deep) 55%, var(--plum) 100%);
  color: #fff; border-radius: var(--radius-l); padding: clamp(2.2rem, 5vw, 3.6rem);
  text-align: center; box-shadow: var(--shadow-l);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.86); max-width: 56ch; margin-inline: auto; }
.cta-band .btns { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.7rem; }

/* ------------------------------------------------------------ form -------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-s); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--plum); margin-bottom: .4rem; }
.field label .opt { font-weight: 500; color: var(--ink-soft); font-size: .78rem; }
.field select:invalid { color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-s);
  font-family: inherit; font-size: .93rem; color: var(--ink); background: var(--cream);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--berry); background: #fff; box-shadow: 0 0 0 3px rgba(179, 50, 95, .1);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-note { font-size: .8rem; color: var(--ink-soft); margin-top: .9rem; }
.form-note a { white-space: nowrap; }

/* ---------------------------------------------------------- footer -------- */
.site-footer { background: var(--plum); color: #e6d0c9; padding: clamp(2.8rem, 5vw, 4rem) 0 0; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2.4rem; padding-bottom: 2.6rem; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 700; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .55rem; font-size: .88rem; }
.site-footer a { color: #e6d0c9; }
.site-footer a:hover { color: #fff; }
.site-footer .brand .brand-name { color: #fff; }
.site-footer .brand .brand-sub { color: var(--blush-2); }
.footer-about p { font-size: .88rem; color: #d5b9b1; margin-top: 1rem; max-width: 34ch; }
.footer-contact address { font-style: normal; font-size: .88rem; line-height: 1.7; color: #e6d0c9; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.13); padding: 1.3rem 0;
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-size: .8rem; color: #c9a99f;
}

/* ------------------------------------------------------- animations ------- */
/* Content is visible by default; the entrance animation is applied only when
   JavaScript is running, so nothing can ever be left permanently hidden. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s } .reveal.d2 { transition-delay: .14s }
.reveal.d3 { transition-delay: .21s } .reveal.d4 { transition-delay: .28s }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------------ responsive -------- */
@media (max-width: 1080px) {
  .cat-layout { grid-template-columns: 1fr; }
  .filters {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 88vw); z-index: 90; border-radius: 0;
    transform: translateX(102%); transition: transform .4s var(--ease); overflow-y: auto;
    box-shadow: var(--shadow-l); padding-top: 1.6rem;
  }
  .filters.open { transform: none; }
  .filters .close-filters { display: inline-flex; }
  .filters-mobile-btn { display: inline-flex; }
  .filter-backdrop { position: fixed; inset: 0; background: rgba(46,18,32,.4); z-index: 85; opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); }
  .filter-backdrop.on { opacity: 1; pointer-events: auto; }
}

@media (max-width: 920px) {
  .hero-grid, .split, .pd-layout { grid-template-columns: 1fr; }
  .hero-figure { order: -1; }
  .hero-badge { position: static; margin-top: 1rem; max-width: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw); background: var(--cream);
    flex-direction: column; align-items: stretch; gap: .2rem; padding: 5.5rem 1.4rem 2rem;
    transform: translateX(102%); transition: transform .38s var(--ease); z-index: 70;
    box-shadow: var(--shadow-l); border-left: 1px solid var(--line);
  }
  .main-nav.open { transform: none; }
  .main-nav a { padding: .85rem .9rem; font-size: 1rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .main-nav a::after { display: none; }
  .nav-toggle { display: inline-flex; z-index: 75; margin-left: auto; }
  .header-actions .btn { display: none; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(46,18,32,.4); z-index: 65; opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); }
  .nav-backdrop.on { opacity: 1; pointer-events: auto; }
}

@media (max-width: 640px) {
  .prod-grid { grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); gap: .9rem; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: .9rem; }
  .cat-card .body { padding: .9rem 1rem 1.1rem; }
  .cat-card p { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .hero-stats { gap: 1.4rem; }
  .prod-card .mini-specs { display: none; }
}
