/* =============================================================
   Seladels Foods Limited — design mock
   Palette pulled from the packaging photo + logo:
   bright pack green, deep leaf green, packaging yellow, terracotta
   ============================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* greens */
  --g-950: #0C1F08;
  --g-900: #12300C;
  --g-800: #1B4512;
  --g-700: #2E6B1C;
  --g-600: #45932A;
  --g-500: #5CB320;
  --g-400: #74C51F;
  --g-200: #C8E6AE;
  --g-100: #E4F2D6;
  --g-50:  #F1F8E9;

  /* accents */
  --yellow:      #FFD400;
  --yellow-soft: #F5E01A;
  --terra:       #CE6E3E;
  --terra-dark:  #B25A2E;

  /* neutrals */
  --cream:   #FBF9F3;
  --cream-2: #F4F1E7;
  --ink:     #15200F;
  --ink-2:   #3A4733;
  --muted:   #6B7A61;
  --line:    rgba(21, 32, 15, 0.12);
  --line-2:  rgba(21, 32, 15, 0.07);
  --white:   #FFFFFF;

  /* type */
  --f-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --f-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* scale */
  --step--1: clamp(0.82rem, 0.79rem + 0.14vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.115rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2.2rem);
  --step-3:  clamp(1.95rem, 1.6rem + 1.7vw, 3.1rem);
  --step-4:  clamp(2.5rem, 1.9rem + 2.9vw, 4.6rem);
  --step-5:  clamp(3rem, 2rem + 4.6vw, 6.6rem);

  /* layout */
  --shell: 1280px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --sect: clamp(4.5rem, 9vw, 9.5rem);
  --r-s: 8px;
  --r-m: 16px;
  --r-l: 28px;
  --r-xl: 40px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; }
html:not(.lenis) { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  font-size: var(--step-0);
  line-height: 1.62;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
/* <picture> is a wrapper only: let the <img> stay the layout box so every
   `.thing img` rule below still applies without a parallel `.thing picture`. */
picture { display: contents; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }

::selection { background: var(--g-400); color: var(--g-950); }

:focus-visible {
  outline: 2px solid var(--g-600);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute; left: 50%; top: 0.5rem; transform: translate(-50%, -200%);
  z-index: 999; background: var(--g-900); color: #fff;
  padding: 0.7rem 1.2rem; border-radius: var(--r-s); font-size: var(--step--1);
  transition: transform 0.25s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

/* subtle paper grain over everything */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: 0.4; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
}

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 500;
  font-variation-settings: "SOFT" 20, "WONK" 0, "opsz" 40;
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--g-900);
  text-wrap: balance;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); line-height: 1.2; }
p { text-wrap: pretty; }

.display { font-size: var(--step-5); line-height: 0.98; }
.lead { font-size: var(--step-1); line-height: 1.5; color: var(--ink-2); font-weight: 400; }
.muted { color: var(--muted); }
.serif-em { font-style: italic; font-variation-settings: "SOFT" 40, "WONK" 1, "opsz" 40; color: var(--g-600); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--g-600);
  display: inline-flex; align-items: center; gap: 0.65rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: currentColor; opacity: 0.55;
}
.eyebrow.is-plain::before { display: none; }

/* ---------- 4. Layout ---------- */
.shell {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
}
.shell-wide { width: min(100% - (var(--gutter) * 1.2), 1560px); margin-inline: auto; }
.section { padding-block: var(--sect); position: relative; }
.section-tight { padding-block: clamp(3rem, 6vw, 6rem); }

.stack > * + * { margin-top: var(--flow, 1.1rem); }
.grid { display: grid; gap: clamp(1.5rem, 3vw, 3rem); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.section-head > :first-child > * + * { margin-top: 1.1rem; }

.rule { height: 1px; background: var(--line); border: 0; }

/* ---------- 5. Decorative ---------- */
.bg-dots {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(var(--g-200) 1.15px, transparent 1.15px);
  background-size: 22px 22px;
  opacity: 0.5;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000 0%, transparent 78%);
          mask-image: radial-gradient(70% 60% at 50% 40%, #000 0%, transparent 78%);
}
.bg-lines {
  position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: 0.6;
  background-image: repeating-linear-gradient(-45deg, var(--g-100) 0 1px, transparent 1px 11px);
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 65%);
          mask-image: linear-gradient(to bottom, #000, transparent 65%);
}
.blob {
  position: absolute; z-index: 0; pointer-events: none;
  border-radius: 50%; filter: blur(70px); opacity: 0.5;
}
.wing-mark {
  position: absolute; z-index: 0; pointer-events: none;
  color: var(--g-200); opacity: 0.5;
}
.section > .shell, .section > .shell-wide { position: relative; z-index: 1; }

/* ---------- 6. Buttons ---------- */
.btn {
  --btn-bg: var(--g-900);
  --btn-fg: var(--cream);
  --btn-sweep: var(--g-500);
  position: relative;
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 1.02em 1.75em;
  border: 1px solid transparent;
  border-radius: 100px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.005em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  will-change: transform;
}
.btn > * { position: relative; z-index: 2; }
.btn::before {
  content: ""; position: absolute; z-index: 1; inset: 0;
  background: var(--btn-sweep);
  transform: translateY(101%);
  transition: transform 0.55s var(--ease);
  border-radius: inherit;
}
.btn:hover::before, .btn:focus-visible::before { transform: translateY(0); }
.btn:hover { color: var(--g-950); box-shadow: 0 14px 32px -16px rgba(69, 147, 42, 0.85); }
.btn:active { transform: scale(0.985); }

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--g-900);
  --btn-sweep: var(--g-900);
  border-color: var(--line);
}
.btn-ghost:hover { color: var(--cream); border-color: var(--g-900); }

.btn-light { --btn-bg: var(--cream); --btn-fg: var(--g-900); --btn-sweep: var(--yellow); }
.btn-light:hover { color: var(--g-950); }

.btn-sm { padding: 0.72em 1.25em; font-size: 0.82rem; }

.btn .ico { width: 1em; height: 1em; transition: transform 0.4s var(--ease); }
.btn:hover .ico { transform: translateX(4px); }

/* text link with animated underline */
.link {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 600; font-size: var(--step--1);
  color: var(--g-700);
  padding-bottom: 3px;
}
.link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: currentColor;
  transform-origin: right; transform: scaleX(1);
  transition: transform 0.4s var(--ease);
}
.link:hover::after { transform-origin: left; animation: link-wipe 0.55s var(--ease); }
@keyframes link-wipe {
  0%   { transform: scaleX(1); transform-origin: right; }
  49%  { transform: scaleX(0); transform-origin: right; }
  50%  { transform: scaleX(0); transform-origin: left; }
  100% { transform: scaleX(1); transform-origin: left; }
}
.link .ico { width: 0.85em; height: 0.85em; transition: transform 0.4s var(--ease); }
.link:hover .ico { transform: translate(3px, -3px); }

/* ---------- 7. Header ---------- */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding-block: clamp(0.85rem, 1.6vw, 1.35rem);
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease), padding 0.45s var(--ease), backdrop-filter 0.45s var(--ease);
}
.hdr.is-stuck {
  background: rgba(251, 249, 243, 0.82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 var(--line-2), 0 18px 40px -34px rgba(18, 48, 12, 0.6);
  padding-block: 0.7rem;
}
.hdr.is-hidden { transform: translateY(-105%); }
.hdr { transition-property: background, box-shadow, padding, backdrop-filter, transform; }

.hdr-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.72rem; }
.brand-chip {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--white);
  display: grid; place-items: center;
  overflow: hidden;
  box-shadow: 0 2px 0 rgba(18,48,12,.05), inset 0 0 0 1px var(--line-2);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.brand-chip img { width: 84%; height: 84%; object-fit: contain; }
.brand:hover .brand-chip { transform: rotate(-6deg) scale(1.05); box-shadow: 0 10px 22px -12px rgba(69,147,42,.8); }
.brand-name {
  display: flex; flex-direction: column; line-height: 1.05;
}
.brand-name b {
  font-family: var(--f-display); font-weight: 600; font-size: 1.16rem;
  letter-spacing: -0.02em; color: var(--g-900);
}
.brand-name span {
  font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted); margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: clamp(0.4rem, 1.4vw, 1.1rem); }
.nav a {
  position: relative;
  padding: 0.55rem 0.85rem;
  font-size: 0.93rem; font-weight: 500; color: var(--ink-2);
  border-radius: 100px;
  transition: color 0.3s var(--ease);
}
.nav a::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: var(--g-100);
  transform: scale(0.7); opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
  z-index: -1;
}
.nav a:hover { color: var(--g-800); }
.nav a:hover::before { transform: scale(1); opacity: 1; }
.nav a.is-active { color: var(--g-800); font-weight: 600; }
.nav a.is-active::after {
  content: ""; position: absolute; left: 50%; bottom: 1px; width: 5px; height: 5px;
  border-radius: 50%; background: var(--g-500); transform: translateX(-50%);
}
.hdr-cta { display: inline-flex; align-items: center; gap: 0.6rem; }

.burger {
  display: none;
  width: 46px; height: 46px; border-radius: 14px;
  border: 1px solid var(--line); background: transparent;
  cursor: pointer; position: relative;
}
.burger span {
  position: absolute; left: 13px; width: 20px; height: 1.6px; background: var(--g-900);
  border-radius: 2px; transition: transform 0.4s var(--ease), opacity 0.25s var(--ease);
}
.burger span:nth-child(1) { top: 18px; }
.burger span:nth-child(2) { top: 25px; }
.burger.is-open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 890;
  background: var(--g-900);
  color: var(--cream);
  padding: 7rem var(--gutter) 3rem;
  display: flex; flex-direction: column; justify-content: space-between;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--ease);
  visibility: hidden;
}
.drawer.is-open { clip-path: inset(0 0 0 0); visibility: visible; }
.drawer nav { display: flex; flex-direction: column; gap: 0.4rem; }
.drawer nav a {
  font-family: var(--f-display); font-size: clamp(2rem, 9vw, 3.2rem);
  color: var(--cream); padding: 0.25em 0; border-bottom: 1px solid rgba(255,255,255,.11);
  display: flex; align-items: baseline; justify-content: space-between;
}
.drawer nav a small { font-family: var(--f-mono); font-size: 0.7rem; opacity: 0.45; }
.drawer-foot { font-size: 0.9rem; color: rgba(255,255,255,.6); }
.drawer-foot a { color: var(--g-400); }

/* ---------- 8. Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(8rem, 15vw, 11.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero-copy > * + * { margin-top: 1.6rem; }
.hero h1 { font-size: clamp(2.5rem, 1.7rem + 3.6vw, 5.1rem); line-height: 1.0; }
.hero .lead { max-width: 46ch; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }

.hero-media { position: relative; }
.hero-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  background: var(--g-100);
  box-shadow: 0 50px 90px -60px rgba(18, 48, 12, 0.65);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(12, 31, 8, 0.35));
}
.hero-inset {
  position: absolute; left: -8%; bottom: 8%; width: 46%;
  border-radius: var(--r-l); overflow: hidden;
  box-shadow: 0 30px 60px -34px rgba(18, 48, 12, 0.7);
  border: 6px solid var(--cream);
}
.hero-inset img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.hero-badge {
  position: absolute; right: -4%; top: 9%;
  background: var(--cream);
  border-radius: 100px;
  padding: 0.7rem 1.15rem 0.7rem 0.7rem;
  display: flex; align-items: center; gap: 0.7rem;
  box-shadow: 0 22px 44px -26px rgba(18, 48, 12, 0.6);
  border: 1px solid var(--line-2);
}
.hero-badge b { font-family: var(--f-display); font-size: 1.5rem; color: var(--g-700); line-height: 1; }
.hero-badge span { font-size: 0.76rem; line-height: 1.25; color: var(--muted); max-width: 9ch; display: block; }
.hero-badge .dot {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--yellow); display: grid; place-items: center; flex: none;
}
.hero-badge .dot svg { width: 19px; height: 19px; color: var(--g-800); }

/* line mask reveal */
.line-mask { display: block; overflow: hidden; padding-bottom: 0.06em; }
.line-mask > span { display: block; }

/* stats bar */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(1.75rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
}
.stat b {
  display: block;
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 3.1rem); line-height: 1; color: var(--g-700);
  letter-spacing: -0.03em;
}
/* direct child only: the counter spans live inside the <b> and must not
   pick up the caption styling */
.stat > span { display: block; margin-top: 0.55rem; font-size: 0.88rem; color: var(--muted); max-width: 20ch; }

/* ---------- 9. Marquee ---------- */
.marquee-wrap {
  padding-block: clamp(2rem, 4vw, 3rem);
  border-block: 1px solid var(--line-2);
  background: var(--cream-2);
  overflow: hidden;
}
.marquee-label {
  display: flex; margin-bottom: 1.6rem;
}
.marquee {
  display: flex; width: max-content; gap: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee-track { display: flex; align-items: center; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 1.4rem;
  padding-inline: 1.4rem;
  font-family: var(--f-display); font-size: clamp(1.1rem, 2vw, 1.65rem);
  font-weight: 500; letter-spacing: -0.01em;
  color: var(--g-800); opacity: 0.72; white-space: nowrap;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
}
.marquee-item:hover { opacity: 1; color: var(--g-600); }
.marquee-item .sep { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); flex: none; }

/* ---------- 10. Story / split ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.split.is-flip > :first-child { order: 2; }
.split-media { position: relative; }
/* the frame clips the ken-burns zoom; the wing-mark sits outside it on purpose */
.split-media .media-frame {
  border-radius: var(--r-l);
  overflow: hidden;
  background: var(--g-100);
  box-shadow: 0 40px 70px -55px rgba(18, 48, 12, 0.75);
}
.split-media img { width: 100%; object-fit: cover; }

/* full-width image band (about page) */
.band-wide {
  margin: 0; border-radius: var(--r-xl); overflow: hidden;
  background: var(--g-100);
  box-shadow: 0 46px 80px -60px rgba(18, 48, 12, 0.7);
}
.band-wide img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; }
@media (max-width: 700px) { .band-wide img { aspect-ratio: 4 / 3; } }

/* two-up image band (products page) */
.band-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(0.75rem, 1.4vw, 1.1rem);
}
.band-2 > figure {
  position: relative; margin: 0; min-height: 0;
  border-radius: var(--r-l); overflow: hidden;
  background: var(--g-100);
  box-shadow: 0 34px 64px -52px rgba(18, 48, 12, 0.75);
}
/* only the wide one carries a ratio; the tall one is absolutely filled so it
   stretches to whatever row height the wide one sets */
.band-2 > figure:first-child { aspect-ratio: 16 / 9; }
.band-2 img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 700px) {
  .band-2 { grid-template-columns: 1fr; }
  .band-2 > figure:last-child { aspect-ratio: 16 / 10; }
}
.split-copy > * + * { margin-top: 1.35rem; }

.pill-note {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--g-50); border: 1px solid var(--g-100);
  color: var(--g-700); border-radius: 100px;
  padding: 0.45rem 0.95rem; font-size: 0.8rem; font-weight: 600;
}
.pill-note svg { width: 15px; height: 15px; }

/* checklist */
.ticks { display: grid; gap: 0.85rem; margin-top: 1.75rem; }
.ticks li { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.98rem; color: var(--ink-2); }
.ticks .tick {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--g-100); color: var(--g-700);
  display: grid; place-items: center; margin-top: 2px;
}
.ticks .tick svg { width: 12px; height: 12px; }

/* ---------- 11. Category cards ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 1.8vw, 1.5rem); }
.cat {
  position: relative;
  border-radius: var(--r-l);
  overflow: hidden;
  background: var(--g-900);
  aspect-ratio: 1 / 1.13;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.4rem;
  color: var(--cream);
  isolation: isolate;
}
.cat img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: -2;
  transition: transform 0.9s var(--ease), filter 0.7s var(--ease);
}
.cat::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  /* the pack shots are bright, so scrim both ends: top for the icon and count,
     bottom for the title */
  background:
    linear-gradient(180deg, rgba(12,31,8,0.42) 0%, rgba(12,31,8,0) 26%),
    linear-gradient(180deg, rgba(12,31,8,0) 34%, rgba(12,31,8,0.62) 72%, rgba(12,31,8,0.88) 100%);
  transition: background 0.5s var(--ease);
}
.cat:hover img { transform: scale(1.07); }
.cat:hover::after {
  background:
    linear-gradient(180deg, rgba(12,31,8,0.46) 0%, rgba(12,31,8,0.1) 30%),
    linear-gradient(180deg, rgba(12,31,8,0.1) 20%, rgba(12,31,8,0.92) 100%);
}

.cat-ico {
  position: absolute; top: 1.15rem; left: 1.15rem;
  width: 42px; height: 42px; border-radius: 13px;
  background: rgba(251, 249, 243, 0.16);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.22);
  display: grid; place-items: center;
  transition: background 0.45s var(--ease), transform 0.45s var(--ease);
}
.cat-ico svg { width: 21px; height: 21px; color: var(--cream); }
.cat:hover .cat-ico { background: var(--yellow); transform: rotate(-8deg); }
.cat:hover .cat-ico svg { color: var(--g-900); }

.cat h3 { color: var(--cream); font-size: 1.35rem; text-shadow: 0 1px 8px rgba(12,31,8,0.5); }
.cat p {
  font-size: 0.83rem; color: rgba(251,249,243,0.72); margin-top: 0.3rem;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.55s var(--ease), opacity 0.4s var(--ease), margin 0.4s var(--ease);
}
.cat:hover p { max-height: 6rem; opacity: 1; }
.cat-count {
  position: absolute; top: 1.35rem; right: 1.35rem;
  font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.1em;
  color: rgba(251,249,243,0.92);
  text-shadow: 0 1px 3px rgba(12,31,8,0.55);
}

/* ---------- 12. Values ---------- */
.values { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid var(--line); }
.value {
  padding: clamp(1.6rem, 2.6vw, 2.4rem) clamp(1rem, 1.8vw, 1.6rem) clamp(1.8rem, 3vw, 2.6rem);
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.45s var(--ease);
}
.value:last-child { border-right: 0; }
.value:hover { background: var(--g-50); }
.value::before {
  content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 2px;
  background: var(--g-500); transform: scaleX(0); transform-origin: left;
  transition: transform 0.55s var(--ease);
}
.value:hover::before { transform: scaleX(1); }
.value .n { font-family: var(--f-mono); font-size: 0.72rem; color: var(--g-500); letter-spacing: 0.14em; }
.value h3 { margin-top: 1.1rem; font-size: 1.2rem; }
.value p { margin-top: 0.6rem; font-size: 0.92rem; color: var(--muted); }

/* ---------- 13. Vision / mission panels ---------- */
.panels { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 1.6vw, 1.4rem); }
.panel {
  border-radius: var(--r-l);
  padding: clamp(1.75rem, 3vw, 2.6rem);
  background: var(--white);
  border: 1px solid var(--line-2);
  position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.panel:hover { transform: translateY(-5px); box-shadow: 0 34px 60px -46px rgba(18,48,12,.65); }
.panel .panel-ico {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: var(--g-50); color: var(--g-600); margin-bottom: 1.4rem;
}
.panel .panel-ico svg { width: 22px; height: 22px; }
.panel h3 { font-size: 1.28rem; }
.panel p { margin-top: 0.8rem; color: var(--ink-2); font-size: 0.98rem; }
.panel--dark { background: var(--g-900); border-color: transparent; }
.panel--dark h3 { color: var(--cream); }
.panel--dark p { color: rgba(251,249,243,0.76); }
.panel--dark .panel-ico { background: rgba(255,255,255,0.1); color: var(--yellow); }
.panel--dark .corner-wing { position: absolute; right: -22px; bottom: -26px; width: 130px; color: rgba(255,255,255,.07); }

/* ---------- 14. Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 1.8vw, 1.6rem); }
.quote {
  background: var(--cream);
  border: 1px solid var(--line-2);
  border-radius: var(--r-l);
  padding: clamp(1.6rem, 2.6vw, 2.3rem);
  display: flex; flex-direction: column; gap: 1.3rem;
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease);
}
.quote:hover { transform: translateY(-4px); border-color: var(--g-200); }
.quote .stars { display: flex; gap: 3px; color: var(--yellow); }
.quote .stars svg { width: 15px; height: 15px; }
.quote blockquote {
  font-family: var(--f-display); font-size: 1.16rem; line-height: 1.42;
  color: var(--g-900); letter-spacing: -0.012em;
}
.quote figcaption { margin-top: auto; display: flex; align-items: center; gap: 0.8rem; }
.quote .av {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  background: var(--g-100); color: var(--g-700);
  display: grid; place-items: center; font-weight: 700; font-size: 0.9rem;
}
.quote .who b { display: block; font-size: 0.92rem; font-weight: 600; }
.quote .who span { display: block; font-size: 0.8rem; color: var(--muted); }

/* ---------- 15. CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--g-900);
  border-radius: var(--r-xl);
  padding: clamp(2.75rem, 6vw, 5.5rem) clamp(1.75rem, 5vw, 5rem);
  color: var(--cream);
  text-align: center;
  isolation: isolate;
}
.cta-band h2 { color: var(--cream); font-size: var(--step-4); }
.cta-band p { color: rgba(251,249,243,0.74); max-width: 54ch; margin-inline: auto; margin-top: 1.2rem; }
.cta-band .hero-actions { justify-content: center; margin-top: 2.2rem; }
.cta-band .bg-pattern {
  position: absolute; inset: 0; z-index: -1; opacity: 0.14;
  background-image: radial-gradient(#fff 1.1px, transparent 1.1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(60% 60% at 50% 50%, #000, transparent 75%);
          mask-image: radial-gradient(60% 60% at 50% 50%, #000, transparent 75%);
}
.cta-band .glow {
  position: absolute; z-index: -1; width: 55%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(116,197,31,.55), transparent 65%);
  filter: blur(40px);
  left: -12%; bottom: -35%;
}
.cta-band .glow.g2 { left: auto; right: -12%; top: -40%; background: radial-gradient(circle, rgba(255,212,0,.3), transparent 65%); }

/* ---------- 16. Footer ---------- */
.footer {
  background: var(--g-950);
  color: rgba(251,249,243,0.72);
  padding-top: clamp(3.5rem, 7vw, 6rem);
  position: relative; overflow: hidden;
}

.footer-top {
  display: grid; grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 0.75fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  position: relative;
}
.footer h4 {
  font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.19em;
  text-transform: uppercase; color: var(--g-400); font-weight: 500; margin-bottom: 1.25rem;
}
.footer ul { display: grid; gap: 0.7rem; }
.footer a { transition: color 0.3s var(--ease), transform 0.3s var(--ease); display: inline-block; }
.footer a:hover { color: var(--yellow); transform: translateX(3px); }
.footer .brand-name b { color: var(--cream); }
.footer .brand-name span { color: rgba(251,249,243,0.45); }
.footer-blurb { margin-top: 1.4rem; max-width: 34ch; font-size: 0.94rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 1rem;
  padding-block: 1.5rem 2rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: 0.82rem; color: rgba(251,249,243,0.5);
  position: relative;
}
.socials { display: flex; gap: 0.6rem; margin-top: 1.6rem; }
.socials a {
  width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.14);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.socials a:hover { background: var(--g-500); border-color: var(--g-500); transform: translateY(-3px); }
.socials svg { width: 17px; height: 17px; }

/* ---------- 17. Products page ---------- */
.page-hero {
  padding-top: clamp(8.5rem, 15vw, 12rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  position: relative; overflow: hidden;
}
.page-hero-inner { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,0.8fr); gap: clamp(1.5rem,4vw,4rem); align-items: end; }
.page-hero h1 { font-size: var(--step-5); }
.crumbs { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; }
.crumbs a:hover { color: var(--g-600); }

.filters {
  display: flex; flex-wrap: wrap; gap: 0.55rem;
  position: sticky; top: 78px; z-index: 60;
  padding-block: 1rem;
  background: linear-gradient(var(--cream) 72%, transparent);
  margin-bottom: 2rem;
}
.chip {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 100px;
  padding: 0.6rem 1.05rem;
  font-size: 0.85rem; font-weight: 600; color: var(--ink-2);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.chip:hover { border-color: var(--g-400); color: var(--g-700); transform: translateY(-2px); }
.chip .n { font-family: var(--f-mono); font-size: 0.7rem; opacity: 0.6; }
.chip.is-on { background: var(--g-900); border-color: var(--g-900); color: var(--cream); }
.chip.is-on .n { opacity: 0.7; }

.cat-block { margin-bottom: clamp(3rem, 6vw, 5rem); }
.cat-block-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
  padding-bottom: 1.2rem; margin-bottom: 1.8rem; border-bottom: 1px solid var(--line);
}
.cat-block-head .t { display: flex; align-items: center; gap: 1rem; }
.cat-block-head .b-ico {
  width: 46px; height: 46px; border-radius: 14px; background: var(--g-50); color: var(--g-600);
  display: grid; place-items: center; flex: none;
}
.cat-block-head .b-ico svg { width: 23px; height: 23px; }
.cat-block-head h2 { font-size: var(--step-2); }
.cat-block-head p { font-size: 0.92rem; color: var(--muted); max-width: 52ch; margin-top: 0.3rem; }
.cat-block-head .count { font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.12em; color: var(--muted); white-space: nowrap; }

.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.75rem, 1.4vw, 1.1rem); }
.prod {
  border: 1px solid var(--line-2);
  border-radius: var(--r-m);
  background: var(--white);
  padding: 1.1rem 1.2rem;
  display: flex; align-items: center; gap: 0.85rem;
  position: relative; overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.35s var(--ease), box-shadow 0.45s var(--ease);
}
.prod::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--g-500); transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.45s var(--ease);
}
.prod:hover { transform: translateY(-3px); border-color: var(--g-200); box-shadow: 0 20px 34px -28px rgba(18,48,12,.6); }
.prod:hover::before { transform: scaleY(1); transform-origin: top; }
.prod .p-dot {
  width: 30px; height: 30px; border-radius: 9px; flex: none;
  background: var(--g-50); color: var(--g-600);
  display: grid; place-items: center;
}
.prod .p-dot svg { width: 15px; height: 15px; }
.prod span { font-size: 0.94rem; font-weight: 500; line-height: 1.3; }
.prod .tag {
  margin-left: auto; font-family: var(--f-mono); font-size: 0.63rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--terra-dark); background: rgba(206,110,62,.1);
  padding: 0.2rem 0.45rem; border-radius: 5px; white-space: nowrap;
}

.note-band {
  background: var(--g-50); border: 1px dashed var(--g-200);
  border-radius: var(--r-m); padding: 1.2rem 1.4rem;
  display: flex; gap: 1rem; align-items: flex-start;
  font-size: 0.93rem; color: var(--ink-2);
}
.note-band svg { width: 20px; height: 20px; color: var(--g-600); flex: none; margin-top: 2px; }

/* ---------- 18. Timeline (about) ---------- */
.timeline { position: relative; display: grid; gap: clamp(2rem, 4vw, 3.2rem); padding-left: clamp(1.75rem, 3vw, 2.5rem); }
.timeline::before {
  content: ""; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 1px;
  background: linear-gradient(var(--g-200), var(--g-100), transparent);
}
.tl-item { position: relative; }
.tl-item::before {
  content: ""; position: absolute; left: calc(clamp(1.75rem, 3vw, 2.5rem) * -1); top: 7px;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--cream); border: 2px solid var(--g-500);
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.tl-item:hover::before { background: var(--g-500); transform: scale(1.25); }
.tl-item .yr { font-family: var(--f-mono); font-size: 0.78rem; letter-spacing: 0.14em; color: var(--g-600); }
.tl-item h3 { margin-top: 0.5rem; font-size: 1.35rem; }
.tl-item p { margin-top: 0.6rem; color: var(--ink-2); max-width: 58ch; }

/* ---------- 19. Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.info-list { display: grid; gap: 0.4rem; }
.info-row {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.15rem 0; border-bottom: 1px solid var(--line-2);
}
.info-row .i-ico {
  width: 42px; height: 42px; border-radius: 13px; flex: none;
  background: var(--g-50); color: var(--g-600); display: grid; place-items: center;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease);
}
.info-row:hover .i-ico { background: var(--g-500); color: #fff; transform: rotate(-6deg); }
.info-row .i-ico svg { width: 19px; height: 19px; }
.info-row h4 { font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.info-row .val { margin-top: 0.35rem; font-size: 1.05rem; font-weight: 500; line-height: 1.4; }
.info-row .val a:hover { color: var(--g-600); }
.info-row .sub { font-size: 0.85rem; color: var(--muted); margin-top: 0.2rem; }

.form-card {
  background: var(--white); border: 1px solid var(--line-2);
  border-radius: var(--r-l); padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: 0 40px 80px -64px rgba(18,48,12,.7);
}
.field { display: grid; gap: 0.5rem; margin-bottom: 1.1rem; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--ink-2); }
.field input, .field textarea, .field select {
  border: 1px solid var(--line); border-radius: 12px;
  padding: 0.85rem 1rem; background: var(--cream);
  font-size: 0.96rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--g-500); background: var(--white);
  box-shadow: 0 0 0 4px rgba(92,179,32,0.13);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 0.9rem; }
.form-status { font-size: 0.9rem; margin-top: 1rem; color: var(--g-700); font-weight: 600; display: none; }
.form-status.is-on { display: block; }

.hours-card {
  background: var(--g-900); color: var(--cream);
  border-radius: var(--r-l); padding: clamp(1.5rem, 2.6vw, 2.2rem);
  margin-top: 1.75rem; position: relative; overflow: hidden;
}
.hours-card h3 { color: var(--cream); font-size: 1.2rem; }
.hours-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 0.93rem; }
.hours-row:last-child { border-bottom: 0; }
.hours-row span:first-child { color: rgba(251,249,243,.68); }
.hours-row.is-closed span:last-child { color: var(--terra); }
.live-dot { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.78rem; color: var(--g-400); margin-top: 0.4rem; }
.live-dot i { width: 7px; height: 7px; border-radius: 50%; background: var(--g-400); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }

.map-frame {
  border-radius: var(--r-l); overflow: hidden; border: 1px solid var(--line-2);
  position: relative;
}
.map-frame img { width: 100%; object-fit: cover; }
.map-pin {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%);
  display: grid; place-items: center;
}
.map-pin .ring {
  position: absolute; width: 64px; height: 64px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6); animation: ping 2.6s infinite var(--ease-io);
}
@keyframes ping { 0% { transform: scale(0.5); opacity: 1; } 100% { transform: scale(1.8); opacity: 0; } }
.map-pin .core {
  width: 42px; height: 42px; border-radius: 50%; background: var(--yellow);
  display: grid; place-items: center; box-shadow: 0 10px 24px -8px rgba(0,0,0,.5);
}
.map-pin .core svg { width: 20px; height: 20px; color: var(--g-900); }

/* faq */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.35rem 0; text-align: left;
  font-family: var(--f-display); font-size: 1.18rem; color: var(--g-900);
  transition: color 0.3s var(--ease);
}
.faq-q:hover { color: var(--g-600); }
.faq-q .pm { position: relative; width: 20px; height: 20px; flex: none; }
.faq-q .pm::before, .faq-q .pm::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.faq-q .pm::before { width: 15px; height: 1.6px; }
.faq-q .pm::after { width: 1.6px; height: 15px; }
.faq-item.is-open .pm::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a { overflow: hidden; height: 0; }
.faq-a > div { padding-bottom: 1.4rem; color: var(--ink-2); max-width: 68ch; font-size: 0.98rem; }

/* ---------- 20. Custom cursor ---------- */
.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  border-radius: 50%; opacity: 0;
  transition: opacity 0.3s ease;
}
.cursor {
  width: 34px; height: 34px; border: 1.5px solid var(--g-600);
  margin: -17px 0 0 -17px;
  transition: opacity 0.3s ease, width 0.35s var(--ease), height 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), margin 0.35s var(--ease);
}
.cursor-dot { width: 5px; height: 5px; background: var(--g-700); margin: -2.5px 0 0 -2.5px; }
.cursor.is-hover { width: 58px; height: 58px; margin: -29px 0 0 -29px; background: rgba(92,179,32,0.14); border-color: var(--g-500); }
@media (hover: hover) and (pointer: fine) {
  body.cursor-on .cursor, body.cursor-on .cursor-dot { opacity: 1; }
}

/* ---------- 21. Scroll progress ---------- */
.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%; z-index: 950;
  transform: scaleX(0); transform-origin: left;
  background: linear-gradient(90deg, var(--g-600), var(--g-400), var(--yellow));
}

/* ---------- 22. Reveal defaults (JS-driven) ---------- */
.js [data-reveal] { opacity: 0; }
.js [data-reveal="up"] { transform: translateY(28px); }
.js [data-reveal="fade"] { transform: none; }
.js [data-reveal="scale"] { transform: scale(0.96); }
/* line-masks are built by JS, so no pre-set transform here: it would stack
   with GSAP's yPercent and leave the line offset after the tween. */
.js [data-split], .js [data-split-scroll] { opacity: 0; }

/* ---------- 23. Responsive ---------- */
@media (max-width: 1100px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .value { border-bottom: 1px solid var(--line); }
  .value:nth-child(2n) { border-right: 0; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav, .hdr-cta .btn { display: none; }
  .burger { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 520px; margin-inline: auto; width: 100%; }
  .hero-frame { aspect-ratio: 4/4; }
  .split, .split.is-flip > :first-child { grid-template-columns: 1fr; order: 0; }
  .split-media { order: -1; }
  .section-head { grid-template-columns: 1fr; align-items: start; }
  .panels, .quotes { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-block-head { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

@media (max-width: 620px) {
  .cat-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .value { border-right: 0; }
  .footer-top { grid-template-columns: 1fr; }
  .field-2 { grid-template-columns: 1fr; }
  .hero-inset { left: 0; width: 40%; }
  .hero-badge { right: 0; }
  .cat p { max-height: 6rem; opacity: 1; }
}

/* ---------- 24. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .js [data-split], .js [data-split-scroll] { opacity: 1 !important; }
  .cursor, .cursor-dot { display: none; }
}

/* ---------- 25. Print ---------- */
@media print {
  .hdr, .drawer, .cursor, .cursor-dot, .progress, .marquee-wrap { display: none !important; }
  body { background: #fff; }
}
