/* Mixa Foods & Beverages — Harvest Atelier
   Warm editorial system · Bricolage Grotesque + Manrope */

:root {
  --ink: #1c1712;
  --ink-soft: #5a5248;
  --cream: #f4ece0;
  --cream-2: #ebe1d0;
  --white: #fffaf3;
  --rust: #c2410c;
  --rust-2: #9a3412;
  --olive: #3a4a2c;
  --olive-2: #24301c;
  --gold: #c9a227;
  --line: rgba(28, 23, 18, 0.12);
  --display: "Bricolage Grotesque", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
  --head: 76px;
  --radius: 22px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 400;
  pointer-events: none;
  background: transparent;
  opacity: 1;
  transition: opacity 0.28s var(--ease);
}

.page-progress i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--rust), var(--gold));
  box-shadow: 0 0 10px rgba(194, 65, 12, 0.35);
  transition: width 0.18s linear;
}

.page-progress.is-done {
  opacity: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 2.25rem));
  margin-inline: auto;
}

/* ——— Header ——— */
.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--head);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.site-head.is-solid {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(28, 23, 18, 0.06);
}

.head-inner {
  height: 100%;
  width: min(var(--max), calc(100% - 2.25rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 4px 14px rgba(28, 23, 18, 0.12);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text b {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-text small {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.15rem;
}

.nav > a,
.nav-drop > .nav-drop-btn {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.35rem 0;
  font-family: inherit;
  transition: color 0.2s ease;
}

.nav > a:hover,
.nav-drop > .nav-drop-btn:hover,
.nav > a.is-active,
.nav-drop.is-open > .nav-drop-btn {
  color: var(--ink);
}

.nav > a.is-active {
  box-shadow: inset 0 -2px 0 var(--rust);
}

.nav-drop { position: relative; }

.nav-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-drop-btn i { font-size: 0.7rem; transition: transform 0.25s var(--ease); }
.nav-drop.is-open .nav-drop-btn i { transform: rotate(180deg); }

.nav-mega {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(560px, 88vw);
  padding: 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 28px 60px rgba(28, 23, 18, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 120;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem;
}

.nav-drop.is-open .nav-mega,
.nav-drop:hover .nav-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-mega a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.nav-mega a:hover { background: var(--cream); }

.nav-mega-ico {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--cream-2);
  color: var(--olive);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  margin-top: 0.1rem;
}

.nav-mega a > span {
  min-width: 0;
}

.nav-mega strong {
  display: block;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.nav-mega a > span > span {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.35;
}

.head-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.cart-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.cart-btn b {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 0.28rem;
  border-radius: 999px;
  background: var(--rust);
  color: #fff;
  font-size: 0.65rem;
  display: grid;
  place-items: center;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 11px;
}

.burger i {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-rust {
  background: var(--rust);
  color: #fff;
  box-shadow: 0 12px 28px rgba(194, 65, 12, 0.28);
}

.btn-rust:hover { background: var(--rust-2); }

.btn-dark {
  background: var(--ink);
  color: var(--cream);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn-line {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-line:hover { border-color: var(--ink); }

.btn.tiny {
  padding: 0.5rem 0.9rem;
  font-size: 0.78rem;
  box-shadow: none;
}

.full-btn { width: 100%; }

/* ——— Showcase slider ——— */
.showcase {
  position: relative;
  height: min(86vh, 780px);
  min-height: 520px;
  padding: 0;
  overflow: hidden;
  background: var(--olive-2);
  color: #fff;
}

.showcase-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}

.showcase-slide.is-on {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.showcase-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.showcase-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(28, 23, 18, 0.78) 0%, rgba(36, 48, 28, 0.42) 48%, rgba(28, 23, 18, 0.2) 100%),
    linear-gradient(to top, rgba(28, 23, 18, 0.55) 0%, transparent 45%);
}

.showcase-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
  pointer-events: none;
}

.showcase-text .wrap,
.showcase-text .slide-actions a {
  pointer-events: auto;
}

.showcase-slide.is-on .showcase-text {
  animation: rise 0.8s var(--ease) both;
}

.showcase-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 0.85rem;
  max-width: 16ch;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.showcase-desc {
  margin: 0 0 1.6rem;
  font-size: 1.1rem;
  line-height: 1.55;
  color: rgba(255, 250, 243, 0.92);
  max-width: 34rem;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.slide-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }

.showcase-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(28, 23, 18, 0.35);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.showcase-arrow.prev { left: clamp(0.75rem, 2vw, 1.5rem); }
.showcase-arrow.next { right: clamp(0.75rem, 2vw, 1.5rem); }

.showcase-arrow:hover {
  background: var(--rust);
  border-color: var(--rust);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ——— Shared type ——— */
.kicker {
  margin: 0 0 0.7rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
}

.kicker.light { color: var(--gold); }

.block-head { margin-bottom: 2.5rem; max-width: 640px; }

h2,
.shop-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.85rem, 3.4vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
}

.lede {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 36rem;
}

section { padding: clamp(4rem, 7vw, 6.5rem) 0; }

/* ——— Pillars / services ——— */
.pillars { padding-top: 4.5rem; }

.pillar-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pillar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  border: 1px solid transparent;
  box-shadow: 0 10px 30px rgba(28, 23, 18, 0.05);
  transition: transform 0.3s var(--ease), border-color 0.25s ease;
}

.pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(194, 65, 12, 0.35);
}

.pillar i {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--cream-2);
  color: var(--olive);
  display: grid;
  place-items: center;
  margin-bottom: 1.4rem;
  font-size: 1.05rem;
}

.pillar h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.55rem;
  letter-spacing: -0.02em;
}

.pillar p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  flex: 1;
}

.pillar-go {
  margin-top: 1.4rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rust);
}

/* ——— Dynamic service cards (icon-led) ——— */
.svc-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 1.65rem 1.45rem 1.4rem;
  background:
    linear-gradient(165deg, rgba(255, 250, 243, 0.95) 0%, rgba(244, 236, 224, 0.9) 100%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(28, 23, 18, 0.05);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.25s ease, box-shadow 0.3s ease;
}

.svc-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -35% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 65, 12, 0.1), transparent 70%);
  pointer-events: none;
}

.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(194, 65, 12, 0.32);
  box-shadow: 0 20px 40px rgba(28, 23, 18, 0.1);
}

.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1.35rem;
  background: var(--olive-2);
  color: var(--gold);
  font-size: 1.2rem;
  box-shadow: 0 10px 22px rgba(36, 48, 28, 0.22);
  transition: transform 0.3s var(--ease), background 0.25s ease;
}

.svc-card:hover .svc-icon {
  transform: scale(1.06);
  background: var(--rust);
  color: #fff;
}

.svc-index {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(28, 23, 18, 0.22);
}

.svc-card h3 {
  font-family: var(--display);
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.55rem;
  line-height: 1.15;
}

.svc-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
  flex: 1;
}

.svc-go {
  margin-top: 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rust);
}

.svc-go i {
  font-size: 0.7rem;
  transition: transform 0.25s var(--ease);
}

.svc-card:hover .svc-go i {
  transform: translateX(4px);
}

/* ——— Milestones ——— */
.milestones {
  background: var(--olive-2);
  color: var(--cream);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.milestones h2 { color: var(--cream); }

.milestones-head { margin-bottom: 2.2rem; max-width: 40rem; }

.milestone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: rgba(244, 236, 224, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(244, 236, 224, 0.12);
}

.milestone {
  background: rgba(28, 23, 18, 0.22);
  padding: clamp(1.6rem, 3vw, 2.4rem) 1.2rem;
  text-align: center;
}

.milestone strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.55rem;
}

.milestone span {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 236, 224, 0.72);
}

#crickets,
#bsf,
#bees,
#apps,
#make,
#species,
#faqs { scroll-margin-top: calc(var(--head) + 0.5rem); }

.species-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  isolation: isolate;
}

.species-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.6s var(--ease);
}

.species-card:hover img { transform: scale(1.07); }

.species-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(28, 23, 18, 0.92) 0%, rgba(28, 23, 18, 0.2) 55%, transparent 100%);
}

.species-card em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.species-card h3 {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 800;
  margin: 0.35rem 0 0.45rem;
  letter-spacing: -0.03em;
}

.species-card p {
  margin: 0;
  color: rgba(255, 250, 243, 0.78);
  font-size: 0.94rem;
}

/* ——— Manufacture ——— */
.make {
  background: #ffffff;
  border-block: 1px solid var(--line);
}

.make-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.make-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  background: var(--olive-2);
}

.make-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.make-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: var(--white);
  color: var(--ink);
  padding: 0.85rem 1.1rem;
  border-radius: 16px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.make-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.make-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--ink-soft);
  font-weight: 600;
}

.make-list i {
  color: var(--rust);
  margin-top: 0.2rem;
}

.make-catalogue {
  margin-top: clamp(2.2rem, 4vw, 3.2rem);
  padding-top: clamp(1.8rem, 3vw, 2.4rem);
  border-top: 1px solid var(--line);
}

.make-catalogue-head {
  margin-bottom: 1.25rem;
}

.make-catalogue-head h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: -0.02em;
}

.make-sku-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.make-sku {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
}

.make-sku-media {
  display: block;
  aspect-ratio: 4 / 3;
  background: #efe6d8;
  overflow: hidden;
}

.make-sku-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.make-sku:hover .make-sku-media img {
  transform: scale(1.04);
}

.make-sku-body {
  padding: 1rem 1.05rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.make-sku-cat {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rust);
}

.make-sku-body h4 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}

.make-sku-price {
  margin: 0.15rem 0 0.55rem;
  font-weight: 800;
  color: var(--ink);
}

.make-sku-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
}

.btn-wa {
  background: #25d366;
  color: #fff;
  border: 0;
}

.btn-wa:hover {
  background: #1ebe57;
  color: #fff;
}

.btn-wa i { margin-right: 0.35rem; }

@media (max-width: 980px) {
  .make-sku-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .make-sku-grid { grid-template-columns: 1fr; }
}

/* ——— Shop ——— */
.agriculture { padding-bottom: 0.5rem; }

.split-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: end;
}

.split-intro .lede { margin: 0; }

.shop { padding-top: 2rem; }

.shop-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.shop-bar-end {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem 1rem;
}

.shop-count {
  margin: 0.25rem 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
}

.chip-row { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.chip {
  border: 1px solid var(--line);
  background: transparent;
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.chip:hover,
.chip.is-on {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

.catalogue {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.sku {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(28, 23, 18, 0.1);
  box-shadow: 0 8px 24px rgba(28, 23, 18, 0.04);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s ease;
  cursor: pointer;
}

.sku:hover {
  transform: translateY(-5px);
  border-color: rgba(194, 65, 12, 0.28);
  box-shadow: 0 16px 36px rgba(28, 23, 18, 0.1);
}

.sku:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
}

.sku.is-off { display: none; }

.sku figure {
  margin: 0;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream-2);
}

.sku figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.sku:hover figure img { transform: scale(1.05); }

.sku figcaption {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  max-width: 72%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(28, 23, 18, 0.82);
  color: #fff;
}

.sku-body {
  padding: 1.05rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
}

.sku-type {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust);
}

.sku-body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sku-body > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.45;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sku-price {
  margin-top: 0.45rem;
  margin-bottom: 0.15rem;
}

.sku-price strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.sku-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.sku-meta strong { font-size: 1.02rem; font-weight: 800; }

.sku-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.55rem;
}

.sku-actions .btn,
.sku-actions .sku-wa {
  width: 100%;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0.55rem 0.65rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 12px;
  box-shadow: none;
}

.sku-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #128c7e;
  color: #fff;
  border: 1px solid #128c7e;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.sku-wa:hover {
  background: #0e7a6e;
  border-color: #0e7a6e;
  color: #fff;
}

.sku-wa i { font-size: 0.95rem; }

.sku-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: var(--rust);
  color: #fff;
}

.sku-was {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-decoration: line-through;
  margin-bottom: 0.1rem;
}

.shop-empty {
  grid-column: 1 / -1;
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 40rem;
}

.shop-empty h3 {
  margin: 0.35rem 0 0.7rem;
  font-family: var(--display);
  font-size: 1.45rem;
}

.shop-empty p {
  color: var(--ink-soft);
  margin: 0 0 1.2rem;
}

.pd-page {
  padding: clamp(1.4rem, 4vw, 2.6rem) 0 clamp(3rem, 6vw, 4.6rem);
  background: #fff;
}

.pd-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.pd-crumbs a { color: var(--ink-soft); }
.pd-crumbs a:hover { color: var(--rust); }
.pd-crumbs span:last-child { color: var(--ink); }

.pd-stage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.8rem;
  align-items: start;
}

.pd-gallery { display: grid; gap: 0.85rem; }

.pd-stage-img {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 360px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--cream);
  cursor: zoom-in;
}

.pd-stage-img img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  transition: transform 0.45s var(--ease);
}

.pd-stage-img:hover img { transform: scale(1.04); }

.pd-ribbon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--rust);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.pd-zoom {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(28, 23, 18, 0.78);
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.pd-stage-img:hover .pd-zoom { opacity: 1; }

.pd-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pd-thumb {
  width: 76px;
  height: 76px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream-2);
}

.pd-thumb.is-on { border-color: var(--rust); }

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-panel {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.35rem 1.4rem 1.5rem;
}

.pd-bulk {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.75rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--olive-2);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pd-wholesale {
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
}

.pd-wholesale h4 {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pd-wholesale p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.pd-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
}

.pd-pills a,
.pd-pills span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  background: #fff;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}

.pd-pills a:hover { color: var(--rust); border-color: var(--rust); }

.pd-panel h1 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.pd-pricebox {
  padding: 0.95rem 1rem;
  margin-bottom: 1.1rem;
  border-radius: 14px;
  background: #fff;
  border-left: 3px solid var(--rust);
}

.pd-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
}

.pd-price strong {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.pd-price strong.is-wholesale { color: var(--olive); }

.pd-sale {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: var(--rust);
  color: #fff;
}

.pd-note {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.pd-option { margin-bottom: 1rem; }

.pd-option > span {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.pd-swatches,
.pd-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pd-swatch,
.pd-size {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.85rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.pd-swatch input,
.pd-size input { display: none; }

.pd-swatch:has(input:checked),
.pd-size:has(input:checked) {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}

.pd-qtyrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pd-qtyrow > span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.pd-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.pd-qty button {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
}

.pd-qty input {
  width: 56px;
  height: 40px;
  border: 0;
  text-align: center;
  font-weight: 800;
  font-size: 0.95rem;
  background: transparent;
}

.pd-panel .pd-actions {
  margin-top: 0;
  max-width: none;
}

.pd-actions-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.pd-actions-3 .btn,
.pd-actions-3 .sku-wa {
  font-size: 0.68rem;
  padding: 0.55rem 0.4rem;
  min-height: 2.55rem;
}

.pd-actions-3 .buy-now {
  background: var(--olive-2);
  border-color: var(--olive-2);
  color: var(--cream);
}

.pd-actions-3 .buy-now:hover {
  background: var(--olive);
  border-color: var(--olive);
  color: #fff;
}

.pd-trust {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.pd-trust li {
  display: grid;
  gap: 0.3rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.pd-trust i { color: var(--olive); }

.pd-copyblock {
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.pd-copyblock h2 {
  margin: 0.2rem 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
}

.pd-copy { max-width: 52rem; }

.pd-features {
  margin-top: 2.4rem;
  padding: clamp(1.5rem, 4vw, 2.2rem);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(201, 162, 39, 0.08), transparent 28%),
    var(--olive-2);
  color: var(--cream);
}

.pd-features .kicker { color: var(--gold); }
.pd-features h2 { color: #fff; margin: 0.15rem 0 1.4rem; }

.pd-feature-board {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.pd-feature-board li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: rgba(255, 250, 243, 0.06);
  border: 1px solid rgba(244, 236, 224, 0.1);
  transition: transform 0.25s var(--ease), background 0.25s ease;
}

.pd-feature-board li:hover {
  transform: translateY(-3px);
  background: rgba(255, 250, 243, 0.1);
}

.pd-feature-board span {
  font-family: var(--display);
  font-weight: 800;
  color: var(--gold);
  font-size: 0.95rem;
}

.pd-feature-board p {
  margin: 0;
  color: rgba(244, 236, 224, 0.88);
  font-size: 0.95rem;
  line-height: 1.45;
}

.pd-related { background: var(--cream); }

.pd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
}

.pd-lightbox.is-open { display: grid; }

.pd-lightbox-back {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(28, 23, 18, 0.86);
  cursor: pointer;
}

.pd-lightbox-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: min(920px, calc(100vw - 2rem));
}

.pd-lightbox-dialog figure {
  margin: 0;
  position: relative;
  flex: 1;
}

.pd-lightbox-dialog img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: #111;
  border-radius: 12px;
}

.pd-lightbox-dialog span {
  position: absolute;
  left: 50%;
  bottom: 0.8rem;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.pd-lightbox-x,
.pd-lightbox-nav {
  border: 0;
  background: rgba(255, 250, 243, 0.12);
  color: #fff;
  cursor: pointer;
}

.pd-lightbox-x {
  position: absolute;
  top: -2.4rem;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
}

.pd-lightbox-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 420px) {
  .sku-actions {
    grid-template-columns: 1fr;
  }

  .pd-actions-3 {
    grid-template-columns: 1fr;
  }

  .sku-actions .btn,
  .sku-actions .sku-wa {
    font-size: 0.78rem;
  }
}

/* ——— Training ——— */
.training {
  background:
    radial-gradient(700px 320px at 12% 0%, rgba(201, 162, 39, 0.16), transparent 55%),
    radial-gradient(560px 280px at 100% 100%, rgba(194, 65, 12, 0.14), transparent 50%),
    var(--olive-2);
  color: #fff;
  padding: clamp(3.6rem, 7vw, 5.6rem) 0;
}

.training-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin-bottom: 2.2rem;
  max-width: 100%;
}

.training-head h2 {
  color: #fff;
  max-width: 22ch;
  margin: 0.2rem 0 0.75rem;
}

.training-head > div > p:last-child {
  margin: 0;
  max-width: 40rem;
  color: rgba(244, 236, 224, 0.78);
  font-size: 1.05rem;
}

.training-topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.training-topic {
  padding: 1.25rem 1.2rem 1.35rem;
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.06);
  border: 1px solid rgba(244, 236, 224, 0.12);
  transition: transform 0.28s var(--ease), background 0.28s ease, border-color 0.28s ease;
}

.training-topic:hover {
  transform: translateY(-4px);
  background: rgba(255, 250, 243, 0.1);
  border-color: rgba(201, 162, 39, 0.35);
}

.training-ico {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0.9rem;
  border-radius: 12px;
  background: rgba(201, 162, 39, 0.16);
  color: var(--gold);
  font-size: 1rem;
}

.training-topic h3 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.training-topic p {
  margin: 0;
  color: rgba(244, 236, 224, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.checklist {
  list-style: none;
  margin: 1.6rem 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  color: rgba(255, 250, 243, 0.9);
  font-weight: 600;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

/* ——— Booking modal ——— */
.book-modal {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: clamp(1rem, 4vh, 2rem) 1rem;
}

.book-modal.is-open {
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.book-open {
  overflow: hidden;
}

.book-modal-back {
  position: fixed;
  inset: 0;
  border: 0;
  background: rgba(28, 23, 18, 0.72);
  backdrop-filter: blur(6px);
  cursor: pointer;
  z-index: 0;
}

.book-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  margin-top: auto;
  margin-bottom: auto;
  flex-shrink: 0;
  padding: 1.5rem 1.45rem 1.6rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, #fffaf3 0%, #fff 40%),
    #fff;
  border: 1px solid rgba(28, 23, 18, 0.08);
  box-shadow: 0 28px 80px rgba(28, 23, 18, 0.28);
}

.book-dialog-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.book-dialog-head .kicker { margin-bottom: 0.25rem; }

.book-dialog-head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.book-dialog-head > p {
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.book-close {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.book-close:hover { border-color: var(--ink); }

.book-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 0.9rem;
}

.book-form .field.full { grid-column: 1 / -1; }

.book-form .field input,
.book-form .field select,
.book-form .field textarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  color: var(--ink);
  width: 100%;
}

.book-form .field input:focus,
.book-form .field select:focus,
.book-form .field textarea:focus {
  outline: none;
  border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.12);
}

.book-form .field textarea { min-height: 96px; resize: vertical; }

.book-form .book-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.book-form .book-actions .btn { flex: 1 1 160px; }

@media (max-width: 640px) {
  .book-form { grid-template-columns: 1fr; }
  .training-topics { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .training-topics { grid-template-columns: 1fr 1fr; }
}

/* ——— Agroprocessing ——— */
.agro-rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.agro-row {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}

.agro-row span {
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--rust);
}

.agro-row h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0.7rem 0 0.5rem;
}

.agro-row p { margin: 0; color: var(--ink-soft); }

/* ——— Apps (no mockup) ——— */
.apps {
  background: var(--ink);
  color: var(--cream);
}

.apps-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.apps h2 { color: var(--cream); }

.apps .lede { color: rgba(244, 236, 224, 0.7); }

.app-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 220px;
  padding: 0.85rem 1.2rem;
  border-radius: 16px;
  background: var(--cream);
  color: var(--ink);
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.2s ease;
}

.store-btn:hover {
  transform: translateY(-3px);
  background: #fff;
}

.store-btn i {
  font-size: 1.85rem;
  width: 1.4em;
  text-align: center;
}

.store-btn.android i { color: #3ddc84; }
.store-btn.apple i { color: var(--ink); }

.store-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-btn small {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.store-btn strong {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
}

.app-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.app-points li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 250, 243, 0.06);
  border: 1px solid rgba(255, 250, 243, 0.08);
  font-weight: 600;
}

.app-points i {
  color: var(--gold);
  width: 1.2rem;
  text-align: center;
}

/* ——— Contact ——— */
.contact-shell,
.home-faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}

.home-faq .lede { margin-bottom: 1.5rem; }

.home-faq .faq-list { max-width: none; margin: 0; }

.enquiry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.6rem;
  background: var(--white);
  border-radius: var(--radius);
}

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field.full { grid-column: 1 / -1; }

.field label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  outline: none;
}

.field textarea { resize: vertical; min-height: 110px; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--rust);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.12);
}

/* ——— Footer ——— */
.footer {
  background: var(--olive-2);
  color: rgba(244, 236, 224, 0.72);
  padding: 4rem 0 1.4rem;
}

.footer-cta {
  width: min(var(--max), calc(100% - 2.25rem));
  margin: 0 auto 3rem;
  padding: 2rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  background: var(--rust);
  color: #fff;
  border-radius: 24px;
}

.footer-cta h3 {
  margin: 0 0 0.3rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  color: #fff;
}

.footer-cta p { margin: 0; color: rgba(255, 255, 255, 0.88); max-width: 32rem; }

.footer-cta .btn {
  background: var(--ink);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.4rem;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: #fff;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-brand strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.footer-brand p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  max-width: 32ch;
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.footer-pills span {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: var(--rust);
  border-color: var(--rust);
  transform: translateY(-2px);
}

.footer h4 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  color: rgba(244, 236, 224, 0.68);
}

.footer-col a:hover { color: var(--gold); }

.footer-contact-line {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.footer-contact-line i {
  color: var(--gold);
  margin-top: 0.25rem;
}

.footer-contact-line p { margin: 0; }

.footer-base {
  width: min(var(--max), calc(100% - 2.25rem));
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(244, 236, 224, 0.45);
}

.footer-base p { margin: 0; }
.footer-base-links { display: flex; gap: 1.2rem; }
.footer-base-links a:hover { color: var(--gold); }

/* ——— WhatsApp ——— */
.wa-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 190;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}

.wa-float span {
  position: absolute;
  right: calc(100% + 0.6rem);
  white-space: nowrap;
  background: var(--ink);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.wa-float:hover span { opacity: 1; }

/* ——— Inner pages ——— */
.page-hero {
  position: relative;
  padding: clamp(2.2rem, 4vw, 3.2rem) 0 clamp(2rem, 3.5vw, 2.8rem);
  color: var(--ink);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-hero-bg { display: none; }

.page-hero .wrap { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.breadcrumb a { color: var(--rust); }
.breadcrumb a:hover { color: var(--rust-2); }

.page-hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin: 0 0 0.75rem;
  max-width: 18ch;
  color: var(--ink);
}

.page-hero .lede-light {
  margin: 0;
  max-width: 36rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.page-hero .btn-ghost {
  color: var(--ink);
  border-color: var(--line);
}

.page-hero .btn-ghost:hover {
  border-color: var(--ink);
  background: transparent;
}

.page-section { padding: clamp(3.2rem, 6vw, 5.2rem) 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.home-about {
  padding: clamp(3.2rem, 6vw, 5rem) 0;
  background: var(--white);
}

.about-grid .prose p { color: var(--ink-soft); font-size: 1.05rem; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.about-stats div {
  background: var(--white);
  padding: 1.4rem 1.2rem;
  border-radius: 18px;
}

.about-stats strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
}

.about-stats span { font-size: 0.85rem; color: var(--ink-soft); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.4rem;
}

.value-item {
  padding: 1.6rem 1.4rem;
  background: var(--white);
  border-radius: var(--radius);
}

.value-item h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
}

.value-item p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.1rem 1.2rem;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
}

.faq-q i {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cream-2);
  display: grid;
  place-items: center;
  font-style: normal;
  color: var(--rust);
}

.faq-item.is-open .faq-q i {
  background: var(--rust);
  color: #fff;
}

.faq-a {
  display: none;
  padding: 0 1.2rem 1.2rem;
  color: var(--ink-soft);
}

.faq-item.is-open .faq-a { display: block; }

.reviews-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.review-card,
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.blog-card { padding: 0; overflow: hidden; }

.review-stars { color: var(--gold); letter-spacing: 0.12em; }

.review-card p.quote {
  margin: 0;
  flex: 1;
  font-size: 1.02rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
}

.review-author strong { display: block; font-size: 0.92rem; }
.review-author span { font-size: 0.78rem; color: var(--ink-soft); }

.blog-card figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--olive);
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.blog-card:hover img { transform: scale(1.05); }

.blog-body {
  padding: 1.25rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rust);
}

.blog-body h3 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 800;
}

.blog-body p {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  flex: 1;
}

.blog-body .text-link {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rust);
}

.review-summary {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.submit-review-area {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--olive-2);
  color: #fff;
  text-align: center;
}

.submit-review-area .kicker.light {
  color: rgba(255, 250, 243, 0.72);
}

.submit-review-area h2 {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  letter-spacing: -0.03em;
}

.submit-review-area p {
  margin: 0 auto 1.4rem;
  max-width: 34rem;
  color: rgba(255, 250, 243, 0.82);
}

.submit-review-area .btn-rust {
  background: var(--rust);
  color: #fff;
}

body.review-open { overflow: hidden; }

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: clamp(1rem, 4vh, 2rem) 1rem;
}

.review-modal.is-open {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-modal-back {
  position: fixed;
  inset: 0;
  border: 0;
  background: rgba(28, 23, 18, 0.72);
  backdrop-filter: blur(6px);
  cursor: pointer;
  z-index: 0;
}

.review-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  margin-top: auto;
  margin-bottom: auto;
  flex-shrink: 0;
  padding: 1.5rem 1.45rem 1.6rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #fffaf3 0%, #fff 40%), #fff;
  border: 1px solid rgba(28, 23, 18, 0.08);
  box-shadow: 0 28px 80px rgba(28, 23, 18, 0.28);
}

.review-dialog-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.review-dialog-head h3 {
  margin: 0.2rem 0 0.4rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.45rem;
}

.review-dialog-head p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.review-close {
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
  padding: 0.1rem 0.35rem;
}

.review-form {
  display: grid;
  gap: 0.95rem;
}

.review-rate-field {
  align-items: center;
  text-align: center;
}

.review-rate-field #rateYo {
  margin: 0.35rem auto 0;
}

.review-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
  margin-top: 0.35rem;
}

.about-dynamic {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.about-dynamic p {
  margin: 0 0 1rem;
}

.about-dynamic p:last-child { margin-bottom: 0; }

.about-dynamic ul,
.about-dynamic ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.blog-article {
  max-width: 760px;
}

.blog-hero-img {
  width: 100%;
  border-radius: var(--radius);
  margin: 0 0 1.75rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--olive);
}

.blog-card-link { display: block; }

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-info-panel {
  background: var(--olive-2);
  color: #fff;
  padding: 2rem 1.7rem;
  border-radius: 24px;
}

.contact-info-panel h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.65rem;
  margin: 0 0 0.7rem;
  color: #fff;
}

.contact-info-panel > p {
  margin: 0 0 1.8rem;
  color: rgba(244, 236, 224, 0.72);
}

.cinfo {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.cinfo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 250, 243, 0.08);
  color: var(--gold);
}

.cinfo strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
}

.cinfo span,
.cinfo a {
  color: rgba(255, 250, 243, 0.9);
  font-size: 0.98rem;
}

.map-embed {
  margin-top: 1.6rem;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(36, 48, 28, 0.45), rgba(194, 65, 12, 0.3)),
    url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1000&q=70") center/cover;
  border-radius: 16px;
  display: grid;
  place-items: end start;
  padding: 1rem;
}

.map-embed span {
  background: rgba(28, 23, 18, 0.85);
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 800;
}

.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: center;
}

.service-feature.reverse { direction: rtl; }
.service-feature.reverse > * { direction: ltr; }

.service-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
}

.service-points {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.service-points li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--ink-soft);
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rust);
}

/* ——— Cart ——— */
.veil {
  position: fixed;
  inset: 0;
  background: rgba(28, 23, 18, 0.5);
  z-index: 200;
  backdrop-filter: blur(3px);
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100%);
  height: 100%;
  background: var(--white);
  z-index: 210;
  display: flex;
  flex-direction: column;
  transform: translateX(104%);
  transition: transform 0.4s var(--ease);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.18);
}

.drawer.is-open { transform: translateX(0); }

.drawer > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem;
  border-bottom: 1px solid var(--line);
}

.drawer > header h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
}

.drawer > header button {
  border: 0;
  background: none;
  cursor: pointer;
  font-weight: 800;
  color: var(--ink-soft);
}

.drawer ul {
  list-style: none;
  margin: 0;
  padding: 1rem 1.3rem;
  flex: 1;
  overflow: auto;
}

.drawer ul:empty::after {
  content: "No items yet.";
  display: block;
  text-align: center;
  color: var(--ink-soft);
  padding: 3rem 1rem;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-row strong { display: block; font-size: 0.95rem; }
.cart-row span { font-size: 0.85rem; color: var(--ink-soft); }

.cart-row button {
  border: 0;
  background: none;
  color: var(--rust);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
}

.drawer > footer {
  padding: 1.3rem;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* ——— Responsive ——— */
@media (max-width: 1024px) {
  .svc-board,
  .pillar-board,
  .catalogue,
  .agro-rows,
  .reviews-grid,
  .blog-grid,
  .values-grid,
  .species-grid,
  .milestone-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split-intro,
  .make-grid,
  .apps-inner,
  .contact-shell,
  .home-faq-grid,
  .footer-grid,
  .about-grid,
  .contact-page-grid,
  .service-feature,
  .service-feature.reverse,
  .pd-stage,
  .pd-feature-board,
  .pd-trust {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .nav-mega {
    left: 0;
    transform: translateY(8px);
  }

  .nav-drop.is-open .nav-mega,
  .nav-drop:hover .nav-mega {
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .burger { display: flex; }
  .head-actions .book-train-btn {
    display: inline-flex;
    padding: 0.62rem 0.85rem;
    font-size: 0.72rem;
  }

  .nav {
    position: fixed;
    inset: var(--head) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    padding: 0.5rem 0 1rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s ease;
    border-bottom: 1px solid var(--line);
    max-height: calc(100vh - var(--head));
    overflow: auto;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav > a,
  .nav-drop > .nav-drop-btn {
    padding: 0.9rem 1.4rem;
    border-bottom: 1px solid var(--line);
    width: 100%;
    justify-content: space-between;
    text-align: left;
  }

  .nav-mega {
    position: static;
    width: 100%;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    grid-template-columns: 1fr;
    background: var(--cream);
    border: 0;
    box-shadow: none;
    padding: 0 0.75rem 0.75rem;
  }

  .nav-drop.is-open .nav-mega { display: grid; }
  .nav-drop:hover .nav-mega { display: none; }
  .nav-drop.is-open:hover .nav-mega,
  .nav-drop.is-open .nav-mega { display: grid; }

  .svc-board,
  .pillar-board,
  .catalogue,
  .agro-rows,
  .species-grid,
  .milestone-grid,
  .enquiry,
  .reviews-grid,
  .blog-grid,
  .values-grid,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .brand-text { display: none; }
  .showcase { height: min(78vh, 640px); min-height: 460px; }
  .showcase-text { padding: 1.5rem 0; }
  .showcase-arrow { width: 42px; height: 42px; margin-top: -21px; }
  .wa-float span { display: none; }

  .sku figure { aspect-ratio: 5 / 4; }
  .sku-actions { grid-template-columns: 1fr 1fr; }

  .pd-trust { grid-template-columns: 1fr; text-align: left; }
  .pd-trust li { grid-template-columns: auto 1fr; text-align: left; align-items: center; }
  .pd-lightbox-nav { display: none; }
}

.page-hero.service-hero h1 { max-width: 22ch; }

.nav-drop.is-current > .nav-drop-btn {
  color: var(--ink);
  box-shadow: inset 0 -2px 0 var(--rust);
}

.sd-section { padding-top: clamp(2.4rem, 5vw, 4rem); }

.sd-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.88fr);
  gap: 2.4rem;
  align-items: start;
}

.sd-photo {
  width: 100%;
  height: min(52vh, 460px);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 50px rgba(28, 23, 18, 0.12);
  margin-bottom: 2rem;
  background: var(--cream-2);
}

.sd-copy h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 1.1rem;
}

.sd-copy p,
.sd-copy li {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.sd-copy p { margin: 0 0 1rem; }
.sd-copy ul,
.sd-copy ol { margin: 0 0 1.2rem; padding-left: 1.2rem; }

.sd-subs {
  margin-top: 2.4rem;
  display: grid;
  gap: 0.9rem;
}

.sd-subs-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem 1rem;
  margin-bottom: 0.4rem;
}

.sd-subs-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  letter-spacing: -0.03em;
  margin: 0;
}

.sd-subs-head span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.sd-sub {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.2rem;
  align-items: start;
  padding: 1.25rem 1.3rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.sd-sub-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--rust);
  letter-spacing: 0.04em;
  line-height: 1.2;
  min-width: 2ch;
}

.sd-sub-body h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 0.45rem;
  letter-spacing: -0.02em;
}

.sd-sub-body p,
.sd-sub-body li {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin: 0 0 0.65rem;
}

.sd-sub-body p:last-child,
.sd-sub-body ul:last-child {
  margin-bottom: 0;
}

.sd-empty {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.4rem);
}

.sd-empty h2 {
  font-family: var(--display);
  font-weight: 800;
  margin: 0 0 0.75rem;
}

.sd-empty p { color: var(--ink-soft); }

.sd-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem !important;
}

.sd-side {
  position: sticky;
  top: calc(var(--head) + 1.2rem);
  display: grid;
  gap: 1.1rem;
}

.sd-menu {
  background: var(--olive-2);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 1.55rem 1.4rem 1.2rem;
}

.sd-menu h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 1rem;
  color: var(--gold);
}

.sd-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sd-menu li { border-bottom: 1px solid rgba(244, 236, 224, 0.12); }

.sd-menu li:last-child { border-bottom: 0; }

.sd-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 0;
  color: rgba(244, 236, 224, 0.88);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s ease, padding-left 0.2s var(--ease);
}

.sd-menu a:hover,
.sd-menu a.is-on {
  color: var(--gold);
  padding-left: 0.35rem;
}

.sd-menu a i { font-size: 0.75rem; }

.sd-cta {
  background: var(--rust);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
}

.sd-cta i {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
}

.sd-cta h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
}

.sd-cta p {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.sd-cta .btn {
  background: #fff;
  color: var(--ink);
}

.sd-cta .btn:hover { background: var(--cream); }

@media (max-width: 980px) {
  .sd-layout { grid-template-columns: 1fr; }
  .sd-side { position: static; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
