/* ============================================
   CHAIWALA & CO. — Design System
   Palette: Parchment & Ink + Forest Greens
   Fonts: EB Garamond + Plus Jakarta Sans
   ============================================ */

:root {
  --parchment:    #F4ECD8;
  --parchment-2:  #EDE0C4;
  --parchment-3:  #D4C5A9;
  --ink:          #2C2C2C;
  --ink-light:    #5A5040;
  --brown:        #8B4513;
  --brown-light:  #B5651D;
  --brown-dark:   #5C2E0A;
  --forest:       #2D5016;
  --forest-light: #4A7C2F;
  --cream:        #FDFAF4;
  --white:        #FFFFFF;

  --font-display: 'EB Garamond', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 8px rgba(44,44,44,0.08);
  --shadow-md:  0 8px 32px rgba(44,44,44,0.12);
  --shadow-lg:  0 24px 64px rgba(44,44,44,0.16);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============ TYPOGRAPHY ============ */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.75rem;
}
.section-eyebrow--light { color: var(--parchment-3); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--brown);
}
.section-title--light { color: var(--parchment); }
.section-title--light em { color: var(--parchment-3); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition);
  cursor: pointer;
}
.btn--primary {
  background: var(--brown);
  color: var(--parchment);
  border: 2px solid var(--brown);
}
.btn--primary:hover {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,69,19,0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--parchment);
  border: 2px solid rgba(244,236,216,0.5);
}
.btn--ghost:hover {
  background: rgba(244,236,216,0.1);
  border-color: var(--parchment);
}
.btn--full { width: 100%; justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.link-arrow span { transition: transform 0.3s ease; }
.link-arrow:hover { color: var(--brown-dark); }
.link-arrow:hover span { transform: translateX(6px); }

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
  background: rgba(253,250,244,0.97);
  box-shadow: 0 2px 20px rgba(44,44,44,0.08);
  padding: 0.85rem 3rem;
  backdrop-filter: blur(12px);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--parchment);
  transition: color 0.4s ease;
}
.nav.scrolled .nav__logo { color: var(--ink); }
.nav__logo em { font-style: italic; color: var(--brown); }
.nav__logo-leaf { font-size: 1.2rem; }

.nav__links {
  display: flex;
  gap: 2.5rem;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(244,236,216,0.85);
  transition: color 0.3s ease;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--brown);
  transition: width 0.3s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav.scrolled .nav__links a { color: var(--ink-light); }
.nav__links a:hover { color: var(--brown); }

.nav__cta {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border: 1.5px solid rgba(244,236,216,0.5);
  border-radius: 3px;
  color: var(--parchment);
  transition: var(--transition);
}
.nav.scrolled .nav__cta {
  border-color: var(--brown);
  color: var(--brown);
}
.nav__cta:hover {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--parchment) !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--parchment);
  transition: var(--transition);
  border-radius: 2px;
}
.nav.scrolled .nav__burger span { background: var(--ink); }

/* ============ MOBILE MENU ============ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin: 1.5rem 0; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--brown); }

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20,12,5,0.72) 0%,
    rgba(44,28,10,0.55) 50%,
    rgba(20,40,10,0.4) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 3rem;
  margin-top: 4rem;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--parchment-3);
  margin-bottom: 1.25rem;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--parchment);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.5s ease both;
}
.hero__title em {
  font-style: italic;
  color: #D4A96A;
}
.hero__sub {
  font-size: 1.05rem;
  color: rgba(244,236,216,0.8);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeUp 0.8s 0.7s ease both;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.9s ease both;
}

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

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 3rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(244,236,216,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeUp 1s 1.2s ease both;
}
.hero__scroll-line {
  width: 60px; height: 1px;
  background: rgba(244,236,216,0.3);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(244,236,216,0.7);
  animation: scrollLine 2s 1.5s ease infinite;
}
@keyframes scrollLine {
  to { left: 100%; }
}

.hero__badge {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 2;
  width: 90px; height: 90px;
  border: 1.5px solid rgba(244,236,216,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateBadge 20s linear infinite, fadeUp 1s 1.4s ease both;
}
.hero__badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(244,236,216,0.7);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
  text-align: center;
}
@keyframes rotateBadge {
  to { transform: rotate(360deg); }
}

/* ============ MARQUEE ============ */
.marquee-strip {
  background: var(--brown);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 2rem;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--parchment);
  opacity: 0.9;
}
.marquee-track .dot {
  font-style: normal;
  font-size: 0.6rem;
  opacity: 0.5;
  align-self: center;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ STATS ============ */
.stats {
  background: var(--parchment-2);
  padding: 5rem 0;
  border-bottom: 1px solid var(--parchment-3);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat { padding: 1.5rem; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}
.stat__unit {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 500;
  color: var(--brown-light);
}
.stat__label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-top: 0.5rem;
}

/* ============ ORIGINS ============ */
.origins {
  padding: 8rem 0;
  background: var(--cream);
}
.origins__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.origins__body {
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1.0rem;
}
.origins__images {
  position: relative;
  height: 520px;
}
.origins__img-main {
  position: absolute;
  top: 0; left: 0;
  width: 80%; height: 85%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.origins__img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%; height: 48%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--cream);
}
.origins__img-tag {
  position: absolute;
  bottom: 0.75rem; left: 0.75rem;
  background: rgba(44,44,44,0.75);
  color: var(--parchment);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}

/* ============ BOTANICAL DIVIDER ============ */
.botanical-divider {
  padding: 1rem 0;
  background: var(--cream);
}
.botanical-divider svg {
  width: 100%;
  height: 80px;
}

/* ============ TEAS ============ */
.teas {
  padding: 8rem 0;
  background: var(--parchment);
}
.teas__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.teas__intro {
  color: var(--ink-light);
  font-size: 1rem;
  line-height: 1.7;
}
.teas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.tea-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transition-delay: var(--delay, 0s);
}
.tea-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.tea-card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.tea-card__img img {
  transition: transform 0.6s ease;
}
.tea-card:hover .tea-card__img img {
  transform: scale(1.08);
}
.tea-card__badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--brown);
  color: var(--parchment);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
}
.tea-card__badge--bold { background: var(--forest); }
.tea-card__badge--spice { background: #C0392B; }
.tea-card__badge--rare { background: var(--brown-dark); }

.tea-card__body { padding: 1.5rem; }
.tea-card__region {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-light);
  display: block;
  margin-bottom: 0.5rem;
}
.tea-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.tea-card__desc {
  font-size: 0.875rem;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.tea-card__meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.tea-card__meta span {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-light);
  background: var(--parchment-2);
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
}

/* ============ DISTRIBUTION ============ */
.distribution {
  position: relative;
  padding: 9rem 0;
  overflow: hidden;
}
.distribution__bg {
  position: absolute;
  inset: 0;
}
.distribution__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.distribution__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,30,5,0.88) 0%,
    rgba(30,60,15,0.78) 100%
  );
}
.distribution__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.distribution__body {
  color: rgba(244,236,216,0.8);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.distribution__tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.tier {
  background: rgba(244,236,216,0.07);
  border: 1px solid rgba(244,236,216,0.15);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: background 0.3s ease;
}
.tier:hover { background: rgba(244,236,216,0.12); }
.tier__icon { font-size: 2rem; margin-bottom: 0.75rem; }
.tier h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 0.5rem;
}
.tier p {
  font-size: 0.875rem;
  color: rgba(244,236,216,0.65);
  line-height: 1.7;
}

/* ============ PROCESS ============ */
.process {
  padding: 8rem 0;
  background: var(--cream);
}
.process__header {
  text-align: center;
  margin-bottom: 5rem;
}
.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.process__step {
  flex: 1;
  padding: 0 2rem;
  text-align: center;
}
.process__step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--parchment-3);
  line-height: 1;
  margin-bottom: 1rem;
}
.process__step h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.process__step p {
  font-size: 0.875rem;
  color: var(--ink-light);
  line-height: 1.75;
}
.process__connector {
  width: 60px;
  height: 1px;
  background: var(--parchment-3);
  margin-top: 2.5rem;
  flex-shrink: 0;
  position: relative;
}
.process__connector::after {
  content: '→';
  position: absolute;
  top: -10px;
  right: -8px;
  color: var(--brown-light);
  font-size: 0.9rem;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 8rem 0;
  background: var(--parchment-2);
}
.testimonials > .container > .section-eyebrow,
.testimonials > .container > .section-title {
  text-align: center;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.testimonial {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--brown);
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--parchment-3);
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  line-height: 1;
}
.testimonial p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}
.testimonial footer strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}
.testimonial footer span {
  font-size: 0.78rem;
  color: var(--ink-light);
}

/* ============ CONTACT ============ */
.contact {
  padding: 8rem 0;
  background: var(--cream);
}
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.contact__body {
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.5;
}
.contact__icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }

/* FORM */
.contact__form {
  background: var(--parchment);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--parchment-3);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(139,69,19,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--parchment-3); }
.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--ink-light);
  margin-top: 0.75rem;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--parchment-3);
  padding: 5rem 0 2rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(244,236,216,0.1);
  margin-bottom: 2rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 1rem;
}
.footer__logo em { font-style: italic; color: var(--brown-light); }
.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(244,236,216,0.55);
  max-width: 320px;
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--parchment);
  margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col li, .footer__col a {
  font-size: 0.85rem;
  color: rgba(244,236,216,0.5);
  transition: color 0.3s ease;
}
.footer__col a:hover { color: var(--brown-light); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(244,236,216,0.35);
}
.footer__certs {
  display: flex;
  gap: 1.5rem;
}
.footer__certs span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(244,236,216,0.4);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .teas__grid { grid-template-columns: repeat(2, 1fr); }
  .origins__layout { grid-template-columns: 1fr; gap: 3rem; }
  .origins__images { height: 380px; }
  .distribution__tiers { grid-template-columns: 1fr; gap: 1rem; }
  .process__steps { flex-direction: column; align-items: center; }
  .process__connector { width: 1px; height: 40px; margin: 0; }
  .process__connector::after { content: '↓'; top: auto; bottom: -12px; right: -8px; }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .contact__layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer__top { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: 0.75rem 1.5rem; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero__content { padding: 0 1.5rem; }
  .hero__badge { display: none; }
  .hero__scroll-hint { left: 1.5rem; }

  .teas__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__certs { flex-wrap: wrap; justify-content: center; }

  .container { padding: 0 1.25rem; }
  .origins, .teas, .process, .testimonials, .contact { padding: 5rem 0; }
  .distribution { padding: 6rem 0; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .footer__links { grid-template-columns: 1fr; }
}