:root {
  --leaf: #0f6a35;
  --deep-leaf: #073d24;
  --fresh: #d8e7c7;
  --paper: #f8f4ec;
  --warm: #d8ae70;
  --copper: #a96f3a;
  --ink: #1e211b;
  --muted: #6c6f64;
  --line: #ded6c8;
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(30, 33, 27, 0.2);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Top announcement bar ---------- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  overflow: hidden;
  padding: 8px 0;
  color: var(--white);
  background: var(--deep-leaf);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.topbar-track {
  display: flex;
  gap: 56px;
  width: max-content;
  padding-left: 32px;
  animation: marquee 24s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 34px;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 220ms var(--ease), color 220ms var(--ease), box-shadow 220ms var(--ease), top 220ms var(--ease), padding 220ms var(--ease);
}

.site-header.scrolled {
  top: 0;
  padding-top: 14px;
  padding-bottom: 14px;
  color: var(--ink);
  background: rgba(248, 244, 236, 0.94);
  box-shadow: 0 12px 35px rgba(30, 33, 27, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  transition: transform 300ms var(--ease);
}

.brand:hover .brand-mark {
  transform: rotate(12deg) scale(1.06);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 3px;
  font-size: 12px;
}

nav {
  display: flex;
  gap: clamp(10px, 2vw, 22px);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

nav a {
  position: relative;
  padding-bottom: 4px;
  opacity: 0.9;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 260ms var(--ease);
}

nav a:hover {
  opacity: 1;
}

nav a:hover::after {
  width: 100%;
}

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

.call-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 18px;
  color: var(--white);
  background: var(--leaf);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
  animation: pulse-ring 2.6s ease-in-out infinite;
}

.call-pill svg {
  width: 15px;
  height: 15px;
}

.call-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 106, 53, 0.35);
}

@keyframes pulse-ring {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(15, 106, 53, 0.4);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(15, 106, 53, 0);
  }
}

.whatsapp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 18px;
  color: var(--white);
  background: #25a15a;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.whatsapp-pill svg {
  width: 15px;
  height: 15px;
}

.whatsapp-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 161, 90, 0.35);
}

.whatsapp-ghost {
  color: var(--white);
  border-color: rgba(37, 161, 90, 0.7);
  background: rgba(37, 161, 90, 0.16);
}

.whatsapp-ghost:hover {
  background: rgba(37, 161, 90, 0.32);
  transform: translateY(-2px);
}

.whatsapp-solid {
  color: var(--white);
  background: #25a15a;
}

.whatsapp-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 161, 90, 0.35);
}

.statement-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.statement-actions .button {
  margin-top: 0;
}

.contact-whatsapp-cta {
  display: inline-flex;
  margin: 22px 0 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 260ms var(--ease), opacity 200ms ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--deep-leaf);
  margin-top: 34px;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
  animation: hero-zoom 18s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 32, 19, 0.82) 0%, rgba(5, 32, 19, 0.55) 38%, rgba(5, 32, 19, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 32, 19, 0.62) 0%, rgba(5, 32, 19, 0.08) 50%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(96px, 14vh, 150px) clamp(18px, 7vw, 92px);
}

.eyebrow,
.section-kicker,
.product-type {
  margin: 0 0 12px;
  color: var(--fresh);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-kicker::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  flex-shrink: 0;
  background: var(--copper);
  border-radius: 2px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.92;
}

h1 span {
  color: var(--warm);
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.button svg {
  width: 15px;
  height: 15px;
  transition: transform 220ms var(--ease);
}

.button.primary {
  color: var(--white);
  background: var(--leaf);
}

.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 106, 53, 0.32);
}

.button.primary:hover svg {
  transform: translateX(3px);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.65);
  background: rgba(255, 253, 248, 0.08);
}

.button.secondary:hover {
  background: rgba(255, 253, 248, 0.18);
  transform: translateY(-2px);
}

.ghost-call {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.4);
  background: transparent;
}

.ghost-call:hover {
  border-color: var(--warm);
  color: var(--warm);
}

.hero-strip {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 22px;
  left: clamp(18px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 253, 248, 0.34);
}

.hero-strip span {
  padding: 16px 10px 0;
  font-size: clamp(11px, 1.3vw, 14px);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 200ms ease;
}

.hero-strip span:hover {
  color: var(--warm);
}

.scroll-cue {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  top: 26px;
  display: grid;
  width: 30px;
  height: 46px;
  place-items: center start;
  padding-top: 8px;
  border: 2px solid rgba(255, 253, 248, 0.55);
  border-radius: 20px;
}

.scroll-cue span {
  display: block;
  width: 4px;
  height: 10px;
  margin-left: 12px;
  border-radius: 3px;
  background: var(--warm);
  animation: scroll-cue-move 1.8s ease-in-out infinite;
}

@keyframes scroll-cue-move {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  70% {
    transform: translateY(14px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 70px);
}

.intro,
.responsibility,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
}

.intro h2,
.section-head h2,
.statement h2,
.contact h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
}

/* Clearer, more deliberate title styling on light backgrounds */
.intro h2,
.section-head h2,
.contact h2 {
  color: var(--deep-leaf);
  letter-spacing: -0.01em;
  line-height: 1.06;
}

.accent {
  color: var(--leaf);
  background-image: linear-gradient(transparent 66%, rgba(15, 106, 53, 0.16) 66%);
}

.accent-warm {
  color: var(--warm);
}

.section-sub {
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
}

.intro p:not(.section-kicker),
.statement p,
.contact p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.6;
}

.flow-copy p {
  margin-bottom: 18px;
}

.flow-copy p:last-child {
  margin-bottom: 0;
}

.intro .section-kicker,
.products .section-kicker,
.quality .section-kicker,
.contact .section-kicker,
.why-us .section-kicker,
.process .section-kicker,
.faq .section-kicker,
.cta-banner .section-kicker {
  color: var(--leaf);
}

/* ---------- Trust strip ---------- */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0;
  overflow: hidden;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  padding: clamp(28px, 4vw, 42px) 20px;
  text-align: center;
  background: var(--white);
  transition: background 220ms ease;
}

.trust-item:hover {
  background: var(--fresh);
}

.trust-num {
  display: block;
  margin-bottom: 8px;
  color: var(--leaf);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.4vw, 40px);
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ---------- Why us ---------- */
.why-us {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.why-card {
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.why-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--leaf);
  border-radius: 50%;
  background: var(--fresh);
}

.why-icon svg {
  width: 24px;
  height: 24px;
}

.why-card h3 {
  margin-bottom: 8px;
  color: var(--deep-leaf);
  font-size: 20px;
}

.why-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.why-call {
  display: inline-block;
  margin-top: 12px;
  color: var(--leaf);
  font-weight: 800;
}

.why-call:hover {
  text-decoration: underline;
}

/* ---------- Products ---------- */
.products {
  background: var(--white);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.collection-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms var(--ease);
}

.product-card:hover img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  color: var(--white);
  background: var(--copper);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-body {
  min-height: 190px;
  padding: 22px;
}

.product-type {
  color: var(--copper);
}

.product-body h3 {
  margin-bottom: 10px;
  color: var(--deep-leaf);
  font-size: clamp(24px, 2vw, 32px);
}

.product-body p:not(.product-type) {
  margin-bottom: 16px;
  color: var(--muted);
  line-height: 1.55;
}

.product-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.product-cart,
.product-buy {
  flex: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 220ms var(--ease);
}
.product-cart {
  background: transparent;
  color: var(--leaf);
  border: 1px solid var(--leaf);
}
.product-cart:hover {
  background: var(--leaf);
  color: var(--white);
}
.product-buy {
  background: var(--leaf);
  color: var(--white);
  border: 1px solid var(--leaf);
}
.product-buy:hover {
  background: var(--deep-leaf);
  border-color: var(--deep-leaf);
}

/* ---------- Process ---------- */
.process {
  background: #efe6d8;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 30px 24px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--line);
}

.process-step::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -18px;
  width: 18px;
  height: 1px;
  background: var(--copper);
}

.process-step:last-child::after {
  display: none;
}

.process-num {
  display: block;
  margin-bottom: 16px;
  color: var(--warm);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.process-step h3 {
  margin-bottom: 8px;
  color: var(--deep-leaf);
  font-size: 19px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- Responsibility ---------- */
.responsibility {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 61, 36, 0.96), rgba(7, 61, 36, 0.88)),
    url("assets/arjuna.jpeg") center / cover;
}

.statement {
  position: sticky;
  top: 110px;
}

.statement p {
  color: rgba(255, 253, 248, 0.78);
}

.principles {
  display: grid;
  gap: 16px;
}

.principles div {
  padding: 28px;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
  transition: background 220ms ease, transform 220ms ease;
}

.principles div:hover {
  background: rgba(255, 253, 248, 0.14);
  transform: translateX(4px);
}

.principles .principles-intro {
  background: rgba(255, 253, 248, 0.14);
}

.principles .principles-intro:hover {
  transform: none;
}

.principles span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--warm);
  font-weight: 800;
}

.principles h3 {
  margin-bottom: 8px;
  font-size: 26px;
}

.principles p {
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.72);
  line-height: 1.55;
}

/* ---------- Team ---------- */
.quality {
  background: #efe6d8;
}

.quality-row,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.quality-row div,
.team-grid div {
  min-height: 210px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--paper);
  transition: background 220ms ease;
}

.team-grid div:hover {
  background: var(--white);
}

.quality-row strong,
.team-grid strong {
  display: block;
  margin-bottom: 18px;
  color: var(--leaf);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
}

.quality-row p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.team-grid {
  grid-template-columns: repeat(5, 1fr);
}

.team-grid div {
  min-height: 260px;
}

.team-grid strong {
  font-size: clamp(26px, 2.8vw, 40px);
}

.team-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.team-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--white);
}

.faq-list {
  max-width: 860px;
  margin-top: 30px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 4px;
  border: none;
  background: none;
  color: var(--deep-leaf);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 2vw, 21px);
  text-align: left;
  cursor: pointer;
}

.faq-question svg {
  flex-shrink: 0;
  color: var(--leaf);
  transition: transform 260ms var(--ease);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 320ms var(--ease);
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0 4px 22px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-answer>p {
  grid-row: 1;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  color: var(--white);
  background: linear-gradient(120deg, var(--deep-leaf), var(--leaf));
  text-align: center;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta-banner .section-kicker {
  color: var(--fresh);
}

.cta-banner h2 {
  max-width: none;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.05;
}

.cta-banner p:not(.section-kicker) {
  margin-bottom: 26px;
  color: rgba(255, 253, 248, 0.82);
  font-size: clamp(16px, 1.8vw, 19px);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.cta-banner .button.primary {
  background: var(--warm);
  color: var(--deep-leaf);
}

.cta-banner .button.secondary {
  border-color: rgba(255, 253, 248, 0.6);
}

/* ---------- Contact ---------- */
.contact {
  background: var(--white);
}

.contact-details {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-details p {
  margin-bottom: 8px;
  font-size: 16px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-row svg {
  color: var(--leaf);
}

.contact-row a:hover {
  color: var(--leaf);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--deep-leaf);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(15, 106, 53, 0.15);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  min-height: 18px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 700;
}

/* ---------- Footer ---------- */
footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 70px);
  color: rgba(255, 253, 248, 0.82);
  background: var(--ink);
}

footer p {
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-line {
  margin-top: 8px;
  color: var(--warm);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.footer-call {
  display: inline-block;
  color: var(--fresh);
  font-weight: 800;
  text-transform: none;
  letter-spacing: normal;
}

.footer-call:hover {
  color: var(--warm);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links a {
  transition: color 200ms ease;
}

.footer-links a:hover {
  color: var(--warm);
}

footer>p:last-child {
  justify-self: end;
  max-width: 300px;
  text-align: right;
}

/* ---------- Floating call + WhatsApp buttons ---------- */
.float-stack {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 12;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.float-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  color: var(--white);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  animation: float-pulse 2.4s ease-in-out infinite;
}

.float-btn svg {
  color: var(--white);
}

.float-call {
  background: var(--leaf);
  box-shadow: 0 16px 32px rgba(15, 106, 53, 0.4);
}

.float-whatsapp {
  background: #25a15a;
  box-shadow: 0 16px 32px rgba(37, 161, 90, 0.4);
  animation-name: float-pulse-whatsapp;
  animation-delay: 0.4s;
}

@keyframes float-pulse {

  0%,
  100% {
    box-shadow: 0 16px 32px rgba(15, 106, 53, 0.4);
  }

  50% {
    box-shadow: 0 16px 32px rgba(15, 106, 53, 0.7);
  }
}

@keyframes float-pulse-whatsapp {

  0%,
  100% {
    box-shadow: 0 16px 32px rgba(37, 161, 90, 0.4);
  }

  50% {
    box-shadow: 0 16px 32px rgba(37, 161, 90, 0.7);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {

  .product-grid,
  .quality-row,
  .team-grid,
  .why-grid,
  .process-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-step::after {
    display: none;
  }

  .trust {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro,
  .responsibility,
  .contact {
    grid-template-columns: 1fr;
  }

  .statement {
    position: static;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  footer>p:last-child {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .topbar {
    font-size: 11px;
  }

  .site-header {
    top: 30px;
  }

  .hero {
    margin-top: 30px;
    min-height: 88svh;
  }

  nav {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    z-index: 15;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    color: var(--white);
    background: var(--deep-leaf);
    font-size: 22px;
    text-transform: none;
  }

  nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
    z-index: 16;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .call-pill span,
  .whatsapp-pill span {
    display: none;
  }

  .call-pill,
  .whatsapp-pill {
    padding: 0 12px;
  }

  .scroll-cue {
    display: none;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px 120px;
  }

  .hero-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-strip span {
    padding-top: 12px;
    white-space: normal;
    font-size: 12px;
  }

  .section-head {
    display: block;
  }

  .product-grid,
  .quality-row,
  .team-grid,
  .why-grid,
  .process-track,
  .trust {
    grid-template-columns: 1fr;
  }

  .product-body {
    min-height: auto;
  }

  .cta-actions {
    flex-direction: column;
  }

  footer p+p {
    margin-top: 8px;
  }

  .float-btn-text {
    display: none;
  }

  .float-btn {
    padding: 16px;
  }

  .float-stack {
    right: 16px;
    bottom: 16px;
  }
}

/* ---------- Cart Drawer ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 33, 27, 0.4);
  backdrop-filter: blur(4px);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms var(--ease);
}
.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: var(--paper);
  z-index: 50;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(30, 33, 27, 0.1);
  transition: right 300ms var(--ease);
}
.cart-drawer.active {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}
.cart-header h2 {
  margin: 0;
  font-size: 24px;
  color: var(--deep-leaf);
  font-family: Georgia, "Times New Roman", serif;
}
.close-cart {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--ink);
  transition: color 200ms var(--ease);
}
.close-cart:hover {
  color: var(--leaf);
}
.close-cart svg {
  width: 24px;
  height: 24px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}
.cart-empty {
  text-align: center;
  color: var(--muted);
  margin-top: 40px;
  font-size: 15px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}
.cart-item-details {
  flex: 1;
}
.cart-item-title {
  margin: 0 0 8px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--deep-leaf);
}
.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---------- Quantity Selectors ---------- */
.qty-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  overflow: hidden;
}
.qty-btn {
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--ink);
  transition: background 200ms var(--ease);
}
.qty-btn:hover {
  background: rgba(15, 106, 53, 0.1);
  color: var(--leaf);
}
.qty-value {
  width: 32px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.remove-btn {
  background: transparent;
  border: none;
  color: #a94430;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.checkout-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 16px;
  font-size: 15px;
}

/* Floating Cart Overrides */
.float-cart {
  background: var(--leaf);
  position: relative;
}
.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #a94430;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  border: 2px solid var(--paper);
}

.product-actions {
  display: flex;
  flex-direction: column;
}
.cart-controls .add-to-cart-btn {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  background: transparent;
  color: var(--leaf);
  border: 1px solid var(--leaf);
  transition: all 220ms var(--ease);
}
.cart-controls .add-to-cart-btn:hover {
  background: var(--leaf);
  color: var(--white);
}
.cart-controls .qty-controls {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-radius: 6px;
}
.cart-controls .qty-btn {
  width: 40px;
  height: 38px;
}
.cart-controls .qty-value {
  flex: 1;
}

.footer-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-call svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
