/* Global India Bio-Plant — demo site stylesheet.
   Hand-written design system (tokens -> layout -> components). No CSS framework,
   so the whole look is controllable and the page works with zero CDN JS. */

/* ---------------------------------------------------------------- tokens */
:root {
  --forest: #0e3b2b;
  --forest-900: #082419;
  --leaf: #1f7a4d;
  --leaf-600: #17603c;
  --sprout: #8bc34a;
  --harvest: #d99518;
  --harvest-soft: #f6c453;
  --cream: #f7f5ee;
  --cream-2: #efece0;
  --paper: #ffffff;
  --ink: #16241d;
  --ink-2: #40514a;
  --ink-3: #6b7c74;
  --line: #dfdccf;
  --danger: #b3261e;

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

  --shadow-s: 0 1px 2px rgba(14, 59, 43, .06), 0 2px 8px rgba(14, 59, 43, .05);
  --shadow: 0 10px 30px rgba(14, 59, 43, .10);
  --shadow-l: 0 24px 60px rgba(14, 59, 43, .16);

  --wrap: 1200px;
  --gut: clamp(1rem, 4vw, 2.5rem);

  --sans: "Plus Jakarta Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont,
          "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --serif: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--leaf-600); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--forest);
  line-height: 1.12;
  margin: 0 0 .5em;
  font-weight: 600;
  letter-spacing: -.015em;
}
h1 { font-size: clamp(2.3rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.4rem); }
p  { margin: 0 0 1rem; }

:focus-visible {
  outline: 3px solid var(--harvest);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--forest); color: #fff; padding: .8rem 1.2rem;
  border-radius: 0 0 var(--radius-s) 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---------------------------------------------------------------- layout */
.wrap { width: min(100% - (var(--gut) * 2), var(--wrap)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--cream { background: var(--cream); }
.section--forest { background: var(--forest); color: #cfe0d7; }
.section--forest h2, .section--forest h3 { color: #fff; }

.grid { display: grid; gap: clamp(1rem, 2.4vw, 1.8rem); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--leaf);
  margin-bottom: .9rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--harvest); border-radius: 2px;
}
.section--forest .eyebrow { color: var(--harvest-soft); }

.lead { font-size: clamp(1.02rem, 1.5vw, 1.15rem); color: var(--ink-2); max-width: 62ch; }
.section--forest .lead { color: #bdd2c7; }
.center { text-align: center; }
.center .lead, .center .eyebrow { margin-inline: auto; }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.5rem; border-radius: 100px; border: 2px solid transparent;
  font: inherit; font-weight: 700; font-size: .97rem; text-decoration: none;
  cursor: pointer; transition: transform .18s ease, background .18s ease,
                               border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--leaf); color: #fff; box-shadow: 0 8px 20px rgba(31,122,77,.28); }
.btn--primary:hover { background: var(--leaf-600); }
.btn--gold { background: var(--harvest); color: #2c1e00; box-shadow: 0 8px 20px rgba(217,149,24,.3); }
.btn--gold:hover { background: var(--harvest-soft); }
.btn--ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--outline { border-color: var(--line); color: var(--forest); background: var(--paper); }
.btn--outline:hover { border-color: var(--leaf); color: var(--leaf-600); }
.btn--sm { padding: .6rem 1.1rem; font-size: .88rem; }
.btn[disabled] { opacity: .6; pointer-events: none; }

/* ---------------------------------------------------------------- demo ribbon */
.demo-bar {
  background: repeating-linear-gradient(135deg, #2b2b2b 0 12px, #232323 12px 24px);
  color: #ffd98a; font-size: .8rem; padding: .5rem 0;
}
.demo-bar__row { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.demo-bar strong { color: #fff; }
.demo-bar button {
  margin-left: auto; background: none; border: 1px solid rgba(255,255,255,.35);
  color: #ffd98a; border-radius: 100px; padding: .1rem .7rem; cursor: pointer; font: inherit;
}
.demo-bar button:hover { background: rgba(255,255,255,.12); }

/* ---------------------------------------------------------------- topbar + header */
.topbar {
  background: var(--forest-900); color: #9fbcae; font-size: .84rem; padding: .5rem 0;
}
.topbar__row { display: flex; gap: 1.6rem; align-items: center; flex-wrap: wrap; }
.topbar a { color: #cfe0d7; text-decoration: none; }
.topbar a:hover { color: #fff; }
.topbar__spacer { margin-left: auto; }
@media (max-width: 800px) { .topbar { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-s); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; gap: 1rem; min-height: 76px; }

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__name { font-family: var(--serif); font-weight: 700; font-size: 1.12rem; color: var(--forest); line-height: 1.05; }
.brand__tag { display: block; font-family: var(--sans); font-size: .66rem; letter-spacing: .17em;
              text-transform: uppercase; color: var(--ink-3); font-weight: 700; }

.nav__menu { display: flex; align-items: center; }
.nav__links { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  display: block; padding: .55rem .9rem; border-radius: 100px;
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: .95rem;
}
.nav__links a:hover { background: var(--cream-2); color: var(--forest); }
.nav__links a[aria-current="page"] { color: var(--leaf-600); background: rgba(31,122,77,.09); }

.nav__cta { margin-left: .6rem; }

.nav__toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  border-radius: 12px; background: var(--paper); cursor: pointer;
  align-items: center; justify-content: center;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--forest);
  border-radius: 2px; transition: transform .22s ease, opacity .18s ease;
}
.nav__toggle span::before { transform: translateY(-6px); }
.nav__toggle span::after  { transform: translateY(4px); }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: rotate(-45deg) translateY(-1px); }

@media (max-width: 940px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); padding: 1rem var(--gut) 1.6rem;
    display: none;
  }
  .nav__menu.is-open { display: block; }
  .nav__links { flex-direction: column; align-items: stretch; gap: .1rem; }
  .nav__links a { padding: .85rem .6rem; border-radius: var(--radius-s); }
  .nav__cta { margin: .9rem 0 0; display: flex; }
  .nav__cta .btn { width: 100%; }
}

/* ---------------------------------------------------------------- hero */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(8,36,25,.93) 0%, rgba(8,36,25,.78) 42%, rgba(8,36,25,.30) 100%);
}
.hero__inner { padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5.5rem); max-width: 760px; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--harvest-soft); }
.hero__sub { font-size: clamp(1.05rem, 1.9vw, 1.22rem); color: #d5e5db; max-width: 56ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero__chips { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 2.4rem; list-style: none; padding: 0; }
.hero__chips li {
  font-size: .82rem; font-weight: 600; color: #dff0e6;
  border: 1px solid rgba(255,255,255,.28); border-radius: 100px; padding: .35rem .9rem;
  background: rgba(255,255,255,.07);
}

.page-hero { position: relative; color: #fff; isolation: isolate; }
.page-hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8,36,25,.86), rgba(8,36,25,.72));
}
.page-hero__inner { padding: clamp(2.8rem, 6vw, 4.6rem) 0; max-width: 720px; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.1rem); }
.page-hero p { color: #cfe0d7; margin-bottom: 0; }
.crumbs { font-size: .84rem; color: #9fbcae; margin-bottom: .9rem; }
.crumbs a { color: #cfe0d7; text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* ---------------------------------------------------------------- badge strip */
.badges { border-bottom: 1px solid var(--line); background: var(--cream); }
.badges__row {
  display: flex; flex-wrap: wrap; gap: 1rem 2.4rem;
  align-items: center; justify-content: center; padding: 1.2rem 0;
}
.badge {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .84rem; font-weight: 700; color: var(--forest); letter-spacing: .02em;
}
.badge svg { flex: none; color: var(--leaf); }

/* ---------------------------------------------------------------- stats */
.stats { display: grid; gap: 1px; background: rgba(255,255,255,.14);
         grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
         border-radius: var(--radius); overflow: hidden; }
.stat { background: var(--forest); padding: 1.7rem 1.2rem; text-align: center; }
.stat__num { font-family: var(--serif); font-size: clamp(2rem, 3.6vw, 2.7rem);
             color: var(--harvest-soft); font-weight: 700; line-height: 1; }
.stat__label { font-size: .82rem; letter-spacing: .09em; text-transform: uppercase;
               color: #a9c5b6; margin-top: .55rem; font-weight: 700; }

/* ---------------------------------------------------------------- cards */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cfd8c9; }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: .4rem; }
.card__body p { font-size: .95rem; }
.card__link {
  margin-top: auto; padding-top: .6rem; font-weight: 700; font-size: .9rem;
  color: var(--leaf-600); text-decoration: none; display: inline-flex; gap: .35rem; align-items: center;
}
.card__link:hover { gap: .6rem; }

.tag {
  position: absolute; top: .8rem; left: .8rem; z-index: 2;
  background: rgba(255,255,255,.94); color: var(--forest);
  font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 100px;
}
.tag--gold { background: var(--harvest); color: #2c1e00; }

/* feature list */
.feature { display: flex; gap: 1rem; }
.feature__icon {
  flex: none; width: 48px; height: 48px; border-radius: 14px;
  background: rgba(31,122,77,.1); color: var(--leaf-600);
  display: grid; place-items: center;
}
.section--forest .feature__icon { background: rgba(255,255,255,.1); color: var(--harvest-soft); }
.feature h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.feature p { font-size: .93rem; margin: 0; }

/* steps */
.steps { counter-reset: step; }
.step { position: relative; padding-top: 2.6rem; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; top: 0; left: 0;
  font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--harvest);
}
.step::after {
  content: ""; position: absolute; top: 1.15rem; left: 3rem; right: -1rem; height: 1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px);
}
.step:last-child::after { display: none; }
@media (max-width: 700px) { .step::after { display: none; } }
.step h3 { font-size: 1.05rem; }
.step p { font-size: .92rem; margin: 0; }

/* split */
.split { display: grid; gap: clamp(1.6rem, 4vw, 3.5rem); align-items: center;
         grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }
.split__media { border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow); }
.split__media img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.split--flip .split__media { order: 2; }
@media (max-width: 760px) { .split--flip .split__media { order: 0; } }

.tick-list { list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; gap: .7rem; }
.tick-list li { display: flex; gap: .65rem; font-size: .96rem; }
.tick-list li::before {
  content: "✓"; flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(31,122,77,.12); color: var(--leaf-600);
  display: grid; place-items: center; font-size: .74rem; font-weight: 900; margin-top: .18rem;
}
.section--forest .tick-list li::before { background: rgba(255,255,255,.14); color: var(--harvest-soft); }

/* crops */
.crop {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 220px;
  display: flex; align-items: flex-end; color: #fff; text-decoration: none;
  transition: transform .22s ease;
}
.crop:hover { transform: translateY(-4px); }
.crop img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.crop::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(8,36,25,.9) 5%, rgba(8,36,25,.15) 70%);
}
.crop__body { position: relative; z-index: 1; padding: 1.2rem; }
.crop__body strong { display: block; font-family: var(--serif); font-size: 1.25rem; }
.crop__body span { font-size: .84rem; color: #cfe0d7; }

/* quotes */
.quote {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; display: flex; flex-direction: column; gap: 1rem;
}
.quote__stars { color: var(--harvest); letter-spacing: .12em; font-size: .95rem; }
.quote blockquote { margin: 0; font-size: 1rem; color: var(--ink-2); }
.quote figcaption { margin-top: auto; font-size: .88rem; }
.quote figcaption strong { display: block; color: var(--forest); font-size: .96rem; }

/* CTA band */
.cta-band {
  border-radius: var(--radius-l); overflow: hidden; position: relative;
  color: #fff; isolation: isolate; padding: clamp(2.2rem, 5vw, 3.6rem);
}
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(8,36,25,.94), rgba(8,36,25,.72));
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #cfe0d7; max-width: 52ch; }

/* ---------------------------------------------------------------- products page */
.filters {
  display: grid; gap: 1rem; align-items: end;
  grid-template-columns: minmax(220px, 1fr) auto;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.2rem;
  position: sticky; top: 84px; z-index: 30; box-shadow: var(--shadow-s);
}
@media (max-width: 760px) { .filters { position: static; grid-template-columns: 1fr; } }
.field label { display: block; font-size: .78rem; font-weight: 800; letter-spacing: .1em;
               text-transform: uppercase; color: var(--ink-3); margin-bottom: .35rem; }
/* Match by exclusion rather than listing types — the earlier allow-list silently left
   password and number inputs completely unstyled. */
.field input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.field select, .field textarea {
  width: 100%; font: inherit; font-size: .96rem; color: var(--ink);
  padding: .72rem .9rem; border: 1px solid var(--line); border-radius: 10px;
  background: var(--paper); transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--leaf); box-shadow: 0 0 0 3px rgba(31,122,77,.15);
}
.field textarea { min-height: 130px; resize: vertical; }

.chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.chip {
  font: inherit; font-size: .86rem; font-weight: 700; cursor: pointer;
  padding: .5rem 1rem; border-radius: 100px;
  border: 1px solid var(--line); background: var(--paper); color: var(--ink-2);
  transition: all .16s ease;
}
.chip:hover { border-color: var(--leaf); color: var(--leaf-600); }
.chip[aria-pressed="true"] { background: var(--forest); border-color: var(--forest); color: #fff; }

.result-bar { display: flex; flex-wrap: wrap; gap: .8rem; align-items: baseline;
              margin: 1.6rem 0 1.2rem; font-size: .92rem; color: var(--ink-3); }
.result-bar strong { color: var(--forest); font-size: 1rem; }

.product-grid { display: grid; gap: 1.3rem;
                grid-template-columns: repeat(auto-fill, minmax(min(100%, 258px), 1fr)); }
.pcard { border: 1px solid var(--line); background: var(--paper); border-radius: var(--radius);
         overflow: hidden; display: flex; flex-direction: column;
         transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cfd8c9; }
.pcard__open { text-align: left; font: inherit; color: inherit; cursor: pointer; padding: 0;
               border: 0; background: none; display: flex; flex-direction: column; flex: 1; }
.pcard__order {
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .7rem 1rem; margin: 0 1.1rem 1.1rem; border-radius: 100px;
  background: #25d366; color: #06331a; font-weight: 700; font-size: .88rem;
  text-decoration: none; transition: background .16s ease;
}
.pcard__order:hover { background: #1fbe5a; }
.pcard__media { position: relative; aspect-ratio: 5 / 4; overflow: hidden; background: var(--cream-2); }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.pcard:hover .pcard__media img { transform: scale(1.06); }
.pcard__body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.pcard__name { font-family: var(--serif); font-size: 1.06rem; color: var(--forest); font-weight: 600; line-height: 1.2; }
.pcard__comp { font-size: .84rem; color: var(--ink-3); }
.pcard__meta { margin-top: auto; padding-top: .7rem; display: flex; gap: .4rem; flex-wrap: wrap; }
.pill { font-size: .7rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
        padding: .22rem .6rem; border-radius: 100px; background: var(--cream-2); color: var(--ink-2); }
.pill--powder   { background: #e9f0e4; color: #35602c; }
.pill--liquid   { background: #e2eef5; color: #1f5d7d; }
.pill--granules { background: #f6ecd9; color: #7d5a17; }

.empty { text-align: center; padding: 3.5rem 1rem; border: 2px dashed var(--line);
         border-radius: var(--radius); color: var(--ink-3); }
.empty strong { display: block; font-family: var(--serif); font-size: 1.3rem; color: var(--forest); margin-bottom: .4rem; }

/* modal */
.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 1rem; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(8,36,25,.6); backdrop-filter: blur(3px); border: 0; }
.modal__panel {
  position: relative; background: var(--paper); border-radius: var(--radius-l);
  width: min(100%, 720px); max-height: 90vh; overflow: auto; box-shadow: var(--shadow-l);
}
.modal__img { aspect-ratio: 16 / 8; width: 100%; object-fit: cover; }
.modal__body { padding: clamp(1.3rem, 3vw, 2rem); }
.modal__close {
  position: absolute; top: .8rem; right: .8rem; width: 40px; height: 40px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.92); color: var(--forest); font-size: 1.3rem;
  cursor: pointer; line-height: 1; box-shadow: var(--shadow-s);
}
.modal__close:hover { background: #fff; }
.spec { list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; gap: .1rem; }
.spec li { display: grid; grid-template-columns: 150px 1fr; gap: .8rem;
           padding: .6rem 0; border-top: 1px solid var(--line); font-size: .93rem; }
.spec li span:first-child { font-weight: 700; color: var(--ink-3); font-size: .82rem;
                            letter-spacing: .06em; text-transform: uppercase; }
@media (max-width: 520px) { .spec li { grid-template-columns: 1fr; gap: .1rem; } }

/* ---------------------------------------------------------------- forms */
.form-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.form-grid .field--full { grid-column: 1 / -1; }
.error-msg { display: block; color: var(--danger); font-size: .84rem; margin-top: .3rem; min-height: 1.1em; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"], .field select[aria-invalid="true"] {
  border-color: var(--danger); box-shadow: 0 0 0 3px rgba(179,38,30,.12);
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .85rem; color: var(--ink-3); }
.form-status {
  margin-top: 1rem; padding: 1rem 1.2rem; border-radius: var(--radius-s);
  background: #eaf5ee; border: 1px solid #bcdcc8; color: #17603c; font-size: .94rem;
}
.form-status[hidden] { display: none; }

.info-card { background: var(--paper); border: 1px solid var(--line);
             border-radius: var(--radius); padding: 1.4rem; }
.info-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.info-card p, .info-card address { font-style: normal; font-size: .95rem; margin: 0; }
.info-card a { color: var(--leaf-600); }

/* accordion */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn {
  width: 100%; text-align: left; font: inherit; font-weight: 700; color: var(--forest);
  background: none; border: 0; padding: 1.15rem .5rem 1.15rem 0; cursor: pointer;
  display: flex; justify-content: space-between; gap: 1rem; align-items: center; font-size: 1.02rem;
}
.acc__btn::after { content: "+"; font-size: 1.4rem; color: var(--leaf); flex: none; transition: transform .2s ease; }
.acc__btn[aria-expanded="true"]::after { transform: rotate(45deg); }
.acc__panel { padding: 0 0 1.2rem; font-size: .95rem; }
.acc__panel[hidden] { display: none; }

/* team */
.person { text-align: center; }
.person img { aspect-ratio: 1; object-fit: cover; border-radius: 50%; width: 128px; margin: 0 auto .9rem;
              border: 4px solid var(--paper); box-shadow: var(--shadow-s); }
.person strong { display: block; font-family: var(--serif); font-size: 1.05rem; color: var(--forest); }
.person span { font-size: .85rem; color: var(--ink-3); }

/* timeline */
.timeline { list-style: none; margin: 0; padding: 0 0 0 1.8rem; border-left: 2px solid var(--line); display: grid; gap: 1.6rem; }
.timeline li { position: relative; }
.timeline li::before {
  content: ""; position: absolute; left: calc(-1.8rem - 7px); top: .45rem;
  width: 12px; height: 12px; border-radius: 50%; background: var(--harvest);
  box-shadow: 0 0 0 4px var(--cream);
}
.timeline b { display: block; font-family: var(--serif); color: var(--forest); font-size: 1.05rem; }
.timeline span { font-size: .8rem; font-weight: 800; letter-spacing: .1em; color: var(--leaf); text-transform: uppercase; }
.timeline p { margin: .25rem 0 0; font-size: .94rem; }

/* ---------------------------------------------------------------- footer */
.site-footer { background: var(--forest-900); color: #9fbcae; padding-top: clamp(3rem, 6vw, 4.5rem); font-size: .94rem; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: .8rem; letter-spacing: .14em;
                  text-transform: uppercase; margin: 0 0 1rem; }
.site-footer a { color: #cfe0d7; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); } }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__tag { color: #7d9c8d; }
.footer-bottom {
  margin-top: 2.6rem; border-top: 1px solid rgba(255,255,255,.1); padding: 1.3rem 0;
  display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; font-size: .85rem; color: #7d9c8d;
}
.footer-bottom .spacer { margin-left: auto; }
.staff-login {
  display: inline-flex; align-items: center; gap: .4rem; text-decoration: none;
  border: 1px solid rgba(255,255,255,.22); border-radius: 100px;
  padding: .35rem .9rem; font-weight: 700; font-size: .82rem; color: #cfe0d7 !important;
  transition: border-color .16s ease, background .16s ease;
}
.staff-login:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5);
                     color: #fff !important; text-decoration: none !important; }

/* floating whatsapp */
.wa-fab {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 70;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 24px rgba(0,0,0,.22);
  transition: transform .2s ease;
}
.wa-fab:hover { transform: scale(1.07); }

/* ---------------------------------------------------------------- motion */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .pcard:hover, .crop:hover, .wa-fab:hover { transform: none; }
  .card__media img, .pcard__media img { transition: none; }
}

/* ---------------------------------------------------------------- hero slider */
.hero-slider { position: relative; isolation: isolate; }
.hero-slider__track { display: grid; }
/* Every slide occupies the same grid cell, so the section height comes from the
   tallest slide and nothing jumps as they rotate. */
.hslide {
  grid-area: 1 / 1; position: relative; color: #fff; isolation: isolate;
  opacity: 0; visibility: hidden; transition: opacity .7s ease;
}
.hslide.is-active { opacity: 1; visibility: visible; }
/* Without JS, the first slide must still be visible. */
.no-js-fallback .hslide:first-child { opacity: 1; visibility: visible; }
.hslide__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hslide__media img { width: 100%; height: 100%; object-fit: cover; }
.hslide::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(8,36,25,.94) 0%, rgba(8,36,25,.80) 44%, rgba(8,36,25,.32) 100%);
}
/* The slider is one section of the page, not a full-bleed hero — keeping the copy
   compact keeps the photo band short so it never fills a laptop screen. */
.hslide__inner { padding: clamp(1.8rem, 3.4vw, 2.8rem) 0 clamp(3.2rem, 4.5vw, 3.6rem); max-width: 660px; }
.hslide h1, .hslide h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.35rem); }
.hslide h1 em, .hslide h2 em { font-style: normal; color: var(--harvest-soft); }
.hslide__sub { font-size: clamp(.94rem, 1.25vw, 1.03rem); color: #d5e5db; max-width: 50ch; }
.hslide__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.3rem; }

.hslide-nav {
  position: absolute; bottom: clamp(1rem, 3vw, 2rem); left: 0; right: 0; z-index: 5;
  display: flex; align-items: center; gap: .8rem;
}
.hslide-nav__inner { display: flex; align-items: center; gap: .8rem; width: 100%; }
/* Controls stay on the left — the bottom-right corner belongs to the floating
   chat and WhatsApp buttons, and an arrow underneath them is unclickable. */
.hslide-dots { display: flex; gap: .45rem; margin-right: .5rem; }
.hslide-dot {
  width: 30px; height: 4px; border-radius: 100px; border: 0; padding: 0; cursor: pointer;
  background: rgba(255,255,255,.35); transition: background .2s ease, width .2s ease;
}
.hslide-dot:hover { background: rgba(255,255,255,.6); }
.hslide-dot.is-active { background: var(--harvest); width: 46px; }
.hslide-arrow {
  width: 42px; height: 42px; border-radius: 50%; cursor: pointer;
  border: 1px solid rgba(255,255,255,.4); background: rgba(8,36,25,.35); color: #fff;
  display: grid; place-items: center; transition: background .18s ease, border-color .18s ease;
}
.hslide-arrow:hover { background: rgba(255,255,255,.18); border-color: #fff; }
@media (max-width: 620px) { .hslide-arrow { display: none; } }

/* ---------------------------------------------------------------- whatsapp button */
.btn--wa { background: #25d366; color: #06331a; }
.btn--wa:hover { background: #1fbe5a; }

/* ---------------------------------------------------------------- chatbot */
.cbot-fab {
  position: fixed; right: 1.1rem; bottom: 5.2rem; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--forest); color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.24); transition: transform .2s ease, background .2s ease;
}
.cbot-fab:hover { transform: scale(1.07); background: var(--leaf-600); }
.cbot-fab.is-open { background: var(--leaf-600); }
.cbot-fab__dot {
  position: absolute; top: 2px; right: 2px; width: 13px; height: 13px; border-radius: 50%;
  background: var(--harvest); border: 2px solid var(--forest);
}
.cbot-fab.is-open .cbot-fab__dot { display: none; }

.cbot {
  position: fixed; right: 1.1rem; bottom: 5.2rem; z-index: 90;
  width: min(calc(100vw - 2.2rem), 380px);
  /* Capped so an open panel never covers the site navigation on a laptop screen. */
  height: min(72vh, 560px); max-height: calc(100vh - 25rem);
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow-l); display: flex; flex-direction: column; overflow: hidden;
}
.cbot[hidden] { display: none; }
@media (max-width: 520px) {
  /* On a phone there is no room to be precious — the panel takes the screen. */
  .cbot { right: .6rem; left: .6rem; bottom: .6rem; width: auto;
          height: min(84vh, 620px); max-height: none; }
  .cbot-fab { bottom: 4.9rem; }
}

.cbot__head { display: flex; align-items: center; gap: .7rem; padding: .9rem 1rem;
              background: var(--forest); color: #fff; }
.cbot__id { display: flex; align-items: center; gap: .65rem; font-size: .9rem; }
.cbot__id b { display: block; font-size: .95rem; }
.cbot__id span span { font-size: .76rem; color: #a9c5b6; }
.cbot__avatar { width: 38px; height: 38px; border-radius: 50%; flex: none;
                background: var(--leaf); display: grid; place-items: center;
                font-family: var(--serif); font-weight: 700; font-size: .9rem; }
.cbot__close { margin-left: auto; background: none; border: 0; color: #cfe0d7;
               font-size: 1.5rem; line-height: 1; cursor: pointer; padding: 0 .2rem; }
.cbot__close:hover { color: #fff; }

.cbot__wabar {
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  background: #25d366; color: #06331a; font-size: .82rem; font-weight: 700;
  padding: .55rem; text-decoration: none;
}
.cbot__wabar:hover { background: #1fbe5a; }

.cbot__log { flex: 1; overflow-y: auto; padding: 1rem; display: flex;
             flex-direction: column; gap: .7rem; background: var(--cream); }
.cbot__msg { display: flex; flex-direction: column; max-width: 88%; }
.cbot__msg--bot { align-self: flex-start; }
.cbot__msg--me { align-self: flex-end; align-items: flex-end; }
.cbot__bubble {
  padding: .7rem .9rem; border-radius: 14px; font-size: .9rem; line-height: 1.5;
  background: var(--paper); border: 1px solid var(--line); color: var(--ink-2);
  border-bottom-left-radius: 4px;
}
.cbot__msg--me .cbot__bubble {
  background: var(--forest); color: #eaf3ee; border-color: var(--forest);
  border-radius: 14px; border-bottom-right-radius: 4px;
}
.cbot__bubble b { color: var(--forest); }
.cbot__msg--me .cbot__bubble b { color: #fff; }
.cbot__ul { margin: .5rem 0 0; padding-left: 1.1rem; display: grid; gap: .3rem; }

.cbot__acts { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .5rem; }
.cbot__act {
  font: inherit; font-size: .82rem; font-weight: 700; cursor: pointer; text-decoration: none;
  padding: .45rem .8rem; border-radius: 100px;
  border: 1px solid var(--line); background: var(--paper); color: var(--leaf-600);
}
.cbot__act:hover { border-color: var(--leaf); }
.cbot__act--wa { background: #25d366; border-color: #25d366; color: #06331a; }
.cbot__act--wa:hover { background: #1fbe5a; border-color: #1fbe5a; }

.cbot__typing .cbot__bubble { display: flex; gap: .25rem; padding: .8rem .9rem; }
.cbot__typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-3);
                     animation: cbotBlink 1.2s infinite ease-in-out; }
.cbot__typing span:nth-child(2) { animation-delay: .18s; }
.cbot__typing span:nth-child(3) { animation-delay: .36s; }
@keyframes cbotBlink { 0%, 80%, 100% { opacity: .25; } 40% { opacity: 1; } }

.cbot__chips { display: flex; flex-wrap: wrap; gap: .35rem; padding: .6rem .8rem 0;
               background: var(--cream); }
.cbot__chips:empty { padding: 0; }
.cbot__chip {
  font: inherit; font-size: .8rem; font-weight: 600; cursor: pointer;
  padding: .4rem .75rem; border-radius: 100px;
  border: 1px solid var(--line); background: var(--paper); color: var(--ink-2);
}
.cbot__chip:hover { border-color: var(--leaf); color: var(--leaf-600); }

.cbot__form { display: flex; gap: .5rem; padding: .7rem .8rem; background: var(--cream);
              border-top: 1px solid var(--line); }
.cbot__form input {
  flex: 1; min-width: 0; font: inherit; font-size: .9rem; padding: .6rem .8rem;
  border: 1px solid var(--line); border-radius: 100px; background: var(--paper); color: var(--ink);
}
.cbot__form input:focus { outline: none; border-color: var(--leaf);
                          box-shadow: 0 0 0 3px rgba(31,122,77,.15); }
.cbot__form button {
  flex: none; width: 40px; height: 40px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--leaf); color: #fff; display: grid; place-items: center;
}
.cbot__form button:hover { background: var(--leaf-600); }
.cbot__foot { margin: 0; padding: 0 .9rem .7rem; background: var(--cream);
              font-size: .7rem; color: var(--ink-3); text-align: center; }

@media (prefers-reduced-motion: reduce) {
  .hslide { transition: none; }
  .cbot-fab:hover { transform: none; }
  .cbot__typing span { animation: none; opacity: .5; }
}

@media print {
  .site-header, .topbar, .demo-bar, .wa-fab, .filters, .hero__actions { display: none !important; }
  body { color: #000; font-size: 12pt; }
}
