/* ============================================
   Padmini Farms — Premium Heritage Brand
   ============================================ */

:root {
  --green-main: #143F2D;
  --green-deep: #0E2E21;
  --green-soft: #2E5B46;
  --gold-logo: #C9A45A;
  --gold-dark: #A67C2E;
  --gold-light: #E7D3A1;
  --blush-main: #EBC6CC;
  --blush-soft: #F5DDE1;
  --bg: #FAF8F4;
  --text: #143F2D;
  --gold-accent: #C9A45A;
  --card: #FFFFFF;
  --border: #E7E1D6;
  --font-heading: 'Cinzel', 'Cormorant Garamond', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1240px;
  --section-pad: clamp(4rem, 8vw, 8rem);
  --header-h: 84px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
ul { list-style: none; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--gold-accent);
  color: var(--green-deep);
  font-weight: 600;
  border-radius: 2px;
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* Typography */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 1.25rem;
}
.section-label--light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.section-title--light { color: #fff; }

.section-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--green-soft);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-header { text-align: center; margin-bottom: clamp(3rem, 6vw, 4.5rem); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border: 1.5px solid transparent;
  border-radius: 1px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}
.btn--primary {
  background: var(--gold-accent);
  color: var(--green-deep);
  border-color: var(--gold-accent);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 164, 90, 0.3);
}
.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn--outline:hover {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
}
.btn--full { width: 100%; }

/* ============================================
   Header — Glass Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-top: var(--safe-top);
  background: rgba(14, 46, 33, 0.42);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition:
    background 0.45s var(--ease),
    border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.02) 40%,
    transparent 100%
  );
  pointer-events: none;
}

/* Frosted ivory glass when scrolled over page content */
.header--scrolled {
  background: rgba(250, 248, 244, 0.78);
  backdrop-filter: blur(26px) saturate(160%);
  -webkit-backdrop-filter: blur(26px) saturate(160%);
  border-bottom-color: rgba(20, 63, 45, 0.1);
  box-shadow:
    0 8px 32px rgba(20, 63, 45, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.header--scrolled::before {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
}

/* Hero overlay — readable light text on dark glass */
.header--hero .nav__link {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.header--hero .nav__link:hover,
.header--hero .nav__link.active {
  color: #fff;
}

.header--hero .nav__link--cta {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.header--hero .nav__link--cta:hover {
  background: rgba(201, 164, 90, 0.28);
  border-color: var(--gold-accent);
  color: var(--gold-light);
}

.header--hero .nav__toggle span {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.header--hero .nav__logo-img {
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.4));
}

/* Scrolled state — dark readable links on light glass */
.header--scrolled .nav__link {
  color: var(--text);
  text-shadow: none;
}

.header--scrolled .nav__link--cta {
  color: var(--green-deep);
  background: rgba(201, 164, 90, 0.12);
  border-color: rgba(201, 164, 90, 0.55);
  text-shadow: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.header--scrolled .nav__link--cta:hover {
  background: var(--gold-accent);
  border-color: var(--gold-accent);
  color: var(--green-deep);
}

.header--scrolled .nav__toggle span {
  background: var(--text);
  box-shadow: none;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .header { background: rgba(14, 46, 33, 0.94); }
  .header--scrolled { background: rgba(250, 248, 244, 0.97); }
}

.nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.nav__logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: filter 0.3s, transform 0.3s var(--ease);
}

.nav__logo:hover .nav__logo-img { transform: scale(1.02); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: color 0.3s var(--ease), text-shadow 0.3s var(--ease);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-accent);
  transition: width 0.35s var(--ease);
}

.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav__link--cta {
  padding: 0.65rem 1.5rem;
  border: 1px solid var(--gold-accent);
  border-radius: 2px;
  color: var(--gold-dark);
  transition:
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
  background: var(--gold-accent);
  color: var(--green-deep);
}

.nav__toggle {
  display: none;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  cursor: pointer;
  padding: 10px 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.header--scrolled .nav__toggle {
  background: rgba(20, 63, 45, 0.05);
  border-color: rgba(20, 63, 45, 0.12);
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}

.nav__link:focus-visible,
.nav__toggle:focus-visible,
.btn:focus-visible,
.carousel__btn:focus-visible,
.social-link:focus-visible,
.product-tile:focus-visible {
  outline: 2px solid var(--gold-accent);
  outline-offset: 3px;
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid var(--gold-accent);
  outline-offset: 0;
}

/* ============================================
   SECTION 1: Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -10% 0 0 0;
  background:
    radial-gradient(ellipse at 25% 80%, rgba(235, 198, 204, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 20%, rgba(201, 164, 90, 0.22) 0%, transparent 50%),
    linear-gradient(135deg, #0E2E21 0%, #143F2D 45%, #1E4F3A 75%, #2E5B46 100%);
  will-change: transform;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(14, 46, 33, 0.45) 0%, rgba(20, 63, 45, 0.25) 50%, rgba(14, 46, 33, 0.4) 100%),
    linear-gradient(135deg, rgba(201, 164, 90, 0.08), transparent 60%);
}

.hero__lotus {
  position: absolute;
  color: var(--gold-accent);
  pointer-events: none;
  z-index: 1;
  animation: floatLotus 8s ease-in-out infinite;
}
.hero__lotus svg { width: 100%; height: 100%; }
.hero__lotus--1 { width: 80px; top: 18%; left: 8%; animation-delay: 0s; }
.hero__lotus--2 { width: 50px; top: 30%; right: 12%; animation-delay: -3s; opacity: 0.6; }
.hero__lotus--3 { width: 60px; bottom: 25%; left: 15%; animation-delay: -5s; opacity: 0.5; }

@keyframes floatLotus {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(3deg); }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 10rem 1.5rem 7rem;
  max-width: 860px;
}

.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.2s forwards;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 4.75rem);
  font-weight: 500;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.4s forwards;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.85;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.6s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.8s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   SECTION 2: Brand Story
   ============================================ */
.story { padding: var(--section-pad) 0; }

.story__header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.story__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.story__visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.story__panel {
  overflow: hidden;
  border-radius: 1px;
  border: 1px solid var(--border);
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}
.story__panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(20, 63, 45, 0.1);
}

.story__panel--main {
  grid-row: 1 / 3;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--card) 0%, var(--blush-soft) 100%);
  padding: 2.5rem;
}

.story__logo {
  width: min(220px, 75%);
  margin: 0 auto;
  object-fit: contain;
}

.story__panel--img {
  aspect-ratio: 4/3;
  background: var(--green-deep);
}

.story__panel--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.story__panel--img:hover img {
  transform: scale(1.04);
}

.story__lead {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.story__text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--green-soft);
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.story__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: gap 0.3s var(--ease);
}
.story__link:hover { gap: 0.85rem; color: var(--gold-accent); }

/* ============================================
   SECTION 3: Philosophy (Glassmorphism)
   ============================================ */
.philosophy {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--blush-soft) 50%, var(--bg) 100%);
}

.philosophy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.glass-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 4px 24px rgba(20, 63, 45, 0.04);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s;
}
.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(20, 63, 45, 0.1);
  border-color: rgba(201, 164, 90, 0.35);
}

.glass-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.5rem;
  color: var(--gold-accent);
}
.glass-card__icon svg { width: 100%; height: 100%; }

.glass-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.glass-card__text {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--green-soft);
  line-height: 1.75;
}

/* ============================================
   Manifesto — The Truth We Stand On
   ============================================ */
.manifesto {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--green-deep);
  overflow: hidden;
}

.manifesto__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(235, 198, 204, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 30%, rgba(201, 164, 90, 0.12) 0%, transparent 45%),
    linear-gradient(180deg, #0E2E21 0%, #143F2D 50%, #0E2E21 100%);
}

.manifesto__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.manifesto__glow--1 {
  width: 400px;
  height: 400px;
  top: -10%;
  right: -5%;
  background: rgba(201, 164, 90, 0.08);
}
.manifesto__glow--2 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: -5%;
  background: rgba(235, 198, 204, 0.06);
}

.manifesto__lotus {
  position: absolute;
  bottom: 8%;
  right: 6%;
  width: 120px;
  color: rgba(201, 164, 90, 0.06);
  pointer-events: none;
}
.manifesto__lotus svg { width: 100%; }

.manifesto__inner {
  position: relative;
  z-index: 1;
}

.manifesto__intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem;
}

.manifesto__sanskrit {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  color: var(--gold-accent);
  margin-bottom: 1.25rem;
  opacity: 0.85;
}

.manifesto__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
}

.manifesto__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.manifesto__quote {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(201, 164, 90, 0.28);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.manifesto__quote::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold-accent);
  opacity: 0.35;
}

.manifesto__quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  z-index: 1;
}

.manifesto__quote em {
  font-style: normal;
  color: var(--gold-light);
}

.manifesto__text {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.manifesto__text--lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
}

.manifesto__text strong {
  font-weight: 500;
  color: var(--gold-light);
}

.manifesto__farmers {
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.manifesto__farmers-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  border: 1px solid rgba(201, 164, 90, 0.25);
  background: linear-gradient(135deg, rgba(201, 164, 90, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  position: relative;
}

.manifesto__farmers-inner::before,
.manifesto__farmers-inner::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--gold-accent);
  opacity: 0.5;
}
.manifesto__farmers-inner::before { top: 0; }
.manifesto__farmers-inner::after { bottom: 0; }

.manifesto__farmers-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 1rem;
}

.manifesto__farmers-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.35;
}

.manifesto__farmers-text {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.9;
  margin-bottom: 1.15rem;
}
.manifesto__farmers-text:last-child { margin-bottom: 0; }

.manifesto__farmers-text em {
  font-style: normal;
  color: var(--gold-light);
}

.manifesto__pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201, 164, 90, 0.2);
}

.manifesto__pillar {
  text-align: center;
  padding: clamp(1.75rem, 3vw, 2.25rem) 1.25rem;
  border: 1px solid rgba(201, 164, 90, 0.15);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), transform 0.4s var(--ease-out);
}
.manifesto__pillar:hover {
  border-color: rgba(201, 164, 90, 0.4);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.manifesto__pillar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  color: var(--gold-accent);
}
.manifesto__pillar-icon svg { width: 32px; height: 32px; }

.manifesto__pillar-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.75rem;
}

.manifesto__pillar-text {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
}

.manifesto__closing {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.manifesto__closing-line {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.manifesto__closing-emphasis {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--gold-light);
  margin-bottom: 2.5rem;
}

.manifesto__cta {
  box-shadow: 0 8px 32px rgba(201, 164, 90, 0.25);
}

/* ============================================
   SECTION 4: Products
   ============================================ */
.products { padding: var(--section-pad) 0; }

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.product-tile {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 1px;
  cursor: pointer;
  outline: none;
}
.product-tile:focus-visible { box-shadow: 0 0 0 2px var(--gold-accent); }

.product-tile__img {
  position: absolute;
  inset: 0;
  background: var(--green-deep);
  transition: transform 0.7s var(--ease-out);
}

.product-tile__img picture,
.story__panel--img picture {
  display: block;
  width: 100%;
  height: 100%;
}

.story__panel--main picture {
  display: block;
  width: min(220px, 75%);
  margin: 0 auto;
}

.footer__brand picture {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.product-tile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.product-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 46, 33, 0.85) 0%, rgba(14, 46, 33, 0.2) 50%, transparent 100%);
  transition: background 0.5s var(--ease);
}
.product-tile:hover .product-tile__overlay {
  background: linear-gradient(to top, rgba(14, 46, 33, 0.92) 0%, rgba(14, 46, 33, 0.4) 60%, rgba(14, 46, 33, 0.15) 100%);
}
.product-tile:hover .product-tile__img img { transform: scale(1.06); }

.product-tile__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.75rem;
  z-index: 2;
  transform: translateY(8px);
  transition: transform 0.45s var(--ease-out);
}
.product-tile:hover .product-tile__content { transform: translateY(0); }

.product-tile__badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.product-tile__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.5rem;
}

.product-tile__desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.product-tile:hover .product-tile__desc {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   SECTION 5: Why Choose Us
   ============================================ */
.why {
  padding: var(--section-pad) 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.why-card {
  background: var(--card);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  transition: background 0.4s var(--ease);
}
.why-card:hover { background: var(--bg); }

.why-card__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--gold-accent);
  line-height: 1;
}
.why-card__suffix {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold-accent);
}

.why-card__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 1rem 0 0.6rem;
}

.why-card__text {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--green-soft);
  line-height: 1.65;
}

/* ============================================
   SECTION 6: Process Timeline
   ============================================ */
.process {
  padding: var(--section-pad) 0 var(--section-pad);
  background: var(--green-deep);
  overflow: hidden;
}

.timeline-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 clamp(1.25rem, 4vw, 2rem) 2rem;
}
.timeline-wrap::-webkit-scrollbar { display: none; }

.timeline {
  position: relative;
  min-width: max(100%, 1100px);
  padding: 2.5rem 0 1rem;
}

.timeline__track {
  position: absolute;
  height: 2px;
  z-index: 0;
  pointer-events: none;
  /* top, left, width set by JS */
}

.timeline__track-bg,
.timeline__track-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 2px;
}

.timeline__track-bg {
  width: 100%;
  background: rgba(201, 164, 90, 0.22);
}

.timeline__track-fill {
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-accent), var(--gold-light));
  box-shadow: 0 0 12px rgba(201, 164, 90, 0.45);
  transition: width 0.15s var(--ease-out);
}

.timeline__pulse {
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-light);
  transform: translate(50%, -50%);
  box-shadow: 0 0 14px rgba(231, 211, 161, 0.9);
  animation: timelinePulse 2s ease-in-out infinite;
}

@keyframes timelinePulse {
  0%, 100% { transform: translate(50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(50%, -50%) scale(1.35); opacity: 0.75; }
}

.timeline__steps {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.timeline__step {
  flex: 1;
  text-align: center;
  padding: 0 0.5rem;
  opacity: 0.4;
  transform: translateY(4px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.timeline__step.active {
  opacity: 1;
  transform: translateY(0);
}

.timeline__step.completed .timeline__dot {
  background: var(--gold-accent);
  border-color: var(--gold-light);
  box-shadow: 0 0 12px rgba(201, 164, 90, 0.4);
}

.timeline__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--gold-accent);
  background: var(--green-deep);
  margin: 0 auto 1.75rem;
  position: relative;
  z-index: 2;
  transition: background 0.45s var(--ease-out), border-color 0.45s, box-shadow 0.45s, transform 0.45s var(--ease-out);
}

.timeline__step.active .timeline__dot {
  background: var(--gold-accent);
  border-color: var(--gold-light);
  box-shadow: 0 0 20px rgba(201, 164, 90, 0.55);
  transform: scale(1.15);
}

.timeline__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold-accent);
  margin-bottom: 0.75rem;
}

.timeline__title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.5rem;
}

.timeline__text {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  max-width: 140px;
  margin: 0 auto;
}

/* Vertical timeline — mobile */
.timeline--vertical .timeline__track-fill {
  background: linear-gradient(180deg, var(--gold-dark), var(--gold-accent), var(--gold-light));
}

.timeline--vertical .timeline__pulse {
  top: auto;
  bottom: 0;
  left: 50%;
  right: auto;
  transform: translate(-50%, 50%);
}

@keyframes timelinePulseVertical {
  0%, 100% { transform: translate(-50%, 50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, 50%) scale(1.35); opacity: 0.75; }
}

.timeline--vertical .timeline__pulse {
  animation-name: timelinePulseVertical;
}

/* ============================================
   SECTION 7: Quality
   ============================================ */
.quality {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.quality__visual {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(201, 164, 90, 0.15) 0%, transparent 55%),
    linear-gradient(135deg, var(--green-deep) 0%, var(--green-main) 50%, var(--green-soft) 100%);
}
.quality__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 46, 33, 0.94) 0%, rgba(14, 46, 33, 0.78) 55%, rgba(14, 46, 33, 0.55) 100%);
}

.quality__content {
  position: relative;
  z-index: 2;
  padding: var(--section-pad) 0;
  max-width: 600px;
  width: 100%;
}

.quality__text {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.quality__trust {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(201, 164, 90, 0.35);
  max-width: 420px;
}

/* ============================================
   SECTION 8: Sustainability
   ============================================ */
.sustainability { padding: var(--section-pad) 0; }

.impact__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.impact-card {
  text-align: center;
  padding: 2rem 1rem;
}

.impact-card__ring {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
}
.impact-card__ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.impact-card__bg {
  fill: none;
  stroke: var(--border);
  stroke-width: 6;
}
.impact-card__fill {
  fill: none;
  stroke: var(--gold-accent);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 327;
  stroke-dashoffset: calc(327 - (327 * var(--progress, 0) / 100));
  transition: stroke-dashoffset 1.5s var(--ease-out);
}

.impact-card__value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
}

.impact-card__title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.impact-card__text {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--green-soft);
  line-height: 1.6;
}

/* ============================================
   SECTION 9: Testimonials
   ============================================ */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--blush-soft);
}

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

.carousel__track { position: relative; min-height: 280px; }

.carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  pointer-events: none;
}
.carousel__slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
  position: relative;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  border-radius: 1px;
}

.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold-accent);
  opacity: 0.3;
  margin-bottom: -1rem;
}

.testimonial-card__text {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 2rem;
}

.testimonial-card__footer { display: flex; flex-direction: column; gap: 0.25rem; align-items: center; }
.testimonial-card__role {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.carousel__btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel__btn:hover {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
}

.carousel__dots { display: flex; gap: 0.5rem; }
.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s var(--ease);
}
.carousel__dot.active {
  background: var(--gold-accent);
  transform: scale(1.2);
}

/* ============================================
   SECTION 10: Future Vision
   ============================================ */
.vision {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.vision__bg {
  position: absolute;
  inset: -15% 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(235, 198, 204, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(201, 164, 90, 0.18) 0%, transparent 45%),
    linear-gradient(160deg, #0E2E21 0%, #143F2D 40%, #1E4F3A 100%);
  will-change: transform;
}

.vision__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 46, 33, 0.88), rgba(20, 63, 45, 0.75));
}

.vision__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--section-pad) 0;
  max-width: 720px;
}

.vision__text {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
}

/* ============================================
   SECTION 11: Contact
   ============================================ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--card);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.contact__text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--green-soft);
  margin-bottom: 2.5rem;
  line-height: 1.85;
}

.contact__details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact__details li { display: flex; flex-direction: column; gap: 0.3rem; }

.contact__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

.contact__details a:hover { color: var(--gold-dark); }

.contact__form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-soft);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  border-radius: 1px;
  outline: none;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 3px rgba(201, 164, 90, 0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form__success {
  text-align: center;
  font-size: 0.9rem;
  color: var(--green-soft);
  padding: 1rem;
  border: 1px solid var(--green-soft);
  background: rgba(46, 91, 70, 0.05);
}

.form__error {
  text-align: center;
  font-size: 0.9rem;
  color: #9b3b3b;
  padding: 1rem;
  border: 1px solid rgba(155, 59, 59, 0.35);
  background: rgba(155, 59, 59, 0.06);
}

.form__notice {
  text-align: center;
  font-size: 0.85rem;
  color: var(--green-soft);
  padding: 0.85rem 1rem;
  border: 1px solid rgba(46, 91, 70, 0.25);
  background: rgba(46, 91, 70, 0.06);
}

.form__notice a {
  color: var(--gold-dark);
  text-decoration: underline;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.btn--loading {
  opacity: 0.75;
  cursor: wait;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  position: relative;
  background: var(--green-main);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 4rem;
  overflow: hidden;
}

.footer__watermark {
  position: absolute;
  bottom: -20px;
  right: 5%;
  width: 200px;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}
.footer__watermark svg { width: 100%; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer__logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0;
}
.footer__tagline {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  line-height: 1.7;
  opacity: 0.8;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 1.25rem;
}

.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a, .footer__col span {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
}
.footer__col a:hover { color: var(--gold-accent); }

.footer__social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s var(--ease);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
}

.social-link--soon {
  cursor: default;
  opacity: 0.65;
}

.social-link--soon:hover {
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
}

.footer__bottom {
  display: flex;
  justify-content: center;
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  position: relative;
  z-index: 1;
}

.social-link--whatsapp:hover {
  border-color: #25D366;
  color: #25D366;
}

/* ============================================
   WhatsApp Float
   ============================================ */
.whatsapp-float {
  position: fixed;
  right: calc(1.25rem + var(--safe-right));
  bottom: calc(1.25rem + var(--safe-bottom));
  z-index: 990;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.15rem 0.85rem 0.95rem;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  box-shadow:
    0 4px 20px rgba(37, 211, 102, 0.35),
    0 8px 32px rgba(20, 63, 45, 0.18);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.3s var(--ease);
}

.whatsapp-float:hover {
  background: #1ebe57;
  transform: translateY(-3px);
  box-shadow:
    0 8px 28px rgba(37, 211, 102, 0.45),
    0 12px 40px rgba(20, 63, 45, 0.22);
}

.whatsapp-float:focus-visible {
  outline: 2px solid var(--gold-accent);
  outline-offset: 3px;
}

.whatsapp-float__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.whatsapp-float__label {
  line-height: 1;
  padding-right: 0.15rem;
}

/* ============================================
   Scroll Reveal
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.2s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__eyebrow, .hero__title, .hero__subtitle, .hero__actions { opacity: 1; animation: none; }
  .timeline__pulse { animation: none; }
  .timeline--vertical .timeline__pulse { animation: none; }
  .timeline__track-fill { transition: none; }
  .whatsapp-float { transition: none; }
  .whatsapp-float:hover { transform: none; }
}

/* ============================================
   Responsive — Mobile-first enhancements
   ============================================ */

/* Large desktop */
@media (min-width: 1400px) {
  :root { --container: 1280px; }
}

/* Tablet landscape / small laptop — collapse nav (7 items) */
@media (max-width: 1180px) {
  .nav__menu { gap: 1.25rem; }
  .nav__link { font-size: 0.68rem; letter-spacing: 0.1em; }
  .nav__link--cta { padding: 0.55rem 1rem; }
}

@media (max-width: 1100px) {
  :root { --header-h: 76px; }

  .nav__toggle { display: flex; }

  .nav__menu {
    position: fixed;
    top: calc(var(--header-h) + var(--safe-top));
    left: var(--safe-left);
    right: var(--safe-right);
    max-height: calc(100dvh - var(--header-h) - var(--safe-top));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    background: rgba(250, 248, 244, 0.96);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem clamp(1rem, 4vw, 2rem) calc(1.5rem + var(--safe-bottom));
    gap: 0.25rem;
    border-bottom: 1px solid rgba(20, 63, 45, 0.1);
    box-shadow: 0 16px 48px rgba(20, 63, 45, 0.12);
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s var(--ease-out), opacity 0.35s, visibility 0.35s;
    pointer-events: none;
    z-index: 999;
  }

  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .nav__menu li { width: 100%; }

  .nav__link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0.5rem 0.25rem;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
  }

  .nav__link--cta {
    justify-content: center;
    margin-top: 0.5rem;
    min-height: 48px;
    text-align: center;
  }

  .header--hero .nav__menu {
    background: rgba(14, 46, 33, 0.96);
    border-bottom-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
  }

  .header--hero .nav__menu .nav__link {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  }

  .header--scrolled .nav__menu .nav__link {
    color: var(--text);
    text-shadow: none;
  }

  .nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
  .nav__toggle.active span:nth-child(2) { opacity: 0; }
  .nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

  .nav__logo-img { height: 50px; }

  .impact__grid { grid-template-columns: repeat(3, 1fr); }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto__pillars { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet portrait */
@media (max-width: 900px) {
  :root { --section-pad: clamp(3.5rem, 7vw, 6rem); }

  .manifesto__grid { grid-template-columns: 1fr; }
  .philosophy__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .story__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story__visuals { max-width: 520px; margin: 0 auto; width: 100%; }
  .story__content { text-align: center; }
  .story__link { justify-content: center; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .quality {
    min-height: auto;
    display: block;
  }

  .quality__visual-overlay {
    background: linear-gradient(
      180deg,
      rgba(14, 46, 33, 0.9) 0%,
      rgba(14, 46, 33, 0.94) 50%,
      rgba(14, 46, 33, 0.9) 100%
    );
  }

  .quality__content {
    max-width: 640px;
    margin: 0 auto;
    padding: var(--section-pad) clamp(1rem, 4vw, 2rem);
    text-align: center;
  }

  .quality__text {
    margin-bottom: 2rem;
  }

  .quality__trust {
    margin-left: auto;
    margin-right: auto;
    padding-top: 1rem;
  }

  .vision { min-height: 55vh; }
}

/* Large phones / small tablets */
@media (max-width: 768px) {
  :root { --header-h: 72px; }

  .hero__content { padding: calc(var(--header-h) + 5rem) 1rem 5rem; }
  .hero__lotus { display: none; }
  .hero__eyebrow { letter-spacing: 0.2em; font-size: 0.6rem; }
  .hero__scroll { display: none; }

  .story__panel--main { padding: 2rem 1.5rem; }
  .story__logo { width: min(180px, 70%); }

  .manifesto__quote { padding: 1.75rem 1.25rem; }
  .manifesto__quote::before { font-size: 3rem; left: 0.75rem; }
  .manifesto__farmers-inner { padding: 1.75rem 1.25rem; }
  .manifesto__lotus { width: 80px; opacity: 0.5; }

  .products__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .product-tile { aspect-ratio: 4/3; max-width: 100%; }
  .product-tile__desc { opacity: 1; transform: none; }
  .product-tile__content { padding: 1.5rem 1.25rem; }

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

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* prevents iOS zoom on focus */
  }

  .carousel__track { min-height: auto; }
  .testimonial-card { padding: 2rem 1.5rem; }
  .testimonial-card__quote { font-size: 3rem; }

  /* Process — vertical timeline (no horizontal scroll) */
  .timeline-wrap {
    overflow: visible;
    padding: 0 clamp(1rem, 4vw, 2rem) 1.5rem;
  }

  .timeline {
    min-width: 0;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 0.5rem 0 0;
  }

  .timeline__steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .timeline__step {
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 1.25rem;
    row-gap: 0.35rem;
    text-align: left;
    padding: 0 0 2rem;
    flex: none;
    transform: translateX(-6px);
  }

  .timeline__step.active {
    transform: translateX(0);
  }

  .timeline__dot {
    grid-column: 1;
    grid-row: 1 / 4;
    margin: 0.2rem 0 0;
    justify-self: center;
    align-self: start;
  }

  .timeline__num {
    grid-column: 2;
    margin-bottom: 0;
    text-align: left;
  }

  .timeline__title {
    grid-column: 2;
    text-align: left;
    font-size: 1rem;
  }

  .timeline__text {
    grid-column: 2;
    text-align: left;
    max-width: none;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.65;
  }

  .section-header { margin-bottom: 2.5rem; }
  .section-desc { padding: 0 0.5rem; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; text-align: center; }
  .footer__logo { margin: 0 auto 1rem; }
}

/* Standard phones */
@media (max-width: 600px) {
  .manifesto__pillars { grid-template-columns: 1fr; max-width: 100%; }
  .why__grid { grid-template-columns: 1fr; }
  .impact__grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__social { justify-content: center; }
  .footer__col { align-items: center; }
  .footer__bottom { padding-bottom: calc(1.5rem + var(--safe-bottom)); }
}

/* Small phones */
@media (max-width: 480px) {
  :root {
    --header-h: 68px;
    --section-pad: clamp(3rem, 8vw, 4.5rem);
  }

  .nav__logo-img { height: 44px; }

  .hero__title { font-size: clamp(2rem, 9vw, 2.75rem); }
  .hero__subtitle { font-size: 0.95rem; line-height: 1.75; }
  .hero__actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 300px; margin: 0 auto; }
  .btn { width: 100%; min-height: 48px; }

  .story__visuals { grid-template-columns: 1fr; }
  .story__panel--main { grid-row: auto; aspect-ratio: 4/3; }
  .story__panel--img { aspect-ratio: 16/10; }

  .manifesto__title { font-size: clamp(1.65rem, 7vw, 2.25rem); }
  .manifesto__closing-emphasis { font-size: 1.15rem; }
  .manifesto__cta { width: 100%; max-width: 100%; }

  .why-card { padding: 1.75rem 1.25rem; }
  .why-card__number { font-size: 2.25rem; }

  .cert-badge,
  .quality__trust { max-width: 100%; }

  .carousel__controls { gap: 1rem; }
  .carousel__btn { min-width: 44px; min-height: 44px; }

  .contact__details { gap: 1.25rem; }
  .contact__form { gap: 1rem; }

  .whatsapp-float {
    padding: 0.9rem;
    border-radius: 50%;
  }

  .whatsapp-float__label { display: none; }
}

/* Very small screens */
@media (max-width: 360px) {
  .container { padding: 0 0.875rem; }
  .nav__link { font-size: 0.75rem; letter-spacing: 0.08em; }
  .section-label { letter-spacing: 0.2em; font-size: 0.65rem; }
  .product-tile__title { font-size: 1.05rem; }
}

/* Landscape phones — reduce vertical pressure */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; }
  .hero__content { padding: calc(var(--header-h) + 2rem) 1rem 2.5rem; }
  .hero__scroll { display: none; }
  .nav__menu { max-height: calc(100dvh - var(--header-h)); }
}
