/* ============================================================
   昆明君睿可商贸有限公司 — "Swatch Book / Dye Lot" design
   Deep moss black, sage + chalk accents, Rozha One display,
   swatch-fan logo, raw-edge swatch cards, dye-lot numbers
   ============================================================ */

:root {
  --bg: #0e100d;
  --bg2: #12140f;
  --panel: #171a14;
  --panel-hi: #1e2218;
  --edge: #343b2c;
  --edge-soft: #1a1d15;
  --sg: #a3b18a;
  --sg-hi: #c2d3a8;
  --sg-deep: #5f6e4b;
  --ck: #ded7c4;
  --ck-deep: #847e6e;
  --txt: #f2f0e9;
  --sub: #a3a49c;
  --dim: #5f6258;
  --disp: "Rozha One", Georgia, serif;
  --body-f: "Schibsted Grotesk", "Segoe UI", Arial, sans-serif;
  --mono: "Cousine", "Consolas", monospace;
  --head-h: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--sub);
  font-family: var(--body-f);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--sg); color: var(--bg); }

a { color: var(--sg); text-decoration: none; }
a:hover { color: var(--sg-hi); }

h1, h2, h3, h4 {
  font-family: var(--disp);
  color: var(--txt);
  font-weight: 400;
  line-height: 1.15;
}

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

.k-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: var(--sg);
}
.k-label.ck { color: var(--ck); }

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

.jhead {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--head-h);
  z-index: 300;
  background: var(--bg);
  border-bottom: 1px solid var(--edge-soft);
}

.jhead .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.jlogo { display: flex; align-items: center; gap: 14px; }

/* swatch fan logo — three fanned chips */
.jlogo-fan {
  width: 46px; height: 46px;
  position: relative;
}

.jlogo-fan i {
  position: absolute;
  bottom: 6px; left: 50%;
  width: 12px; height: 30px;
  border-radius: 3px;
  transform-origin: bottom center;
}

.jlogo-fan i:nth-child(1) { background: var(--ck-deep); transform: translateX(-50%) rotate(-26deg); }
.jlogo-fan i:nth-child(2) { background: var(--sg); transform: translateX(-50%); }
.jlogo-fan i:nth-child(3) { background: var(--sg-deep); transform: translateX(-50%) rotate(26deg); }

.jlogo-name {
  font-family: var(--disp);
  font-size: 20px;
  color: var(--txt);
  line-height: 1.15;
}

.jlogo-name small {
  display: block;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--dim);
  margin-top: 4px;
  text-transform: uppercase;
}

.jnav { display: flex; align-items: center; gap: 4px; }

.jnav a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--sub);
  padding: 10px 14px;
  transition: color .2s;
}

.jnav a:hover { color: var(--txt); }
.jnav a.active { color: var(--sg); }

.jnav .sw-cta {
  color: var(--bg) !important;
  background: var(--sg);
  font-weight: 700;
  margin-left: 10px;
  padding: 12px 22px;
  border-radius: 6px;
}

.jnav .sw-cta:hover { background: var(--sg-hi); }

.burger {
  display: none;
  background: none;
  border: 1px solid var(--edge);
  color: var(--txt);
  width: 44px; height: 44px;
  font-size: 18px;
  cursor: pointer;
}

.m-nav {
  display: none;
  position: fixed;
  top: var(--head-h);
  left: 0; right: 0;
  z-index: 290;
  background: var(--bg2);
  border-bottom: 1px solid var(--edge);
  padding: 8px 24px 22px;
}

.m-nav.open { display: block; }

.m-nav a {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sub);
  padding: 14px 0;
  border-bottom: 1px solid var(--edge-soft);
}
.m-nav a.active { color: var(--sg); }

main { padding-top: var(--head-h); }

/* ---------------- Hero — swatch book ---------------- */

.hero {
  position: relative;
  border-bottom: 1px solid var(--edge-soft);
  overflow: hidden;
}

/* swatch grid right side — scattered chips */
.hero::before {
  content: "";
  position: absolute;
  right: -20px; top: 0; bottom: 0;
  width: 460px;
  background-image:
    radial-gradient(circle, var(--edge) 1.5px, transparent 2px),
    linear-gradient(var(--edge-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--edge-soft) 1px, transparent 1px);
  background-size: 60px 60px, 60px 60px, 60px 60px;
  border-left: 1px solid var(--edge-soft);
  pointer-events: none;
}

/* dye-lot diagonal band */
.hero::after {
  content: "DYE LOTS · SWATCH BOOK · WHOLESALE";
  position: absolute;
  right: 30px; top: 50%;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--sg-deep);
  white-space: nowrap;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 108px 0 88px;
  max-width: 700px;
}

.hero .j-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.hero .j-eyebrow::before {
  content: "";
  width: 30px; height: 20px;
  background: var(--sg);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  border-radius: 3px;
}

.hero h1 { font-size: clamp(48px, 6.4vw, 88px); }
.hero h1 em { font-style: normal; color: var(--sg); }
.hero h1 .c { color: var(--ck); }

.hero .lede { margin-top: 28px; font-size: 17px; max-width: 580px; }

.hero-cta { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background .2s, color .2s, border-color .2s;
}

.btn-fill { background: var(--sg); color: var(--bg); }
.btn-fill:hover { background: var(--sg-hi); color: var(--bg); }
.btn-line { border: 1px solid var(--edge); color: var(--txt); }
.btn-line:hover { border-color: var(--sg); color: var(--sg); }

/* swatch card — book page with punched edge */

.swatchcard {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--edge);
  margin-top: 52px;
  max-width: 560px;
  border-radius: 0 10px 10px 0;
}

/* binder holes on left edge */
.swatchcard::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 12px;
  background-image: radial-gradient(circle, var(--bg) 3px, transparent 4px);
  background-size: 12px 40px;
  background-repeat: repeat-y;
  border-right: 1px dashed var(--edge);
}

.swatchcard .sw-head {
  padding: 20px 30px 14px 34px;
  border-bottom: 1px solid var(--edge);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--ck);
  display: flex;
  justify-content: space-between;
}

.swatchcard .sw-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 30px 13px 34px;
  border-bottom: 1px solid var(--edge-soft);
  font-size: 14px;
}

.swatchcard .sw-row:last-child { border-bottom: 0; }

.swatchcard .sw-row .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--dim);
  padding-top: 3px;
  white-space: nowrap;
}

.swatchcard .sw-row .v { color: var(--txt); text-align: right; }

/* dye strip */
.dye-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--edge);
  background: var(--bg2);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.dye-strip .dy {
  padding: 20px 14px;
  text-align: center;
  border-right: 1px solid var(--edge-soft);
  position: relative;
}

.dye-strip .dy::before {
  content: "";
  display: block;
  width: 26px; height: 12px;
  margin: 0 auto 10px;
  border-radius: 3px;
}

.dye-strip .dy:nth-child(1)::before { background: var(--sg); }
.dye-strip .dy:nth-child(2)::before { background: var(--sg-deep); }
.dye-strip .dy:nth-child(3)::before { background: var(--ck); }
.dye-strip .dy:nth-child(4)::before { background: var(--ck-deep); }
.dye-strip .dy:nth-child(5)::before { background: var(--sg-hi); }

.dye-strip .dy:last-child { border-right: 0; }

.dye-strip .dy b {
  display: block;
  font-family: var(--disp);
  font-size: 16px;
  color: var(--txt);
}

.dye-strip .dy span {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--dim);
}

/* ---------------- Sections ---------------- */

.section { padding: 96px 0; border-bottom: 1px solid var(--edge-soft); }

.sec-chip {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.sec-chip::before {
  content: "";
  width: 18px; height: 18px;
  background: var(--sg);
  border-radius: 4px;
}

.sec-chip::after { content: ""; flex: 1; border-top: 1px dashed var(--edge-soft); height: 0; }

.sec-head { margin-bottom: 56px; }
.sec-head h2 { font-size: clamp(34px, 4.6vw, 56px); }
.sec-head h2 em { font-style: normal; color: var(--sg); }
.sec-head h2 .c { color: var(--ck); }
.sec-head .sub { margin-top: 18px; max-width: 620px; font-size: 16px; }

/* ---------------- Swatch cards ---------------- */

.chip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cp {
  border: 1px solid var(--edge);
  background: var(--panel);
  padding: 34px 32px 36px;
  transition: transform .25s, border-color .25s, background .25s;
  position: relative;
  border-radius: 8px;
}

/* swatch band top */
.cp::before {
  content: "";
  display: block;
  width: 100%; height: 14px;
  background: var(--sg-deep);
  border-radius: 4px;
  margin-bottom: 22px;
}

.cp.ck::before { background: var(--ck-deep); }

.cp:hover { transform: translateY(-5px); border-color: var(--sg-deep); background: var(--panel-hi); }

.cp .c-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--sg);
  padding: 6px 12px;
  font-weight: 700;
  border-radius: 4px;
}

.cp .c-tag.ck { background: var(--ck); }

.cp h3 { font-size: 23px; margin: 18px 0 10px; }
.cp p { font-size: 14px; }

.cp .c-line {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--edge);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: var(--dim);
  line-height: 2;
}

/* ---------------- Lot rows ---------------- */

.lots { border-top: 1px solid var(--edge); }

.lt-row {
  display: grid;
  grid-template-columns: 140px 1.2fr 1.7fr;
  gap: 36px;
  padding: 30px 8px;
  border-bottom: 1px solid var(--edge-soft);
  align-items: baseline;
  position: relative;
}

.lt-row::before {
  content: "";
  position: absolute;
  left: -12px; top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 10px;
  background: var(--sg);
  border-radius: 3px;
}

.lt-row .l-code {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--sg);
}

.lt-row .l-code.ck { color: var(--ck); }

.lt-row h3 { font-size: 23px; }
.lt-row p { font-size: 14.5px; }

/* ---------------- Split ---------------- */

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.duo h2 { font-size: clamp(32px, 4vw, 50px); }
.duo h2 em { font-style: normal; color: var(--sg); }
.duo h2 .c { color: var(--ck); }
.duo > div > p { margin-top: 18px; font-size: 15.5px; }

/* Book card */

.bookcard {
  border: 1px solid var(--edge);
  background: var(--panel);
  border-radius: 0 10px 10px 0;
  position: relative;
}

.bookcard::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 12px;
  background-image: radial-gradient(circle, var(--bg) 3px, transparent 4px);
  background-size: 12px 40px;
  background-repeat: repeat-y;
  border-right: 1px dashed var(--edge);
}

.bookcard .bk-head {
  padding: 20px 30px 18px 34px;
  border-bottom: 2px solid var(--ck);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--ck);
  display: flex;
  justify-content: space-between;
}

.bookcard .bk-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 30px 15px 34px;
  border-bottom: 1px solid var(--edge-soft);
  font-size: 14px;
}

.bookcard .bk-row:last-child { border-bottom: 0; }

.bookcard .bk-row .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--dim);
  padding-top: 4px;
  white-space: nowrap;
}

.bookcard .bk-row .v { color: var(--txt); text-align: right; }

/* ---------------- Stats ---------------- */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat {
  border: 1px solid var(--edge);
  background: var(--bg2);
  padding: 44px 26px;
  text-align: center;
  border-radius: 8px;
  position: relative;
}

.stat::before {
  content: "";
  display: block;
  width: 40px; height: 16px;
  background: var(--sg);
  border-radius: 4px;
  margin: 0 auto 18px;
}

.stat .n {
  font-family: var(--disp);
  font-size: 52px;
  color: var(--txt);
  line-height: 1;
}

.stat .n i { font-style: normal; color: var(--sg); }
.stat .n b { font-weight: 400; color: var(--ck); font-style: normal; }

.stat .c {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 14px;
}

/* ---------------- Quote ---------------- */

.quote-zone { padding: 96px 0; text-align: center; }

.quote-zone .qt {
  font-family: var(--disp);
  font-size: clamp(24px, 3vw, 40px);
  color: var(--txt);
  max-width: 840px;
  margin: 0 auto;
  line-height: 1.4;
}

.quote-zone cite {
  display: block;
  margin-top: 30px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ck);
}

/* ---------------- CTA ---------------- */

.cta-zone {
  padding: 104px 0;
  text-align: center;
  border-top: 1px solid var(--edge);
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.cta-zone::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 14px;
  background: repeating-linear-gradient(90deg, var(--sg) 0 60px, var(--ck) 60px 120px, var(--sg-deep) 120px 180px, var(--ck-deep) 180px 240px);
  pointer-events: none;
}

.cta-zone .inner { position: relative; }
.cta-zone .k-label { display: inline-block; margin-bottom: 22px; }
.cta-zone h2 { font-size: clamp(34px, 4.8vw, 60px); }
.cta-zone h2 em { font-style: normal; color: var(--sg); }
.cta-zone h2 .c { color: var(--ck); }
.cta-zone p { margin: 22px auto 40px; max-width: 560px; font-size: 16px; }

/* ---------------- Footer ---------------- */

.j-foot {
  border-top: 1px solid var(--edge);
  background: var(--bg2);
  padding: 68px 0 34px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--edge-soft);
}

.foot-grid h4 {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 20px;
}

.foot-grid ul { list-style: none; }
.foot-grid li { margin-bottom: 11px; font-size: 14px; }
.foot-grid li a { color: var(--sub); }
.foot-grid li a:hover { color: var(--sg); }

.foot-desc { margin-top: 16px; font-size: 13.5px; max-width: 360px; color: var(--dim); }

.foot-bar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 26px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 1px;
  color: var(--dim);
}

.foot-bar a { color: var(--sub); }
.foot-bar a:hover { color: var(--sg); }

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

.page-hero {
  padding: 88px 0 64px;
  border-bottom: 1px solid var(--edge-soft);
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  right: -40px; top: 0; bottom: 0;
  width: 380px;
  background-image:
    radial-gradient(circle, var(--edge) 1.5px, transparent 2px),
    linear-gradient(var(--edge-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--edge-soft) 1px, transparent 1px);
  background-size: 56px 56px;
  border-left: 1px solid var(--edge-soft);
}

.page-hero .wrap { position: relative; }

.crumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 26px;
}

.crumb a { color: var(--sg); }

.page-hero h1 { font-size: clamp(40px, 5.6vw, 68px); }
.page-hero h1 em { font-style: normal; color: var(--sg); }
.page-hero h1 .c { color: var(--ck); }
.page-hero .lede { margin-top: 24px; max-width: 640px; font-size: 17px; }

/* ---------------- Contact ---------------- */

.contact-cols {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 62px;
  padding: 84px 0;
}

.chip-card {
  border: 1px solid var(--edge);
  border-radius: 8px;
  background: var(--panel);
  padding: 24px 28px;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  align-items: start;
  position: relative;
}

.chip-card::before {
  content: "";
  position: absolute;
  top: 16px; right: 20px;
  width: 20px; height: 14px;
  background: var(--sg);
  border-radius: 3px;
}

.chip-card .fld {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--ck);
  padding-top: 5px;
}

.chip-card .val {
  font-family: var(--disp);
  font-size: 21px;
  color: var(--txt);
  line-height: 1.25;
}

.chip-card .val a { color: var(--txt); }
.chip-card .val a:hover { color: var(--sg); }

.chip-card .nt { grid-column: 2; font-size: 13px; color: var(--dim); }

.book-form {
  border: 1px solid var(--edge);
  border-radius: 8px;
  background: var(--panel);
  padding: 46px;
  position: relative;
}

.book-form::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 12px;
  background-image: radial-gradient(circle, var(--bg) 3px, transparent 4px);
  background-size: 12px 40px;
  background-repeat: repeat-y;
  border-right: 1px dashed var(--edge);
}

.book-form::after {
  content: "Swatch Request · JRK-518";
  position: absolute;
  top: 0; right: 0;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--bg);
  background: var(--sg);
  padding: 7px 14px;
  border-radius: 0 0 0 8px;
}

.book-form h2 { font-size: 30px; margin-bottom: 8px; margin-top: 10px; }
.book-form > p { font-size: 13px; color: var(--dim); margin-bottom: 30px; font-family: var(--mono); }

.f-field { margin-bottom: 20px; }

.f-field label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 9px;
}

.f-field input,
.f-field select,
.f-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--edge);
  border-radius: 6px;
  color: var(--txt);
  font-family: var(--body-f);
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s;
}

.f-field textarea { min-height: 140px; resize: vertical; }

.f-field input:focus,
.f-field select:focus,
.f-field textarea:focus { border-color: var(--sg); }

.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.f-note { font-size: 12px; color: var(--dim); margin-top: 16px; font-family: var(--mono); }

/* ---------------- Legal prose ---------------- */

.prose { max-width: 840px; padding: 76px 0 100px; }

.prose .policy-head {
  border: 1px solid var(--edge);
  border-radius: 0 10px 10px 0;
  background: var(--panel);
  padding: 30px 34px 30px 44px;
  margin-bottom: 44px;
  font-size: 15.5px;
  position: relative;
}

.prose .policy-head::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 12px;
  background-image: radial-gradient(circle, var(--bg) 3px, transparent 4px);
  background-size: 12px 40px;
  background-repeat: repeat-y;
  border-right: 1px dashed var(--edge);
}

.prose .upd {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--sg);
  border: 1px dashed var(--sg-deep);
  border-radius: 6px;
  padding: 7px 14px;
  margin-bottom: 26px;
}

.prose h2 {
  font-size: 27px;
  margin: 54px 0 18px;
  padding-top: 38px;
  border-top: 1px dashed var(--edge-soft);
}

.prose h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 44px; }
.prose h3 { font-size: 20px; margin: 30px 0 10px; }
.prose p { margin-bottom: 15px; font-size: 15.5px; }
.prose ul { margin: 0 0 15px 22px; font-size: 15.5px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--txt); }

/* ---------------- Reveal ---------------- */

.rv { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.rv.in { opacity: 1; transform: none; }

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

@media (max-width: 1080px) {
  .jnav { display: none; }
  .burger { display: block; }
  .hero::before, .hero::after, .page-hero::before { display: none; }
  .chip-grid { grid-template-columns: 1fr; }
  .duo, .contact-cols { grid-template-columns: 1fr; gap: 48px; }
  .lt-row { grid-template-columns: 110px 1fr; padding-left: 20px; }
  .lt-row p { grid-column: 2; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .dye-strip { grid-template-columns: 1fr 1fr; }
  .dye-strip .dy { border-bottom: 1px solid var(--edge-soft); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .wrap { padding: 0 26px; }
  .book-form { padding: 36px 24px 36px 34px; }
  .f-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .stat-grid, .dye-strip { grid-template-columns: 1fr; }
}
