/* ===================================================
   DariaParsi Trading Co. — Main Stylesheet
   Palette: #1B4332 (forest green), #C9A84C (gold), #F8F5F0 (off-white)
   =================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background-color: #F8F5F0;
  color: #1a1a1a;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: #0f2d1e;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { color: #3a3a3a; }

/* --- Container --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}
.btn-primary { background: #1B4332; color: #F8F5F0; }
.btn-primary:hover { background: #133326; box-shadow: 0 4px 20px rgba(27,67,50,0.3); transform: translateY(-1px); }
.btn-outline { background: transparent; color: #F8F5F0; border: 1px solid rgba(248,245,240,0.5); }
.btn-outline:hover { border-color: #F8F5F0; background: rgba(248,245,240,0.08); }
.btn-secondary { background: transparent; color: #1B4332; border: 1.5px solid #1B4332; }
.btn-secondary:hover { background: #1B4332; color: #F8F5F0; }
.btn-gold { background: #C9A84C; color: #0f2d1e; }
.btn-gold:hover { background: #b8963e; box-shadow: 0 4px 20px rgba(201,168,76,0.35); transform: translateY(-1px); }
.btn-product {
  background: transparent; color: #1B4332; border: 1.5px solid #1B4332;
  width: 100%; justify-content: center; padding: 12px 24px; font-size: 0.82rem;
}
.btn-product:hover { background: #1B4332; color: #F8F5F0; }

/* --- Section Helpers --- */
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 12px;
}
.section-title { font-family: 'Playfair Display', serif; margin-bottom: 20px; }
.section-header.center { text-align: center; }
.section-header.center .section-eyebrow,
.section-header.center .section-title { display: block; }
.section-header.center .section-title { margin-bottom: 16px; }
.section-desc { color: #555; max-width: 560px; margin: 0 auto; font-size: 1rem; }

/* ===================================================
   NAVIGATION
   =================================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 22px 0;
  transition: all 0.35s ease; background: transparent;
}
.navbar.scrolled {
  background: rgba(15,32,22,0.97);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.navbar.solid { background: #0f2d1e; padding: 16px 0; }

.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 38px; height: 38px; background: #C9A84C; color: #0f2d1e;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; letter-spacing: 0.02em;
}
.logo-text {
  font-family: 'Inter', sans-serif; font-size: 0.88rem;
  font-weight: 500; color: #F8F5F0; letter-spacing: 0.04em;
}
.logo-text em {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-weight: 400; display: block; font-size: 0.78rem;
  color: rgba(248,245,240,0.65); letter-spacing: 0.06em;
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.83rem; font-weight: 400; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(248,245,240,0.75);
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: #C9A84C; transition: width 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: #F8F5F0; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links .nav-cta {
  background: #C9A84C; color: #0f2d1e !important;
  padding: 9px 22px; font-weight: 600; letter-spacing: 0.06em;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: #b8963e; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: #F8F5F0; transition: all 0.25s;
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  min-height: 100vh; background: #0f2d1e;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(27,67,50,0.6) 0%, transparent 50%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(248,245,240,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248,245,240,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 120px 24px 100px;
  max-width: 780px;
  margin-left: max(24px, calc(50vw - 600px));
}
.hero-eyebrow {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: #C9A84C; margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 600; color: #F8F5F0;
  line-height: 1.15; margin-bottom: 28px;
}
.hero-subline {
  font-size: 1.05rem; color: rgba(248,245,240,0.7);
  max-width: 540px; line-height: 1.75; margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(248,245,240,0.4); font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(248,245,240,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.1); }
}

/* ===================================================
   WHY SECTION
   =================================================== */
.why-section { padding: 100px 0; background: #F8F5F0; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; margin-top: 60px; }
.why-card {
  padding: 40px 32px; background: #fff;
  border: 1px solid rgba(27,67,50,0.08); border-top: 3px solid #C9A84C;
  transition: box-shadow 0.3s, transform 0.3s;
}
.why-card:hover { box-shadow: 0 12px 40px rgba(27,67,50,0.1); transform: translateY(-4px); }
.why-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; color: #1B4332; margin-bottom: 24px; }
.why-icon svg { width: 32px; height: 32px; }
.why-card h3 { font-size: 1.15rem; margin-bottom: 14px; color: #0f2d1e; }
.why-card p { font-size: 0.93rem; color: #555; line-height: 1.7; }

/* ===================================================
   PRODUCTS TEASER
   =================================================== */
.products-teaser { padding: 100px 0; background: #1B4332; }
.teaser-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.teaser-text .section-eyebrow { color: #C9A84C; }
.teaser-text .section-title { color: #F8F5F0; margin-bottom: 20px; }
.teaser-text p { color: rgba(248,245,240,0.7); margin-bottom: 36px; font-size: 1rem; }
.teaser-varieties { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.variety-pill {
  padding: 28px 20px; background: rgba(248,245,240,0.06);
  border: 1px solid rgba(248,245,240,0.12); color: #F8F5F0;
  font-family: 'Playfair Display', serif; font-size: 1.15rem;
  font-style: italic; text-align: center; transition: all 0.25s;
}
.variety-pill:hover { background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.4); }

/* ===================================================
   TRUST STRIP
   =================================================== */
.trust-strip { background: #0f2d1e; padding: 50px 0; }
.trust-grid { display: flex; align-items: center; justify-content: center; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 0 60px; text-align: center; }
.trust-number { font-family: 'Playfair Display', serif; font-size: 2rem; color: #C9A84C; font-weight: 600; }
.trust-label { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(248,245,240,0.5); }
.trust-divider { width: 1px; height: 50px; background: rgba(248,245,240,0.12); flex-shrink: 0; }

/* ===================================================
   ABOUT TEASER
   =================================================== */
.about-teaser { padding: 100px 0; background: #F8F5F0; }
.about-teaser-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-teaser-visual { position: relative; min-height: 360px; }
.at-block { position: absolute; border-radius: 1px; }
.at-block-1 { top: 0; left: 0; width: 65%; height: 80%; background: #1B4332; }
.at-block-2 { bottom: 0; right: 0; width: 50%; height: 55%; background: #C9A84C; opacity: 0.25; }
.at-quote {
  position: absolute; bottom: 30px; left: 20px; right: 20px;
  background: rgba(248,245,240,0.97); padding: 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12); border-left: 3px solid #C9A84C;
}
.at-quote blockquote {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1rem; color: #0f2d1e; line-height: 1.6;
}
.about-teaser-text .section-title { margin-bottom: 20px; }
.about-teaser-text p { color: #555; font-size: 0.97rem; margin-bottom: 16px; }
.about-teaser-text p:last-of-type { margin-bottom: 32px; }

/* ===================================================
   CTA BANNER
   =================================================== */
.cta-banner { background: #1B4332; padding: 80px 0; }
.cta-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.cta-inner h2 { color: #F8F5F0; margin-bottom: 14px; font-size: clamp(1.6rem,3vw,2.2rem); }
.cta-inner p { color: rgba(248,245,240,0.65); margin-bottom: 36px; font-size: 1rem; }

/* ===================================================
   FOOTER
   =================================================== */
.footer { background: #0a1f14; padding: 70px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(248,245,240,0.08);
}
.footer-brand p { color: rgba(248,245,240,0.45); font-size: 0.88rem; margin-top: 20px; max-width: 300px; line-height: 1.7; }
.footer-links h4, .footer-contact h4 {
  font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: #C9A84C; margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(248,245,240,0.55); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: #F8F5F0; }
.footer-contact p { color: rgba(248,245,240,0.55); font-size: 0.9rem; margin-bottom: 14px; }
.footer-contact a { color: rgba(248,245,240,0.55); transition: color 0.2s; }
.footer-contact a:hover { color: #F8F5F0; }
.whatsapp-link { display: inline-flex; align-items: center; gap: 8px; color: #25D366 !important; font-size: 0.9rem; font-weight: 500; }
.whatsapp-link:hover { color: #1fb055 !important; }
.footer-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { color: rgba(248,245,240,0.3); font-size: 0.8rem; }
.footer-origin { font-style: italic; font-family: 'Playfair Display', serif; font-size: 0.85rem !important; color: rgba(201,168,76,0.4) !important; }

/* ===================================================
   PAGE HERO (inner pages)
   =================================================== */
.page-hero { background: #0f2d1e; padding: 160px 0 90px; position: relative; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(201,168,76,0.07) 0%, transparent 55%);
}
.page-hero .section-eyebrow { color: #C9A84C; }
.page-title { color: #F8F5F0; font-size: clamp(2rem,4.5vw,3.2rem); margin-bottom: 20px; position: relative; }
.page-subtitle { color: rgba(248,245,240,0.65); font-size: 1rem; max-width: 600px; line-height: 1.75; position: relative; }

/* ===================================================
   PRODUCTS PAGE
   =================================================== */
.products-section { padding: 90px 0; background: #F8F5F0; }
.products-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; margin-bottom: 60px; }
.product-card {
  background: #fff; border: 1px solid rgba(27,67,50,0.08);
  display: flex; flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}
.product-card:hover { box-shadow: 0 16px 50px rgba(27,67,50,0.12); transform: translateY(-4px); }
.product-card-header {
  background: #1B4332; padding: 36px 32px;
  display: flex; align-items: center; justify-content: space-between;
  position: relative; min-height: 130px;
}
.product-badge {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: #C9A84C; background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3); padding: 6px 14px; align-self: flex-start;
}
.product-illustration { width: 80px; height: 80px; opacity: 0.8; }
.product-card-body { padding: 32px; flex: 1; }
.product-name { font-size: 1.5rem; color: #0f2d1e; margin-bottom: 8px; }
.product-tagline { font-size: 0.9rem; color: #666; margin-bottom: 24px; font-style: italic; }
.product-details { border-top: 1px solid rgba(27,67,50,0.08); padding-top: 20px; margin-bottom: 24px; }
.product-detail-row {
  display: flex; gap: 16px; padding: 8px 0;
  border-bottom: 1px solid rgba(27,67,50,0.05); font-size: 0.88rem;
}
.detail-label { color: #999; font-weight: 500; min-width: 100px; flex-shrink: 0; }
.detail-value { color: #333; }
.product-forms { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.form-tag {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em;
  color: #1B4332; background: rgba(27,67,50,0.07); padding: 5px 12px; border-radius: 1px;
}
.product-card-footer { padding: 0 32px 32px; }
.products-note {
  background: #fff; border: 1px solid rgba(201,168,76,0.3);
  border-left: 4px solid #C9A84C; padding: 28px 32px;
  display: flex; align-items: flex-start; gap: 20px;
}
.note-icon { color: #C9A84C; flex-shrink: 0; margin-top: 2px; }
.products-note p { font-size: 0.95rem; color: #444; }

/* Processing Forms section */
.forms-section { padding: 90px 0; background: #fff; }
.forms-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 55px; }
.form-card {
  padding: 36px 24px; background: #F8F5F0;
  border-bottom: 3px solid transparent; text-align: center; transition: all 0.3s;
}
.form-card:hover { border-bottom-color: #C9A84C; box-shadow: 0 8px 30px rgba(27,67,50,0.08); }
.form-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: #1B4332; }
.form-icon svg { width: 28px; height: 28px; }
.form-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.form-card p { font-size: 0.87rem; color: #666; line-height: 1.6; }

/* ===================================================
   ABOUT PAGE
   =================================================== */
.story-section { padding: 90px 0; background: #F8F5F0; }
.story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.story-text p { font-size: 1.02rem; color: #3a3a3a; margin-bottom: 20px; line-height: 1.8; }
.story-lead {
  font-size: 1.15rem !important; color: #1B4332 !important; font-weight: 400;
  border-left: 3px solid #C9A84C; padding-left: 20px;
  margin-bottom: 28px !important; line-height: 1.7 !important;
}
.story-quote-block { background: #1B4332; padding: 40px 36px; margin-bottom: 40px; }
.story-quote-block blockquote {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.1rem; color: #F8F5F0; line-height: 1.6; margin-bottom: 16px;
}
.story-quote-block cite { font-size: 0.8rem; color: rgba(248,245,240,0.5); letter-spacing: 0.08em; font-style: normal; }
.story-values { display: flex; flex-direction: column; gap: 20px; }
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.value-dot { width: 8px; height: 8px; background: #C9A84C; border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
.value-item strong { display: block; color: #0f2d1e; font-size: 0.95rem; margin-bottom: 4px; }
.value-item p { font-size: 0.87rem; color: #666; margin: 0; }

/* Differentiators */
.differentiators-section { padding: 90px 0; background: #fff; }
.diff-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; margin-top: 55px; }
.diff-card { padding: 40px; background: #F8F5F0; border-top: 3px solid #1B4332; transition: all 0.3s; }
.diff-card:hover { box-shadow: 0 8px 30px rgba(27,67,50,0.1); transform: translateY(-3px); }
.diff-number {
  font-family: 'Playfair Display', serif; font-size: 2.5rem;
  color: rgba(201,168,76,0.25); font-weight: 700; margin-bottom: 16px; line-height: 1;
}
.diff-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.diff-card p { font-size: 0.93rem; color: #555; line-height: 1.75; }

/* Origin */
.origin-section { padding: 90px 0; background: #1B4332; }
.origin-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.origin-text .section-eyebrow { color: #C9A84C; }
.origin-text .section-title { color: #F8F5F0; }
.origin-text p { color: rgba(248,245,240,0.7); margin-bottom: 16px; font-size: 0.97rem; line-height: 1.8; }
.origin-stats { display: flex; flex-direction: column; gap: 28px; }
.origin-stat { padding: 24px 28px; background: rgba(248,245,240,0.07); border-left: 3px solid #C9A84C; }
.os-number { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; color: #C9A84C; margin-bottom: 6px; }
.os-label { font-size: 0.85rem; color: rgba(248,245,240,0.6); line-height: 1.5; }

/* ===================================================
   QUALITY PAGE
   =================================================== */
.quality-statement { padding: 80px 0; background: #fff; border-bottom: 1px solid rgba(27,67,50,0.08); }
.qs-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.qs-headline h2 {
  font-size: clamp(1.6rem,3vw,2.4rem); color: #1B4332;
  line-height: 1.25; border-left: 4px solid #C9A84C; padding-left: 28px;
}
.qs-text p { font-size: 0.97rem; color: #555; margin-bottom: 16px; line-height: 1.8; }

.compliance-section { padding: 90px 0; background: #F8F5F0; }
.compliance-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; margin-top: 55px; }
.compliance-card {
  background: #fff; padding: 36px; border: 1px solid rgba(27,67,50,0.08);
  display: flex; gap: 24px; align-items: flex-start; transition: box-shadow 0.3s;
}
.compliance-card:hover { box-shadow: 0 8px 30px rgba(27,67,50,0.08); }
.cc-icon {
  width: 52px; height: 52px; background: rgba(27,67,50,0.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #1B4332; border-radius: 1px;
}
.cc-icon svg { width: 24px; height: 24px; }
.cc-content h3 { font-size: 1.1rem; margin-bottom: 10px; }
.cc-content p { font-size: 0.9rem; color: #555; line-height: 1.7; margin-bottom: 16px; }
.cc-status {
  display: flex; align-items: center; gap: 8px; font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.06em; color: #1B4332; text-transform: uppercase;
}
.status-dot { width: 7px; height: 7px; background: #2ecc71; border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.additional-docs { padding: 90px 0; background: #fff; }
.docs-list { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 50px; }
.doc-item {
  display: flex; align-items: center; gap: 12px; padding: 18px 20px;
  background: #F8F5F0; border: 1px solid rgba(27,67,50,0.08); font-size: 0.88rem; color: #333;
}
.doc-check {
  width: 28px; height: 28px; background: #1B4332;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #F8F5F0; border-radius: 50%;
}

.quality-process { padding: 90px 0; background: #1B4332; }
.quality-process .section-eyebrow { color: #C9A84C; }
.quality-process .section-title { color: #F8F5F0; }
.process-steps { display: flex; align-items: flex-start; margin-top: 60px; }
.process-step { flex: 1; padding: 0 24px; }
.step-number {
  font-family: 'Playfair Display', serif; font-size: 3rem;
  color: rgba(201,168,76,0.25); font-weight: 700; line-height: 1; margin-bottom: 16px;
}
.step-content h3 { color: #F8F5F0; font-size: 1.05rem; margin-bottom: 10px; }
.step-content p { font-size: 0.88rem; color: rgba(248,245,240,0.6); line-height: 1.7; }
.process-connector { width: 1px; height: 80px; background: rgba(248,245,240,0.15); align-self: center; flex-shrink: 0; }

/* ===================================================
   CONTACT PAGE
   =================================================== */
.contact-section { padding: 90px 0 110px; background: #F8F5F0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }

.contact-info h2 { font-size: 1.9rem; color: #0f2d1e; margin-bottom: 16px; }
.contact-intro { font-size: 0.97rem; color: #555; line-height: 1.75; margin-bottom: 44px; }
.contact-methods { display: flex; flex-direction: column; gap: 28px; margin-bottom: 44px; }
.contact-method { display: flex; gap: 18px; align-items: flex-start; }
.cm-icon {
  width: 44px; height: 44px; background: #1B4332;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #F8F5F0;
}
.cm-icon svg { width: 20px; height: 20px; }
.cm-icon-wa { background: #25D366; }
.cm-content { display: flex; flex-direction: column; gap: 3px; padding-top: 4px; }
.cm-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #999; }
.cm-value { font-size: 0.97rem; color: #1B4332; font-weight: 500; transition: color 0.2s; }
.cm-value:hover { color: #C9A84C; }
.cm-note { font-size: 0.8rem; color: #999; }

.response-note {
  display: flex; align-items: center; gap: 12px; padding: 18px 22px;
  background: rgba(27,67,50,0.06); border-left: 3px solid #1B4332;
}
.rn-icon { color: #1B4332; flex-shrink: 0; }
.response-note p { font-size: 0.88rem; color: #1B4332; font-weight: 500; margin: 0; }

.contact-form-wrap {
  background: #fff; padding: 48px 44px;
  border: 1px solid rgba(27,67,50,0.08);
  box-shadow: 0 4px 40px rgba(27,67,50,0.06);
}
.contact-form-wrap h2 { font-size: 1.6rem; color: #0f2d1e; margin-bottom: 32px; }

.inquiry-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; gap: 20px; }
.form-row-2 > * { flex: 1; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #444; }
.required { color: #C9A84C; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px; background: #F8F5F0;
  border: 1.5px solid rgba(27,67,50,0.12);
  font-family: 'Inter', sans-serif; font-size: 0.93rem; color: #1a1a1a;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; border-radius: 0; -webkit-appearance: none; appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #bbb; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1B4332; background: #fff;
  box-shadow: 0 0 0 3px rgba(27,67,50,0.07);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #c0392b; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231B4332' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 42px; cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.btn-submit { width: 100%; justify-content: center; padding: 16px; font-size: 0.88rem; margin-top: 4px; }
.form-disclaimer { font-size: 0.78rem; color: #aaa; text-align: center; margin: 0; }

.form-success { text-align: center; padding: 60px 20px; }
.success-icon {
  width: 72px; height: 72px; background: rgba(27,67,50,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; color: #1B4332;
}
.form-success h3 { font-size: 1.5rem; margin-bottom: 12px; color: #0f2d1e; }
.form-success p { font-size: 0.95rem; color: #666; max-width: 360px; margin: 0 auto; }

/* ===================================================
   SCROLL ANIMATIONS
   =================================================== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ===================================================
   RESPONSIVE — TABLET (≤ 1024px)
   =================================================== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; gap: 24px; }
  .teaser-inner { grid-template-columns: 1fr; gap: 48px; }
  .teaser-varieties { grid-template-columns: repeat(4,1fr); }
  .about-teaser-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-teaser-visual { min-height: 280px; }
  .story-inner { grid-template-columns: 1fr; gap: 48px; }
  .diff-grid { grid-template-columns: 1fr; gap: 20px; }
  .origin-inner { grid-template-columns: 1fr; gap: 48px; }
  .qs-inner { grid-template-columns: 1fr; gap: 40px; }
  .compliance-grid { grid-template-columns: 1fr; }
  .docs-list { grid-template-columns: repeat(2,1fr); }
  .process-steps { flex-direction: column; }
  .process-connector { width: 80px; height: 1px; margin: 0 auto; }
  .process-step { padding: 24px 0; }
  .forms-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .trust-grid { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .trust-item { padding: 16px 32px; }
  .trust-divider { display: none; }
}

/* ===================================================
   RESPONSIVE — MOBILE (≤ 768px)
   =================================================== */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: fixed; inset: 0;
    background: #0a1f14; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 32px; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; color: rgba(248,245,240,0.8); }
  .nav-links a:hover, .nav-links a.active { color: #F8F5F0; }
  .nav-links .nav-cta { padding: 12px 36px; font-size: 0.9rem; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .hero-content { padding: 110px 24px 80px; margin-left: 0; }
  .hero-headline { font-size: clamp(2rem,8vw,2.8rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }
  .page-hero { padding: 120px 0 60px; }

  .why-section, .products-teaser, .about-teaser, .story-section,
  .differentiators-section, .origin-section, .quality-statement,
  .compliance-section, .additional-docs, .quality-process,
  .products-section, .forms-section, .contact-section { padding: 60px 0; }
  .cta-banner { padding: 60px 0; }

  .teaser-varieties { grid-template-columns: repeat(2,1fr); }
  .trust-strip { padding: 40px 0; }
  .trust-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; }
  .trust-item { padding: 20px 16px; background: rgba(248,245,240,0.03); }
  .trust-number { font-size: 1.6rem; }

  .forms-grid { grid-template-columns: repeat(2,1fr); }
  .product-card-header { min-height: auto; padding: 24px; }
  .product-card-body { padding: 24px; }
  .product-card-footer { padding: 0 24px 24px; }

  .about-teaser-visual { min-height: 220px; }
  .at-quote { padding: 20px; }
  .at-quote blockquote { font-size: 0.9rem; }

  .docs-list { grid-template-columns: 1fr; }
  .process-connector { width: 1px; height: 32px; margin: 0 0 0 48px; }
  .process-step { padding: 16px 0; }

  .contact-form-wrap { padding: 32px 24px; }
  .form-row-2 { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-origin { display: none; }
  .compliance-card { flex-direction: column; }
  .story-quote-block { padding: 28px 24px; }
}

/* ===================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   =================================================== */
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .why-card { padding: 28px 22px; }
  .diff-card { padding: 28px 22px; }
  .teaser-varieties { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .forms-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .docs-list { grid-template-columns: 1fr; }
  .form-row-2 { flex-direction: column; }
  .contact-form-wrap { padding: 28px 18px; }
  .hero-headline br { display: none; }
  .page-title br { display: none; }
}
