/* =========================================================
   Kanak Garlic — Shared Stylesheet
   Palette: brown / olive green / cream (from brand card)
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root {
  --brown: #4c3a22;
  --brown-dark: #3a2c19;
  --olive: #6d7d2c;
  --olive-dark: #566322;
  --gold: #d9b56a;
  --cream: #f7f2e6;
  --cream-2: #efe7d3;
  --ink: #2b2317;
  --muted: #6b6250;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(60, 45, 25, .12);
  --shadow-sm: 0 4px 14px rgba(60, 45, 25, .10);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --header-h: 85px;
  --sans: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --w-medium: 500;
  --w-semibold: 600;
  --w-bold: 700;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

b, strong { font-weight: var(--w-bold); }

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: var(--w-bold);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--brown);
}
h4, h5 { font-weight: var(--w-semibold); letter-spacing: -0.01em; }

.container { width: 92%; max-width: var(--maxw); margin-inline: auto; }

.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section--alt { background: var(--cream-2); }
.section--dark { background: var(--brown-dark); color: #f0e9d8; }
.section--dark h2 { color: #fff; }

.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .55rem 1.8rem; border-radius: 50px;
  font-family: var(--sans);
  font-weight: var(--w-semibold); font-size: .96rem; letter-spacing: -0.005em; cursor: pointer;
  border: 2px solid transparent; transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.btn:hover { transform: translateY(-3px); }
.btn--primary { background: var(--olive); color: #fff; box-shadow: 0 8px 20px rgba(109,125,44,.35); }
.btn--primary:hover {color:white; background: var(--olive-dark); box-shadow: 0 14px 28px rgba(109,125,44,.42); }
.btn--gold { background: var(--gold); color: var(--brown-dark); box-shadow: 0 8px 20px rgba(217,181,106,.35); }
.btn--gold:hover { background: #e5c684; box-shadow: 0 14px 28px rgba(217,181,106,.45); }
.btn--outline { border-color: rgba(255,255,255,.7); color: #fff; }
.btn--outline:hover { background: #fff; color: var(--brown); }
.btn--ghost { border-color: rgba(76,58,34,.25); color: var(--brown); }
.btn--ghost:hover { background: var(--brown); border-color: var(--brown); color: #fff; }

/* ---------- Section heading ---------- */
.eyebrow {
  display: inline-block; color: var(--olive); font-weight: var(--w-bold);
  letter-spacing: 3px; text-transform: uppercase; font-size: .76rem; margin-bottom: .7rem;
}
.section-title { font-size: clamp(1.9rem, 4.2vw, 2.9rem); margin-bottom: .8rem; }
.section-lead { color: var(--muted); max-width: 640px; margin: 0 auto 2.6rem; font-size: 1.05rem; }
.section-head { margin-bottom: 2.8rem; }

/* =========================================================
   Icons (inline SVG sprite)
   ========================================================= */
.ico {
  width: 20px; height: 20px; flex: none;
  fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.ico--fill { fill: currentColor; stroke: none; }
.btn .ico { width: 18px; height: 18px; }

/* =========================================================
   Top bar (above the header)
   ========================================================= */
.topbar { background: var(--brown-dark); color: #cdc2a8; font-size: .82rem; }
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem 1.6rem; padding: .6rem 0; flex-wrap: wrap;
}
.topbar__group { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: .5rem; color: #e2d8c0; font-weight: var(--w-medium); }
.topbar a.topbar__item { transition: color .2s; }
.topbar a.topbar__item:hover { color: var(--gold); }
.topbar .ico { width: 15px; height: 15px; color: var(--gold); }
.topbar__tag { color: var(--gold); font-weight: var(--w-semibold); letter-spacing: 1.6px; text-transform: uppercase; font-size: .7rem; }

@media (max-width: 900px) {
  .topbar__inner { justify-content: center; gap: .3rem 1.3rem; padding: .5rem 0; }
  .topbar__tag { display: none; }
}
@media (max-width: 560px) {
  /* keep the bar to a single line: phone is the action that matters */
  .topbar__group:first-child { display: none; }
  .topbar__item:last-child { display: none; }
}

/* =========================================================
   Header / Navigation
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,242,230,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(76,58,34,.12);
}
.nav {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: .7rem; }
.brand svg, .brand img { width: 46px; height: 46px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b { font-family: var(--serif); font-weight: var(--w-bold); font-size: 1.26rem; color: var(--brown); letter-spacing: 0; }
.brand-text span { font-size: .62rem; font-weight: var(--w-semibold); letter-spacing: 2.5px; text-transform: uppercase; color: var(--olive); margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: .3rem; }
.nav-links a {
  padding: .55rem .95rem; border-radius: 8px; font-weight: var(--w-medium); font-size: .95rem;
  color: var(--brown-dark); transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--olive); }
.nav-links a.active { color: var(--olive); font-weight: var(--w-semibold); }
.nav-cta { margin-left: .6rem; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--brown); border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative; color: #fdfaf1;
  background:
    linear-gradient(120deg, rgba(45,34,19,.94) 0%, rgba(58,44,25,.8) 45%, rgba(86,99,34,.58) 100%),
    radial-gradient(circle at 80% 20%, rgba(217,181,106,.28), transparent 55%),
    #3a2c19;
  overflow: hidden;
}
/* soft grid texture over the hero */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
 
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 40%, #000 10%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 10%, transparent 72%);
}
.hero__inner {
  position: relative; z-index: 1;
  min-height: calc(88vh - var(--header-h));
  display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 2rem;
  padding: clamp(2rem, 6vw, 4.5rem) 0;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(217,181,106,.18); border: 1px solid rgba(217,181,106,.5);
  color: var(--gold); padding: .45rem 1.05rem; border-radius: 50px;
  font-size: .8rem; font-weight: var(--w-semibold); letter-spacing: .8px; margin-bottom: 1.5rem;
}
.hero h1 {
  color: #fff; font-size: 45px;
  letter-spacing: -0.03em; margin-bottom: 1.15rem;
  text-wrap: balance;
}
.hero h1 .accent {
  color: var(--gold); font-style: italic; font-weight: var(--w-semibold);
}
.hero p { color: #e9e0cd; font-size: 1.1rem; max-width: 540px; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: .55rem 1.4rem; margin-top: 2.2rem;
  padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.14);
}
.hero__trust b { display: block; font-family: var(--serif); font-weight: var(--w-bold); font-size: 1.5rem; color: var(--gold); line-height: 1.1; }
.hero__trust span { font-size: .84rem; color: #cfc4ab; font-weight: var(--w-medium); }
.hero__trust i { width: 1px; height: 34px; background: rgba(255,255,255,.16); }

/* ---------- Hero photograph in an arch frame ---------- */
.hero__art { display: flex; justify-content: center; position: relative; }
.hero__frame {
  position: relative; width: min(420px, 82vw);
  animation: float 7s ease-in-out infinite;
}
.arch {
  border-radius: 999px 999px 20px 20px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
}
.hero__frame .arch { aspect-ratio: 82/102; }
.hero__frame .arch img { width: 100%; height: 100%; object-fit: cover; }
/* thin gold outline offset behind the arch */
.hero__frame::before {
  content: ""; position: absolute; inset: -14px -14px -14px -14px;
  border: 1px solid rgba(217,181,106,.45);
  border-radius: 999px 999px 30px 30px; pointer-events: none;
}
/* floating purity chip */
.hero__chip {
  position: absolute; left: -48px; bottom: 52px; z-index: 2;
  background: rgba(247,242,230,.96); backdrop-filter: blur(6px);
  border-radius: 14px; padding: .85rem 1.1rem; box-shadow: 0 18px 40px rgba(0,0,0,.35);
  display: flex; align-items: center; gap: .7rem; text-align: left;
}
.hero__chip .dot {
  width: 38px; height: 38px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--olive), var(--olive-dark)); color: #fff; font-size: 1rem;
}
.hero__chip b { display: block; font-family: var(--sans); font-size: .9rem; font-weight: var(--w-bold); color: var(--brown); line-height: 1.2; }
.hero__chip span { font-size: .74rem; color: var(--muted); font-weight: var(--w-medium); }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@media (prefers-reduced-motion: reduce) {
  .hero__frame { animation: none; }
}

/* =========================================================
   Jobs
   ========================================================= */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(45,34,19,.9), rgba(86,99,34,.66)),
    url("../img/market.jpg") center/cover;
  color: #fff;
}
.page-hero__inner {
  min-height: 360px;
  display: grid;
  align-content: center;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  max-width: 760px;
}
.page-hero p {
  color: #eee4cf;
  max-width: 640px;
  margin-top: 1rem;
  font-size: 1.08rem;
}
.job-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}
.job-card,
.job-detail,
.job-sidebar,
.empty-state,
.job-modal__dialog {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(76,58,34,.12);
  box-shadow: var(--shadow-sm);
}
.job-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.3rem;
  padding: 1.5rem;
  border-radius: 8px;
}
.job-card h3 {
  margin: .65rem 0 .7rem;
  font-size: 1.45rem;
}
.job-card p,
.job-mini span,
.job-detail p,
.job-richtext {
  color: var(--muted);
}
.job-card__tag,
.job-facts span {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: .38rem .7rem;
  border-radius: 999px;
  background: rgba(109,125,44,.11);
  color: var(--olive-dark);
  font-size: .78rem;
  font-weight: var(--w-semibold);
}
.job-card__meta {
  display: grid;
  gap: .35rem;
  color: var(--brown-dark);
  font-weight: var(--w-semibold);
  font-size: .9rem;
}
.job-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.5rem;
  align-items: start;
}
.job-detail,
.job-sidebar,
.empty-state {
  border-radius: 8px;
  padding: clamp(1.4rem, 3vw, 2rem);
}
.job-detail__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.job-detail__head h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}
.job-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-bottom: 1.5rem;
}
.job-richtext {
  margin-top: 1.2rem;
}
.job-richtext ul,
.job-richtext ol {
  list-style: revert;
  padding-left: 1.25rem;
  margin: .9rem 0;
}
.job-sidebar h2 {
  font-size: 1.55rem;
  margin-bottom: 1rem;
}
.job-mini {
  display: grid;
  gap: .35rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(76,58,34,.12);
}
.job-mini strong {
  color: var(--brown);
}
.empty-state {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}
.empty-state p {
  color: var(--muted);
  margin: .8rem 0 1.4rem;
}
.job-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(43,35,23,.62);
}
.job-modal.open {
  display: grid;
}
.job-modal__dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(92vh, 760px);
  overflow: auto;
  border-radius: 8px;
  padding: clamp(1.4rem, 4vw, 2rem);
}
.job-modal__close {
  position: absolute;
  top: .9rem;
  right: .9rem;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--brown);
  font-size: 1.6rem;
  cursor: pointer;
}
.job-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}
.job-form label {
  display: grid;
  gap: .4rem;
  color: var(--brown-dark);
  font-weight: var(--w-semibold);
}
.job-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(76,58,34,.2);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: .75rem .9rem;
  font: inherit;
}
.job-form button {
  justify-self: start;
}
.form-message {
  margin-top: .8rem;
  font-weight: var(--w-semibold);
}
.form-message.success { color: var(--olive-dark); }
.form-message.error { color: #9b2d21; }

@media (max-width: 980px) {
  .job-grid,
  .job-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .job-detail__head,
  .job-form {
    grid-template-columns: 1fr;
  }
  .job-detail__head {
    display: grid;
  }
}

/* =========================================================
   Marquee ribbon (variety names)
   ========================================================= */
.marquee {
  background: var(--brown); overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08);
}
.marquee__track {
  display: flex; width: max-content; padding: .95rem 0;
  animation: slide 34s linear infinite;
}
.marquee__track span {
  display: inline-flex; align-items: center; gap: 2.6rem; padding-right: 2.6rem;
  font-family: var(--serif); font-style: italic; font-weight: var(--w-semibold);
  font-size: 1.05rem; color: #e9dfc7; white-space: nowrap; letter-spacing: -0.01em;
}
.marquee__track span::after { content: "✦"; color: var(--gold); font-style: normal; font-size: .8rem; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* =========================================================
   Photo bands (full-bleed image + tint)
   ========================================================= */
.band {
  position: relative; color: #fff; isolation: isolate;
  background-size: cover; background-position: center;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}
.band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, rgba(45,34,19,.92), rgba(58,44,25,.78) 55%, rgba(86,99,34,.62));
}
/* stronger tint where light-coloured photos sit behind text */
.band--dark::before {
  background:
    linear-gradient(120deg, rgba(35,26,14,.9), rgba(45,34,19,.86) 55%, rgba(58,66,24,.84)),
    rgba(0,0,0,.2);
}
.band > .container { position: relative; }
.band h2 { color: #fff; }

.quote { max-width: 840px; margin-inline: auto; text-align: center; }
.quote__mark { font-family: var(--serif); font-size: 4rem; line-height: 1; color: var(--gold); opacity: .55; }
.quote p {
  font-family: var(--serif); font-style: italic; font-weight: var(--w-medium);
  font-size: clamp(1.35rem, 2.9vw, 2.05rem); line-height: 1.42; color: #fff;
  letter-spacing: -0.015em; margin: .4rem 0 1.4rem;
}
.quote cite {
  font-style: normal; font-size: .84rem; font-weight: var(--w-semibold);
  letter-spacing: 2.4px; text-transform: uppercase; color: var(--gold);
}

.hero__strip {
  position: relative; z-index: 1;
  background: rgba(0,0,0,.24); border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem;
  padding: 1.05rem; text-align: center;
}
.hero__strip span { color: var(--gold); font-weight: var(--w-semibold); letter-spacing: 1.4px; font-size: .84rem; text-transform: uppercase; }
.hero__strip span::before { content: "✦ "; color: rgba(217,181,106,.7); }

/* =========================================================
   Feature cards (Quality / Purity / Trust)
   ========================================================= */
.grid { display: grid; gap: 1.6rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.feature {
  position: relative; overflow: hidden;
  background: var(--white); border-radius: var(--radius); padding: 2.4rem 1.8rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(76,58,34,.06);
  transition: transform .25s, box-shadow .25s; text-align: center;
}
/* accent bar grows in on hover */
.feature::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 4px;
  background: linear-gradient(90deg, var(--olive), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.feature:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.feature:hover::after { transform: scaleX(1); }
.feature__icon {
  width: 66px; height: 66px; border-radius: 20px; margin: 0 auto 1.2rem;
  display: grid; place-items: center; font-size: 1.7rem;
  background: linear-gradient(135deg, var(--olive), var(--olive-dark)); color: #fff;
  box-shadow: 0 10px 22px rgba(109,125,44,.3);
  transition: transform .3s ease;
}
.feature__icon .ico { width: 28px; height: 28px; stroke-width: 1.6; }
.feature:hover .feature__icon { transform: rotate(-6deg) scale(1.06); }
.feature h3 { font-size: 1.3rem; margin-bottom: .55rem; }
.feature p { color: var(--muted); font-size: .96rem; }

/* =========================================================
   How we work (home) — numbered steps
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; counter-reset: step; }
.step {
  position: relative; background: var(--white); border-radius: var(--radius);
  padding: 2.4rem 1.7rem 2rem; border: 1px solid rgba(76,58,34,.07); box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--serif); font-weight: var(--w-bold); font-size: 2.6rem;
  color: rgba(109,125,44,.16); line-height: 1; display: block; margin-bottom: .5rem;
}
.step h3 { font-size: 1.18rem; margin-bottom: .45rem; }
.step p { color: var(--muted); font-size: .95rem; }

/* =========================================================
   About / split content
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split__media {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--olive) 0%, var(--brown) 100%);
  min-height: 340px; display: grid; place-items: center; padding: 2rem;
}
.split__media svg { width: 55%; height: auto; filter: drop-shadow(0 10px 20px rgba(0,0,0,.3)); }

/* photo variant: tall arch + circular inset */
.split__photo {
  position: relative; padding: 0; background: none; box-shadow: none;
  border-radius: 0; min-height: 0; display: block;
}
.split__photo .arch { aspect-ratio: 9/10.5; box-shadow: var(--shadow); }
.split__photo .arch img { width: 100%; height: 100%; object-fit: cover; }
.split__photo .inset {
  position: absolute; right: -18px; bottom: -24px; width: 42%; max-width: 200px;
  aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  border: 8px solid var(--cream-2); box-shadow: var(--shadow);
}
.split__photo .inset img { width: 100%; height: 100%; object-fit: cover; }

.split h2 { font-size: clamp(1.75rem, 3.6vw, 2.55rem); margin-bottom: 1rem; }
.split p { color: var(--muted); margin-bottom: 1rem; }
.check-list li { display: flex; gap: .7rem; margin-bottom: .7rem; color: var(--ink); }
.check-list li::before {
  content: "✓"; flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--olive); color: #fff; display: grid; place-items: center; font-size: .8rem; font-weight: 700;
}

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat { position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: calc(-.75rem - 1px); top: 50%; transform: translateY(-50%);
  width: 1px; height: 58%; background: rgba(255,255,255,.14);
}
.stat b {
  font-family: var(--serif); font-weight: var(--w-bold); letter-spacing: -0.02em;
  font-size: clamp(2rem, 5vw, 3rem); color: var(--gold); display: block;
}
.stat span { color: #d9cfb8; font-size: .92rem; font-weight: var(--w-medium); }

/* =========================================================
   Product cards
   ========================================================= */
.product {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
  border: 1px solid rgba(76,58,34,.06); display: flex; flex-direction: column;
}
.product:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.product__top {
  height: 160px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--cream-2), var(--cream)); position: relative;
  border-bottom: 1px solid rgba(76,58,34,.06);
}
.product__top svg, .product__top img { width: 84px; height: 84px; transition: transform .35s ease; }
.product:hover .product__top img, .product:hover .product__top svg { transform: scale(1.08) rotate(-4deg); }

/* photo variant */
.product__top--photo { height: 210px; overflow: hidden; padding: 0; }
.product__top--photo img { width: 100%; height: 100%; object-fit: cover; }
.product:hover .product__top--photo img { transform: scale(1.07) rotate(0); }
.product__tag {
  position: absolute; top: 12px; right: 12px; background: var(--olive); color: #fff;
  font-size: .7rem; font-weight: var(--w-bold); padding: .28rem .75rem; border-radius: 50px;
  letter-spacing: .8px; text-transform: uppercase;
}
.product__body { padding: 1.4rem 1.4rem 1.6rem; flex: 1; }
.product__body h3 { font-size: 1.24rem; margin-bottom: .4rem; }
.product__body p { color: var(--muted); font-size: .93rem; }

.section-foot { text-align: center; margin-top: 2.6rem; }

/* =========================================================
   Gallery
   ========================================================= */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.gallery-grid figure {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 4/3; box-shadow: var(--shadow-sm); cursor: pointer;
  background: var(--cream-2); margin: 0;
}
.gallery-grid figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery-grid figure:hover img { transform: scale(1.08); }
.gallery-grid figure::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(transparent 45%, rgba(30,22,10,.78));
}
.gallery-grid figcaption {
  position: absolute; inset: auto 0 0 0; z-index: 1;
  color: #fff; padding: 1.4rem 1rem .9rem; font-size: .92rem; font-weight: var(--w-semibold);
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
}
.gallery-grid figcaption .ico { width: 17px; height: 17px; color: var(--gold); opacity: 0; transition: opacity .25s; }
.gallery-grid figure:hover figcaption .ico { opacity: 1; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(22,16,7,.94); place-items: center; padding: 2rem;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1040px, 92vw); max-height: 84vh; border-radius: 12px; object-fit: contain; }
.lightbox figcaption {
  text-align: center; color: #e6dcc5; margin-top: 1rem;
  font-size: .92rem; font-weight: var(--w-medium); letter-spacing: .4px;
}
.lightbox__close {
  position: absolute; top: 1rem; right: 1.4rem; width: 46px; height: 46px;
  border: 0; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff;
  font-size: 1.6rem; line-height: 1; cursor: pointer; transition: background .2s;
}
.lightbox__close:hover { background: rgba(255,255,255,.2); }

/* =========================================================
   Contact
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.5rem; }
.contact-card {
  background: var(--white); border-radius: var(--radius); padding: 1.6rem;
  box-shadow: var(--shadow-sm); display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.1rem;
  border: 1px solid rgba(76,58,34,.06);
  transition: transform .25s, box-shadow .25s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-card .ic {
  flex: none; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--olive), var(--olive-dark)); color: #fff; font-size: 1.2rem;
  box-shadow: 0 8px 18px rgba(109,125,44,.28);
}
.contact-card .ic .ico { width: 22px; height: 22px; }
.contact-card h4 { color: var(--brown); margin-bottom: .2rem; font-family: var(--serif); font-size: 1.08rem; }
.contact-card p, .contact-card a { color: var(--muted); font-size: .95rem; word-break: break-word; }
.contact-card a:hover { color: var(--olive); }

.contact-actions { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: .8rem; }
.btn--sm { padding: .5rem 1rem; font-size: .84rem; border-radius: 50px; }
.btn--wa { background: #25d366; color: #08331b; box-shadow: 0 6px 16px rgba(37,211,102,.32); }
.btn--wa:hover { background: #1fbb59; }
.btn--call { background: var(--brown); color: #fff; }
.btn--call:hover { background: var(--brown-dark); }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { display: block; border: 0; width: 100%; height: 420px; }

.form { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; color: var(--brown-dark); }
.field input, .field textarea {
  width: 100%; padding: .8rem 1rem; border: 1px solid rgba(76,58,34,.18);
  border-radius: var(--radius-sm); font-family: inherit; font-size: .76rem; background: var(--cream);
  transition: border .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--olive); }
.form-note { font-size: .85rem; color: var(--muted); margin-top: .8rem; }
.form-success {
  display: none; background: rgba(109,125,44,.12); border: 1px solid var(--olive);
  color: var(--olive-dark); padding: .9rem 1rem; border-radius: var(--radius-sm); margin-top: 1rem; font-weight: 600;
}
.contact-form-message {
  margin: .85rem 0 1.2rem;
  padding: .72rem .9rem;
  border-radius: 8px;
  font-size: .94rem;
  font-weight: 500;
  line-height: 1.45;
  box-shadow: none;
  transition: box-shadow .2s ease, transform .2s ease;
}
.contact-form-message:focus,
.contact-form-message:hover {
  outline: none;
  box-shadow: 0 10px 24px rgba(39, 126, 75, .12);
  transform: translateY(-1px);
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; isolation: isolate; overflow: hidden;
  background: linear-gradient(120deg, var(--olive), var(--olive-dark));
  color: #fff; border-radius: var(--radius); padding: clamp(2.2rem, 5vw, 3.6rem);
  display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow);
}
/* optional photo underlay: <div class="cta-band cta-band--photo"> */
.cta-band--photo { background: none; }
.cta-band--photo::after {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: url("../img/band-cta.jpg") center/cover no-repeat;
}
.cta-band--photo::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, rgba(86,99,34,.94), rgba(76,58,34,.86));
}
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
.cta-band p { color: rgba(255,255,255,.9); margin-top: .3rem; }

/* =========================================================
   Page banner (inner pages)
   ========================================================= */
.page-banner {
  position: relative; isolation: isolate; overflow: hidden;
  background: #3a2c19 center/cover no-repeat;
  color: #fff; text-align: center; padding: clamp(3.4rem, 8vw, 5.4rem) 0 clamp(2.8rem, 6vw, 4.2rem);
}
.page-banner::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, rgba(35,26,14,.92), rgba(58,44,25,.82) 55%, rgba(86,99,34,.68));
}
.page-banner .eyebrow { color: var(--gold); }
.page-banner h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.2rem); margin-bottom: .7rem; letter-spacing: -0.025em; }
.breadcrumb {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  color: #e0d5bc; font-size: .9rem; font-weight: var(--w-medium);
}
.breadcrumb .ico { width: 14px; height: 14px; color: var(--gold); }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--brown-dark); color: #d9cfb8; padding: 4rem 0 0;
}
/* faint garlic texture behind the footer */
.site-footer::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .07;
  background: url("../img/band-stats.jpg") center/cover no-repeat;
}
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.5fr; gap: 2.5rem; padding-bottom: 2.8rem; }
.site-footer .brand-text b { color: #fff; }
.site-footer h5 {
  color: #fff; font-family: var(--sans); font-size: .8rem; font-weight: var(--w-bold);
  letter-spacing: 2.4px; text-transform: uppercase; margin-bottom: 1.3rem;
}
.footer-about p { margin: 1.1rem 0; font-size: .95rem; max-width: 340px; }

.footer-social { display: flex; gap: .6rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,.07); color: #e2d8c0;
  transition: background .2s, color .2s, transform .2s;
}
.footer-social a:hover { background: var(--gold); color: var(--brown-dark); transform: translateY(-3px); }
.footer-social .ico { width: 18px; height: 18px; }

.footer-links li { margin-bottom: .65rem; }
.footer-links a {
  font-size: .95rem; display: inline-flex; align-items: center; gap: .55rem;
  transition: color .2s, gap .2s;
}
.footer-links a::before {
  content: ""; width: 7px; height: 1px; background: var(--gold); flex: none;
  transition: width .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-links a:hover::before { width: 15px; }

.footer-contact li { display: flex; gap: .7rem; margin-bottom: .9rem; font-size: .93rem; align-items: flex-start; }
.footer-contact .ic { color: var(--gold); flex: none; display: grid; place-items: center; padding-top: 3px; }
.footer-contact .ic .ico { width: 17px; height: 17px; }
.footer-contact a { transition: color .2s; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1.3rem 0; }
.footer-bottom__inner {
  display: flex; align-items: center; justify-content: space-between; gap: .6rem 1.5rem;
  flex-wrap: wrap; font-size: .86rem; color: #b8ad92;
}
.footer-bottom__values { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-bottom__values span { display: inline-flex; align-items: center; gap: .45rem; }
.footer-bottom__values .ico { width: 14px; height: 14px; color: var(--gold); }
.footer-bottom a { color: var(--gold); }

@media (max-width: 780px) {
  .footer-bottom__inner { justify-content: center; text-align: center; }
}

/* =========================================================
   Reveal on scroll
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__art { order: -1; }
  .hero__frame { width: min(320px, 74vw); }
  .split { grid-template-columns: 1fr; }
  .split__photo { max-width: 480px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 2.2rem; }
  .stat + .stat::before { display: none; }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  /* the frame is too narrow to host an overlapping chip — drop it below */
  .hero__frame::before { display: none; }
  .hero__chip {
    position: static; margin: 1.2rem auto 0;
    width: max-content; max-width: 100%;
    box-shadow: var(--shadow-sm);
  }
}

@media (max-width: 780px) {
  .nav-toggle { display: flex; }
  /* anchored to the header itself, so the topbar can never overlap it */
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); flex-direction: column; align-items: stretch;
    gap: 0; padding: 0 .8rem; box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(76,58,34,.12);
    max-height: 0; opacity: 0; visibility: hidden; overflow: hidden;
    transition: max-height .35s ease, opacity .25s ease, padding .35s ease, visibility .35s;
  }
  .nav-links.open {
    max-height: 75vh; opacity: 1; visibility: visible; overflow-y: auto;
    padding: .8rem;
  }
  .nav-links a { padding: .9rem 1rem; border-radius: 8px; }
  .nav-cta { margin: .4rem 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero__strip { gap: 1rem; }
  .brand-text b { font-size: 1.1rem; }
  .split__photo .inset { right: 0; width: 36%; }
  .hero__trust i { display: none; }
}

/* Final icon and footer alignment fixes */
.brand img,
.footer-about .brand img {
  width: auto !important;
  height: auto !important;
  max-width: 150px !important;
  max-height: 74px !important;
  object-fit: contain !important;
  flex: 0 0 auto;
  
}

.product__top img,
.gallery-grid figure img {
  object-fit: contain !important;
}

.product__top img {
  width: 118px !important;
  height: 118px !important;
}

.gallery-grid figure img {
  width: 120px !important;
  height: 120px !important;
}

.footer-grid.footer-grid--kanak {
  grid-template-columns: minmax(280px, 1.5fr) minmax(160px, .7fr) minmax(280px, 1.2fr) !important;
  align-items: flex-start;
}

.footer-about .brand {
  align-items: center;
}

.footer-about p {
  margin-top: 1rem;
}

.footer-contact .ic {
  min-width: 36px;
  width: 36px;
  height: 36px;
  padding-top: 0;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(135deg, var(--olive), var(--olive-dark));
  font-size: .62rem;
  font-weight: 900;
}

.footer-contact .footer-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card .contact-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card .contact-icon--whatsapp {
  background: #25d366;
  color: #fff;
}

.feature__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-whatsapp {
  font-size: 0;
}

.floating-whatsapp svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  padding: 0 !important;
}

.footer-bottom__inner.footer-bottom__inner--kanak {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem 1.5rem;
  min-height: 58px;
  padding-block: .9rem;
  color: #cfc4ab;
}

.footer-bottom__inner--kanak p {
  margin: 0;
}

.footer-bottom__inner--kanak a {
  color: var(--gold);
  font-weight: 800;
}

.footer-bottom__inner--kanak a:hover {
  color: #fff;
}

.footer-bottom__tagline {
  text-align: right;
  color: #a99d82;
  font-size: .84rem;
}

@media (max-width: 960px) {
  .footer-grid.footer-grid--kanak {
    grid-template-columns: 1fr 1fr !important;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .footer-grid.footer-grid--kanak {
    grid-template-columns: 1fr !important;
  }

  .footer-bottom__inner.footer-bottom__inner--kanak {
    justify-content: center;
    text-align: center;
  }

  .footer-bottom__tagline {
    width: 100%;
    text-align: center;
  }

  .brand img,
  .footer-about .brand img {
    width: 50px !important;
    height: 50px !important;
    flex-basis: 50px;
  }
}

/* Product detail pages and improved contact experience */
.floating-whatsapp {
  right: 22px !important;
  bottom: 22px !important;
  width: 62px !important;
  height: 62px !important;
  background: #25d366 !important;
  color: #fff !important;
  border: 3px solid rgba(255,255,255,.92);
  box-shadow: 0 16px 34px rgba(37, 211, 102, .38), 0 6px 18px rgba(0,0,0,.22) !important;
}

.floating-whatsapp::after {
  content: "WhatsApp";
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--brown-dark);
  color: #fff;
  border-radius: 999px;
  padding: .38rem .7rem;
  font-size: .72rem;
  font-weight: 800;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, right .2s ease;
}

.floating-whatsapp:hover::after {
  right: 76px;
  opacity: 1;
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

.contact-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin: -1rem 0 2rem;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border: 1px solid rgba(217,181,106,.32);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(58,44,25,.96), rgba(86,99,34,.86)),
    var(--brown-dark);
  box-shadow: var(--shadow-sm);
}

.contact-highlight .eyebrow {
  color: var(--gold);
  margin-bottom: .45rem;
}

.contact-highlight h3 {
  color: #fff;
  max-width: 650px;
  font-size: clamp(1.12rem, 2vw, 1.55rem);
}

.contact-highlight__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: flex-end;
}

.contact-form-card {
  position: relative;
  overflow: hidden;
}

.contact-form-card .row {
  margin-left: 0;
  margin-right: 0;
  --bs-gutter-x: 0;
}

.contact-form-card .row > .field {
  padding-left: 0;
  padding-right: 0;
}

.contact-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--olive), var(--gold));
}

.form-title {
  margin-bottom: 1.2rem;
}

.form-title span {
  display: inline-block;
  color: var(--olive-dark);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: .35rem;
}

.form-title h3 {
  font-size: clamp(1.28rem, 2vw, 1.7rem);
}

.product__link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  color: var(--olive-dark);
  font-weight: 900;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .45px;
}

.product__link::after {
  content: ">";
  margin-left: .45rem;
  color: var(--gold);
  transition: transform .2s ease;
}

.product__link:hover::after {
  transform: translateX(4px);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.product-detail__visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  border: 1px solid rgba(217,181,106,.35);
  background:
    radial-gradient(circle at 50% 38%, #fff 0%, #fff8e8 36%, rgba(217,181,106,.28) 37%, rgba(109,125,44,.18) 100%),
    linear-gradient(135deg, var(--cream), var(--cream-2));
  box-shadow: var(--shadow);
}

.product-detail__visual img {
  width: min(260px, 62%);
  filter: drop-shadow(0 20px 28px rgba(60,45,25,.22));
}

.product-detail__visual .product__tag {
  top: 18px;
  right: 18px;
}

.product-detail__content h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin: .55rem 0 .9rem;
}

.product-detail__lead {
  color: var(--brown);
  font-weight: 700;
  font-size: 1.08rem;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  margin: 1.4rem 0 1.7rem;
}

.detail-list li {
  border: 1px solid rgba(109,125,44,.16);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.68);
  padding: .8rem .9rem;
  color: var(--ink);
  font-weight: 700;
}



.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

@media (max-width: 900px) {
  .contact-highlight,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .contact-highlight {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-highlight__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .product-detail__visual {
    min-height: 320px;
  }
}

@media (max-width: 560px) {
  .floating-whatsapp::after {
    display: none;
  }

  .floating-whatsapp {
    width: 56px !important;
    height: 56px !important;
    right: 14px !important;
    bottom: 14px !important;
  }

  .contact-highlight__actions,
  .contact-highlight__actions .btn,
  .product-detail__actions,
  .product-detail__actions .btn,
  .detail-list {
    width: 100%;
  }

  .detail-list {
    grid-template-columns: 1fr;
  }
}

/* Real image placement across hero, headers, about and product detail pages */
.hero.hero--image {
  background:
    linear-gradient(105deg, rgba(36, 20, 4, .92) 0%, rgba(59, 36, 13, .82) 46%, rgba(79, 97, 24, .70) 100%),
    var(--hero-bg) center/cover no-repeat !important;
}

.hero__image-card {
  padding: 0 !important;
}

.hero__image-card .hero__photo {
  width: 100%;
  height: clamp(250px, 36vw, 390px);
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.hero__image-card .seed-panel {
  margin: 0;
  border-radius: 0 0 8px 8px;
}

.split__media.split__media--photo {
  padding: 0;
  min-height: 390px;
  overflow: hidden;
  background: var(--brown-dark);
}

.split__media.split__media--photo img {
  width: 100%;
  height: 100%;
  max-height: 390px;
  object-fit: cover;
}

.page-banner--about {
  background-image: linear-gradient(120deg, rgba(35,26,14,.88), rgba(58,44,25,.76), rgba(86,99,34,.66)), url("../img/about.jpg");
}

.page-banner--contact {
  background-image: linear-gradient(120deg, rgba(35,26,14,.90), rgba(58,44,25,.80), rgba(86,99,34,.70)), url("../img/market.jpg");
}

.page-banner--gallery {
  background-image: linear-gradient(120deg, rgba(35,26,14,.88), rgba(58,44,25,.78), rgba(86,99,34,.62)), url("../img/g-heap.jpg");
}

.product__top.product__top--photo img,
.gallery-grid figure img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.gallery-grid {
  grid-auto-flow: dense;
}

.gallery-grid figure {
  min-height: 260px;
}

.gallery-grid figure:nth-child(1),
.gallery-grid figure:nth-child(6),
.gallery-grid figure:nth-child(11) {
  grid-column: span 2;
}

.gallery-grid figcaption {
  font-size: .96rem;
  letter-spacing: .2px;
}

@media (max-width: 780px) {
  .gallery-grid figure:nth-child(1),
  .gallery-grid figure:nth-child(6),
  .gallery-grid figure:nth-child(11) {
    grid-column: span 1;
  }
}

.product__top.product__top--photo {
  min-height: 210px;
  background: var(--cream-2);
}

.product-detail__visual.product-detail__visual--photo {
  padding: 0;
  overflow: hidden;
  background: var(--brown-dark);
}

.product-detail__visual.product-detail__visual--photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: none;
}

.product-detail__visual.product-detail__visual--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(36,20,4,.34));
  pointer-events: none;
}

.product-detail__visual.product-detail__visual--photo .product__tag {
  z-index: 1;
}

@media (max-width: 900px) {
  .product-detail__visual.product-detail__visual--photo img {
    min-height: 320px;
  }
}

/* Header refinement: logo and Home tab stay together */
.site-header {
  background: rgba(255, 250, 241, .97) !important;
  border-bottom: 1px solid rgba(76,58,34,.10) !important;
  box-shadow: 0 8px 24px rgba(60,45,25,.07);
}

.nav {
  height: 82px;
  justify-content: space-between;
  gap: 1.2rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  min-width: 0;
}

.site-header .brand img {
  width: 130px !important;
  height: 58px !important;
  flex-basis: 130px !important;
  object-fit: contain !important;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  filter: drop-shadow(0 5px 12px rgba(60,45,25,.12));
}

.site-header .nav-links {
  gap: .15rem;
}

.site-header .nav-links a {
  position: relative;
  border-radius: 999px;
  padding: .62rem .9rem;
  color: var(--brown-dark);
  font-weight: 800;
  font-size: .91rem;
}

.site-header .nav-links a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--olive), var(--olive-dark));
}

.site-header .nav-links a:hover:not(.active) {
  color: var(--olive-dark);
  background: rgba(109,125,44,.10);
}

.nav-quote {
  flex: none;
  min-height: 42px;
  padding: .68rem 1.18rem;
  font-size: .78rem;
}

.nav-mobile-quote {
  display: none;
}

@media (max-width: 980px) {
  .nav {
    height: 76px;
  }

  .site-header .brand img {
    width: 112px !important;
    height: 52px !important;
    flex-basis: 112px !important;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-quote {
    display: none;
  }

  .nav-left {
    width: 100%;
  }

  .site-header .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
    padding: 0 .9rem;
    background: var(--cream);
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(76,58,34,.12);
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: max-height .35s ease, opacity .25s ease, padding .35s ease, visibility .35s;
  }

  .site-header .nav-links.open {
    max-height: 75vh;
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
    padding: .9rem;
  }

  .site-header .nav-links a {
    border-radius: 8px;
    padding: .9rem 1rem;
  }

  .nav-mobile-quote {
    display: block;
  }

  .site-header .nav-mobile-quote a {
    background: var(--olive);
    color: #fff;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .4px;
  }
}

@media (max-width: 520px) {
  .site-header .brand img {
    width: 96px !important;
    height: 46px !important;
    flex-basis: 96px !important;
  }
}

/* Final WhatsApp floating button: visible on every page */
body .floating-whatsapp {
  position: fixed !important;
  right: 22px !important;
  bottom: 22px !important;
  left: auto !important;
  top: auto !important;
  z-index: 9999 !important;
  width: 62px !important;
  height: 62px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: #25d366 !important;
  color: #fff !important;
  border: 4px solid #ffffff !important;
  box-shadow: 0 18px 36px rgba(37, 211, 102, .38), 0 8px 22px rgba(0, 0, 0, .25) !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  font-size: 0 !important;
  line-height: 1 !important;
}

body .floating-whatsapp svg {
  display: block !important;
  width: 34px !important;
  height: 34px !important;
  fill: #ffffff !important;
  stroke: none !important;
}

body .floating-whatsapp svg path {
  fill: #ffffff !important;
  stroke: none !important;
}

body .floating-whatsapp:hover {
  background: #1fbd5a !important;
  transform: translateY(-4px) scale(1.03) !important;
}

body .floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  background: rgba(37, 211, 102, .16);
  z-index: -1;
}

body .floating-whatsapp::after {
  content: "WhatsApp";
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: #241404;
  color: #fff;
  border-radius: 999px;
  padding: .42rem .78rem;
  font-size: .74rem;
  font-weight: 800;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, right .2s ease;
}

body .floating-whatsapp:hover::after {
  right: 78px;
  opacity: 1;
}

@media (max-width: 560px) {
  body .floating-whatsapp {
    right: 14px !important;
    bottom: 14px !important;
    width: 56px !important;
    height: 56px !important;
    border-width: 3px !important;
  }

  body .floating-whatsapp svg {
    width: 31px !important;
    height: 31px !important;
  }

  body .floating-whatsapp::after {
    display: none !important;
  }
}

/* Restore old-style home hero with garlic background and light logo card */
.hero.hero--brand {
  color: #fdfaf1;
  background:
    linear-gradient(105deg, rgba(36,20,4,.86) 0%, rgba(59,36,13,.74) 48%, rgba(79,97,24,.58) 100%),
    url("../img/hero.jpg") center / cover no-repeat !important;
}

.hero.hero--brand::before {
  opacity: .10;
}

.hero.hero--brand h1 {
  color: #fff;
  text-shadow: 0 8px 24px rgba(0,0,0,.30);
}

.hero.hero--brand .hero__tagline,
.hero.hero--brand .hero__points,
.hero.hero--brand .hero__trust span {
  color: #f0e5cf;
}

.hero.hero--brand .hero__badge {
  color: var(--gold);
  background: rgba(36,20,4,.44);
  border-color: rgba(217,181,106,.42);
  backdrop-filter: blur(4px);
}

.hero.hero--brand .hero__image-card {
  background: linear-gradient(180deg, rgba(255,250,241,.92), rgba(243,234,214,.90));
  border: 1px solid rgba(217,181,106,.46);
border-radius: 8px;
}

.hero.hero--brand .hero__photo {
  height: clamp(300px, 36vw, 430px);
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: var(--cream);
}

.hero.hero--brand .seed-panel {
  background: rgba(255,250,241,.96);
  color: var(--ink);
  border-color: rgba(109,125,44,.22);
}

.hero.hero--brand .seed-panel h2 {
  color: var(--brown);
}

.hero.hero--brand .seed-panel p {
  color: var(--muted);
}

.hero.hero--brand .hero__strip {
  background: rgba(0,0,0,.24);
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero.hero--brand .hero__strip span {
  color: var(--gold);
}

/* Restore premium inner-page hero banners with a slightly lighter overlay */
.page-banner {
  background-color: #3a2c19 !important;
  background-size: cover !important;
  background-position: center !important;
}

.page-banner::before {
  background:
    linear-gradient(120deg, rgba(35,26,14,.78), rgba(58,44,25,.62) 56%, rgba(86,99,34,.48)) !important;
}

.page-banner h1 {
  color: #fff !important;
  text-shadow: 0 10px 24px rgba(0,0,0,.30) !important;
}

.page-banner .breadcrumb {
  color: #efe4cb !important;
}

.page-banner .breadcrumb a {
  color: var(--gold) !important;
}

.page-banner--about {
  background-image: url("../img/about.jpg") !important;
}

.page-banner--contact {
  background-image: url("../img/market.jpg") !important;
}

.page-banner--gallery {
  background-image: url("../img/g-heap.jpg") !important;
}

.page-banner--products {
  background-image: url("../img/seeds.jpg") !important;
}

.page-banner--product-detail {
  background-image: url("../img/p-ooty.jpg") !important;
}

.page-banner--services {
  background-image: url("../img/g-bulk.jpg") !important;
}

/* Final header center alignment and lighter hero treatment */
.site-header .nav {
  display: grid !important;
  grid-template-columns: 180px minmax(0, 1fr) 180px;
  align-items: center;
  height: 86px !important;
}

.site-header .brand {
  justify-self: start;
}

.site-header .brand img {
  width: auto !important;
  height: auto !important;
  max-width: 150px !important;
  max-height: 70px !important;
  flex-basis: auto !important;
}

.site-header .nav-links {
  justify-self: center;
  justify-content: center;
  gap: .35rem !important;
}

.site-header .nav-quote {
  justify-self: end;
  min-height: 46px;
  padding-inline: 1.35rem;
}

.hero.hero--light {
  color: var(--ink);
  background:
    linear-gradient(105deg, rgba(255,250,241,.98) 0%, rgba(255,250,241,.90) 37%, rgba(239,231,211,.66) 62%, rgba(109,125,44,.18) 100%),
    var(--hero-bg) center right / cover no-repeat !important;
}

.hero.hero--light::before {
  opacity: .08;
  background-image:
    linear-gradient(rgba(76,58,34,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76,58,34,.12) 1px, transparent 1px);
}

.hero.hero--light h1 {
  color: var(--brown-dark);
}

.hero.hero--light .hero__tagline {
  color: #554936;
}

.hero.hero--light .hero__badge {
  color: var(--olive-dark);
  background: rgba(109,125,44,.12);
  border-color: rgba(109,125,44,.24);
}

.hero.hero--light .btn--outline {
  border-color: rgba(76,58,34,.42);
  color: var(--brown-dark);
}

.hero.hero--light .btn--outline:hover {
  background: var(--brown-dark);
  color: #fff;
}

.hero.hero--light .hero__strip {
  background: rgba(255,250,241,.88);
  border-top: 1px solid rgba(76,58,34,.12);
}

.hero.hero--light .hero__strip span {
  color: var(--olive-dark);
}

.hero__image-card {
  box-shadow: 0 28px 60px rgba(76,58,34,.20) !important;
}

.hero__image-card .hero__photo {
  object-position: center;
}

@media (max-width: 980px) {
  .site-header .nav {
    display: flex !important;
    height: 76px !important;
  }

  .site-header .brand img {
    width: 104px !important;
    height: 58px !important;
    flex-basis: 104px !important;
  }

  .site-header .nav-links {
    justify-content: flex-start;
  }
}

/* Restore dark premium home hero */


.hero.hero--image:not(.hero--light) .hero__inner {
  min-height: calc(88vh - var(--header-h));
  align-items: center;
}

.hero.hero--image:not(.hero--light) h1 {
  color: #fff;
  text-shadow: 0 8px 24px rgba(0,0,0,.28);
}

.hero.hero--image:not(.hero--light) .hero__tagline {
  color: #f1e8d6;
  text-shadow: 0 4px 14px rgba(0,0,0,.24);
}

.hero.hero--image:not(.hero--light) .hero__badge {
  color: var(--gold);
  background: rgba(36,20,4,.44);
  border-color: rgba(217,181,106,.42);
  backdrop-filter: blur(4px);
}

.hero.hero--image:not(.hero--light) .btn--outline {
  border-color: rgba(255,255,255,.7);
  color: #fff;
}

.hero.hero--image:not(.hero--light) .btn--outline:hover {
  background: #fff;
  color: var(--brown);
}

.hero.hero--image:not(.hero--light) .hero__strip {
  background: rgba(0,0,0,.24);
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero.hero--image:not(.hero--light) .hero__strip span {
  color: var(--gold);
}

.hero.hero--image:not(.hero--light) .seed-panel {
  background: rgba(255,250,241,.92);
  color: var(--ink);
  padding: 15px 15px 1px;
}

.hero.hero--image:not(.hero--light) .seed-panel h2 {
  color: var(--brown);
}

.hero.hero--image:not(.hero--light) .seed-panel p {
  color: var(--muted);
}

/* Hero and banner visual tuning */
.hero.hero--light {
  min-height: calc(100vh - 86px);
  background:
    linear-gradient(105deg, rgba(247,242,230,.86) 0%, rgba(247,242,230,.72) 36%, rgba(231,222,197,.46) 58%, rgba(109,125,44,.20) 100%),
    var(--hero-bg) center center / cover no-repeat !important;
}

.hero.hero--light .hero__inner {
  min-height: calc(100vh - 150px);
  align-items: center;
  padding-top: clamp(3.2rem, 7vw, 5.4rem);
  padding-bottom: clamp(3.2rem, 7vw, 5.4rem);
}

.hero.hero--light .hero__copy {
  max-width: 760px;
}

.hero.hero--light h1 {
  color: #352511;
  font-size: clamp(2.6rem, 5.2vw, 4.7rem);
  line-height: 1.08;
}

.hero.hero--light .hero__tagline {
  color: #3f3425;
  font-weight: 500;
}

.hero.hero--light .hero__badge {
  background: rgba(109, 125, 44, .16);
  border-color: rgba(86, 99, 34, .28);
  color: #526322;
}

.hero.hero--light .hero__image-card {
  background: rgba(255,250,241,.74);
  backdrop-filter: blur(6px);
}

.hero.hero--light .hero__image-card .hero__photo {
  height: clamp(300px, 39vw, 460px);
  object-position: center;
}

.hero.hero--light .seed-panel {
  background: rgba(58,44,25,.82);
  color: #fff;
  border-color: rgba(217,181,106,.35);
}

.hero.hero--light .seed-panel h2 {
  color: #fff;
}

.hero.hero--light .seed-panel p {
  color: rgba(255,255,255,.86);
}

.page-banner--about {
  background-image:
    linear-gradient(120deg, rgba(58,44,25,.72), rgba(58,44,25,.58), rgba(109,125,44,.46)),
    url("../img/about.jpg") !important;
}

.page-banner--about h1 {
  text-shadow: 0 10px 24px rgba(0,0,0,.32);
}

/* =========================================================
   Home hero — brand gradient background + richer copy column
   ========================================================= */


.hero__points {
  display: flex; flex-wrap: wrap; gap: .7rem 1.6rem;
  margin: 0 0 2rem;
}
.hero__points li {
  display: inline-flex; align-items: center; gap: .55rem;
  color: #f2ead6; font-size: .93rem; font-weight: var(--w-medium);
}
.hero__points .tick {
  width: 24px; height: 24px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: rgba(217,181,106,.16);
  border: 1px solid rgba(217,181,106,.45);
  color: var(--gold);
}
.hero__points .tick svg {
  width: 13px; height: 13px;
  fill: none; stroke: currentColor; stroke-width: 2.6;
  stroke-linecap: round; stroke-linejoin: round;
}

.hero__tagline { margin-bottom: 1.5rem; }

@media (max-width: 980px) {
  .hero__points { justify-content: center; }
  .hero__trust { justify-content: center; }
}

/* Last-resort clamp for the floating WhatsApp icon */
html body a.floating-whatsapp,
html body a.floating-whatsapp:link,
html body a.floating-whatsapp:visited {
  width: 62px !important;
  height: 62px !important;
  min-width: 62px !important;
  min-height: 62px !important;
  max-width: 62px !important;
  max-height: 62px !important;
  position: fixed !important;
  right: 22px !important;
  bottom: 22px !important;
  left: auto !important;
  top: auto !important;
  overflow: visible !important;
  display: flex !important;
}

html body a.floating-whatsapp > svg {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  flex: 0 0 34px !important;
}

/* Kanak UI must win over the previous demo theme styles */
html body.cyber-frontend .site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
  background: rgba(247,242,230,.92) !important;
  backdrop-filter: blur(10px) !important;
  border-bottom: 1px solid rgba(76,58,34,.12) !important;
  box-shadow: none !important;
}

html body.cyber-frontend .site-header .nav {
  height: var(--header-h) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem !important;
  padding: 0 !important;
}

html body.cyber-frontend .site-header .brand {
  display: flex !important;
  align-items: center !important;
}

html body.cyber-frontend .site-header .brand img {
  width: auto !important;
  height: auto !important;
  max-width: 150px !important;
  max-height: 68px !important;
  object-fit: contain !important;
}

html body.cyber-frontend .site-header .nav-links {
  display: flex !important;
  align-items: center !important;
  gap: .3rem !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

html body.cyber-frontend .site-header .nav-links a {
  padding: .55rem .95rem !important;
  border-radius: 8px !important;
  color: var(--brown-dark) !important;
  font-weight: var(--w-medium) !important;
  background: transparent !important;
}

html body.cyber-frontend .site-header .nav-links a.active {
  color: var(--olive) !important;
  background: transparent !important;
  font-weight: var(--w-semibold) !important;
}

html body.cyber-frontend .site-footer {
  background: var(--brown-dark) !important;
  color: #e7ddc8 !important;
  padding: 0 !important;
}

html body.cyber-frontend .footer-grid.footer-grid--kanak {
  display: grid !important;
  grid-template-columns: 1.2fr .8fr 1.2fr !important;
  gap: 2rem !important;
  padding: clamp(3rem, 6vw, 5rem) 0 !important;
}

html body.cyber-frontend .site-footer h5 {
  color: #fff !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

html body.cyber-frontend .site-footer a {
  color: inherit !important;
}

html body.cyber-frontend .footer-bottom {
  background: rgba(0,0,0,.15) !important;
  padding: 1rem 0 !important;
}

html body.cyber-frontend .footer-bottom__inner--kanak {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem !important;
  color: #cfc4ab !important;
}

@media (max-width: 900px) {
  html body.cyber-frontend .footer-grid.footer-grid--kanak {
    grid-template-columns: 1fr !important;
  }
}

/* Final Kanak header/footer alignment */
html body.cyber-frontend {
  --maxw: 1180px;
  --header-h: 85px;
}

html body.cyber-frontend .container {
  width: min(92%, var(--maxw)) !important;
  max-width: var(--maxw) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

html body.cyber-frontend .site-header .nav {
  display: grid !important;
  grid-template-columns: 150px minmax(0, 1fr) 150px !important;
  align-items: center !important;
  height: var(--header-h) !important;
  gap: 1rem !important;
}

html body.cyber-frontend .site-header .brand {
  justify-self: start !important;
  min-width: 0 !important;
}

html body.cyber-frontend .site-header .brand img {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 132px !important;
  max-height: 89px !important;
  object-fit: contain !important;
  object-position: left center !important;
  flex: 0 0 auto !important;
  border-radius: 0 !important;
  background: transparent !important;
}

html body.cyber-frontend .site-header .nav-links {
  justify-self: center !important;
  justify-content: center !important;
  min-width: 0 !important;
  gap: .18rem !important;
}

html body.cyber-frontend .site-header .nav-links a {
  display: block !important;
  white-space: nowrap !important;
  padding: .55rem .82rem !important;
  font-size: .95rem !important;
  line-height: 1.2 !important;
}

html body.cyber-frontend .site-header .nav-quote {
  justify-self: end !important;
  min-height: 46px !important;
  padding: .75rem 1.28rem !important;
  white-space: nowrap !important;
}

html body.cyber-frontend .site-footer .brand img,
html body.cyber-frontend .footer-about .brand img {
  width: auto !important;
  height: auto !important;
  max-width: 150px !important;
  max-height: 76px !important;
  object-fit: contain !important;
  object-position: left center !important;
}

@media (max-width: 1080px) {
  html body.cyber-frontend .site-header .nav {
    grid-template-columns: 132px minmax(0, 1fr) 132px !important;
  }

  html body.cyber-frontend .site-header .brand img {
    max-width: 116px !important;
    max-height: 78px !important;
  }

  html body.cyber-frontend .site-header .nav-links a {
    padding-inline: .62rem !important;
    font-size: .9rem !important;
  }
}

@media (max-width: 980px) {
  html body.cyber-frontend .site-header .nav {
    display: flex !important;
    height: 76px !important;
 position: relative !important;
  }

  html body.cyber-frontend .site-header .brand img {
    max-width: 112px !important;
    max-height: 76px !important;
  }
 html body.cyber-frontend .site-header .nav-toggle {
    display: flex !important;
    margin-left: auto !important;
    flex: 0 0 44px !important;
    position: relative !important;
    z-index: 102 !important;
  }

  html body.cyber-frontend .site-header .nav-quote {
    display: none !important;
  }
  html body.cyber-frontend .site-header .nav-links {
 position: absolute !important;
    top: calc(100% + 1px) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 101 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
  width: 100% !important;
    min-width: 100% !important;
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    visibility: hidden !important;
    gap: .25rem !important;
    margin: 0 !important;
    padding: 0 .9rem !important;
    background: rgba(247,242,230,.98) !important;
    border: 1px solid rgba(76,58,34,.12) !important;
    border-top: 0 !important;
    box-shadow: 0 18px 35px rgba(60,45,25,.14) !important;
    transition: max-height .28s ease, opacity .22s ease, padding .28s ease, visibility .28s ease !important;
  }

  html body.cyber-frontend .site-header .nav-links.open {
    max-height: calc(100vh - 86px) !important;
    overflow-y: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    padding: .85rem .9rem 1rem !important;
  }

  html body.cyber-frontend .site-header .nav-links li {
    width: 100% !important;
  }

  html body.cyber-frontend .site-header .nav-links a {
    width: 100% !important;
    padding: .82rem 1rem !important;
    border-radius: 10px !important;
    text-align: left !important;
    font-size: 1rem !important;
    color: var(--brown-dark) !important;
    background: transparent !important;
  }

  html body.cyber-frontend .site-header .nav-links a.active {
    color: var(--olive-dark) !important;
    background: rgba(109,125,44,.12) !important;
  }

  html body.cyber-frontend .site-header .nav-mobile-quote {
    display: block !important;
  }

  html body.cyber-frontend .site-header .nav-mobile-quote a {
    margin-top: .25rem !important;
    text-align: center !important;
    color: #fff !important;
    background: var(--olive) !important;
    font-weight: 700 !important;
    letter-spacing: .5px !important;
    text-transform: uppercase !important;
  }
}

@media (max-width: 520px) {
  html body.cyber-frontend .site-header .nav {
    height: 70px !important;
  }

  html body.cyber-frontend .site-header .brand img {
    max-width: 96px !important;
    max-height: 65px !important;
  }
}


/* Mobile responsive polish across Kanak frontend */
@media (max-width: 767px) {
  html body.cyber-frontend {
    overflow-x: hidden !important;
  }

  html body.cyber-frontend .section {
    padding: 3.1rem 0 !important;
  }

  html body.cyber-frontend .section-head {
    margin-bottom: 1.8rem !important;
  }

  html body.cyber-frontend .section-title,
  html body.cyber-frontend .product-detail__content h2 {
    font-size: clamp(2rem, 10vw, 2.65rem) !important;
    line-height: 1.12 !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
  }

  html body.cyber-frontend .section-lead {
    font-size: 1.02rem !important;
    line-height: 1.75 !important;
    margin-bottom: 1.6rem !important;
  }

  html body.cyber-frontend .hero.hero--brand,
  html body.cyber-frontend .hero.hero--image {
    min-height: auto !important;
  }

  html body.cyber-frontend .hero.hero--image:not(.hero--light) .hero__inner,
  html body.cyber-frontend .hero__inner {
    min-height: auto !important;
    display: block !important;
    padding: 3.4rem 0 2.4rem !important;
    text-align: center !important;
  }

  html body.cyber-frontend .hero__copy {
    max-width: 100% !important;
  }

  html body.cyber-frontend .hero h1,
  html body.cyber-frontend .hero.hero--image:not(.hero--light) h1 {
    font-size: clamp(2.8rem, 13vw, 4.25rem) !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
    margin: 1rem auto 1.15rem !important;
    max-width: 11ch !important;
    overflow-wrap: normal !important;
    text-wrap: balance !important;
  }

  html body.cyber-frontend .hero__badge {
    max-width: 100% !important;
    white-space: normal !important;
    justify-content: center !important;
    line-height: 1.45 !important;
    padding: .52rem 1rem !important;
    font-size: .78rem !important;
  }

  html body.cyber-frontend .hero__tagline {
    font-size: 1.15rem !important;
    line-height: 1.75 !important;
    max-width: 19rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  html body.cyber-frontend .hero__points {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: .8rem 1rem !important;
    margin: 1.45rem auto 1.8rem !important;
  }

  html body.cyber-frontend .hero__points li {
    font-size: .96rem !important;
    line-height: 1.3 !important;
  }

  html body.cyber-frontend .hero__actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: .8rem !important;
  }

  html body.cyber-frontend .hero__actions .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: .82rem .8rem !important;
    font-size: .95rem !important;
  }

  html body.cyber-frontend .hero__trust,
  html body.cyber-frontend .hero__image-card {
    display: none !important;
  }

  html body.cyber-frontend .hero__strip {
    display: none !important;
  }

  html body.cyber-frontend .page-banner {
    min-height: 190px !important;
    padding: 3.1rem 0 !important;
  }

  html body.cyber-frontend .page-banner h1 {
    font-size: clamp(2.25rem, 11vw, 3.25rem) !important;
  }

  html body.cyber-frontend .gallery-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.15rem !important;
  }

  html body.cyber-frontend .gallery-grid figure,
  html body.cyber-frontend .gallery-grid figure:nth-child(1),
  html body.cyber-frontend .gallery-grid figure:nth-child(6),
  html body.cyber-frontend .gallery-grid figure:nth-child(11) {
    grid-column: auto !important;
    min-height: auto !important;
    aspect-ratio: 1 / .78 !important;
    border-radius: 14px !important;
  }

  html body.cyber-frontend .gallery-grid figcaption {
    font-size: 1rem !important;
    padding: 1rem !important;
  }

  html body.cyber-frontend .product-detail {
    gap: 1.6rem !important;
    padding-bottom: 1.5rem !important;
  }

  html body.cyber-frontend .product-detail__visual.product-detail__visual--photo {
    min-height: 260px !important;
  }

  html body.cyber-frontend .product-detail__lead,
  html body.cyber-frontend .product-detail__content p {
    font-size: 1rem !important;
    line-height: 1.75 !important;
  }

  html body.cyber-frontend .detail-list {
    grid-template-columns: 1fr !important;
    gap: .75rem !important;
  }

  html body.cyber-frontend .detail-list li {
    padding: .85rem 1rem !important;
    font-size: 1rem !important;
    line-height: 1.55 !important;
  }

  html body.cyber-frontend .product-detail__actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: .75rem !important;
    margin-top: 1.2rem !important;
    padding-right: 0 !important;
  }

  html body.cyber-frontend .product-detail__actions .btn {
    width: 100% !important;
    min-height: 52px !important;
    justify-content: center !important;
    padding: .85rem 1rem !important;
    font-size: 1rem !important;
  }

  html body.cyber-frontend .grid,
  html body.cyber-frontend .grid-3,
  html body.cyber-frontend .grid-4,
  html body.cyber-frontend .split {
    grid-template-columns: 1fr !important;
  }

  html body.cyber-frontend table {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
  }

  html body.cyber-frontend .table-responsive {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
}

@media (max-width: 420px) {
  html body.cyber-frontend .container {
    width: min(88%, var(--maxw)) !important;
  }

  html body.cyber-frontend .hero h1,
  html body.cyber-frontend .hero.hero--image:not(.hero--light) h1 {
    font-size: clamp(2.55rem, 12vw, 3.7rem) !important;
  }

  html body.cyber-frontend .hero__actions {
    grid-template-columns: 1fr !important;
  }

  html body a.floating-whatsapp,
  html body a.floating-whatsapp:link,
  html body a.floating-whatsapp:visited {
    width: 58px !important;
    height: 58px !important;
    right: 12px !important;
    bottom: 12px !important;
  }

  html body a.floating-whatsapp > svg {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
  }
}
