:root {
  --green-950: #123d2e;
  --green-800: #2b644f;
  --gold: #c69a45;
  --paper: #f7f5ef;
  --sage: #b8c8b2;
  --ink: #17231e;
  --muted: #5d6a62;
  --white: #ffffff;
  --line: rgba(23, 35, 30, .14);
  --shadow: 0 18px 50px rgba(18, 61, 46, .14);
  --shadow-soft: 0 12px 32px rgba(18, 61, 46, .09);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-top: 82px;
  font-family: Inter, "Source Sans 3", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3, h4 {
  font-family: Manrope, "Plus Jakarta Sans", Inter, sans-serif;
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--green-950);
}

.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--green-800);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(247, 245, 239, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 28px rgba(18, 61, 46, .08);
}
.site-header .container { width: min(1400px, calc(100% - 64px)); }
.nav-wrap {
  position: relative;
  min-height: 82px;
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: clamp(22px, 2.4vw, 34px);
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--green-950);
  line-height: 1;
  min-width: 0;
}
.brand-wordmark {
  display: grid;
  justify-items: center;
  width: min(252px, 100%);
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  color: #123D2E;
  font-size: clamp(1.28rem, 1.25vw, 1.48rem);
  font-weight: 700;
  letter-spacing: .09em;
  line-height: .95;
}
.brand-tagline {
  margin-top: 8px;
  color: #123D2E;
  font-size: clamp(.42rem, .42vw, .48rem);
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1;
}
.brand-tagline span { color: #C69A45; padding: 0 .28em; }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 1.7vw, 28px);
  font-size: clamp(.88rem, .78vw, .94rem);
  font-weight: 650;
}
.drawer-body a {
  flex-shrink: 0;
  color: #294039;
  line-height: 1;
  white-space: nowrap;
  transition: color .2s ease;
}
.drawer-body a:hover, .drawer-body a.active { color: var(--gold); }
.nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.site-header .btn-primary {
  min-height: 46px;
  padding: 11px 22px;
  border-radius: 9px;
  font-size: .91rem;
  font-weight: 700;
  white-space: nowrap;
}
.site-header .btn-primary:hover { transform: translateY(-1px); background: #1a533f; }
.nav-overlay,
.drawer-head,
.drawer-footer,
.drawer-quote { display: none; }
.drawer-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: inherit;
}
.menu-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--green-950);
  padding: 0;
  border-radius: var(--radius);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.menu-toggle:focus-visible,
.drawer-close:focus-visible,
.filter-btn:focus-visible {
  outline: 3px solid rgba(198, 154, 69, .45);
  outline-offset: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(18, 61, 46, .14); }
.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(198, 154, 69, .48);
  outline-offset: 3px;
}
.btn-primary { background: var(--green-950); color: var(--white); }
.btn-secondary { background: var(--gold); color: var(--green-950); }
.btn-outline { background: transparent; border-color: rgba(18, 61, 46, .24); color: var(--green-950); }
.btn-light { background: var(--white); color: var(--green-950); }
.btn-whatsapp {
  background: var(--green-950);
  color: var(--white);
  border-color: var(--gold);
}
.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: #174936;
  color: var(--white);
}
.btn-whatsapp svg { width: 20px; height: 20px; flex: 0 0 auto; }

.whatsapp-connect {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  min-width: 58px;
  height: 58px;
  min-height: 58px;
  padding: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--green-950);
  color: #ffffff;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1;
  box-shadow: 0 16px 34px rgba(18, 61, 46, .24);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.whatsapp-connect::after {
  content: "Discuss Your Requirements";
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  padding: 8px 10px;
  border-radius: 6px;
  background: var(--green-950);
  color: var(--white);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}
.whatsapp-connect:hover {
  transform: translateY(-2px);
  background: #174936;
  box-shadow: 0 22px 48px rgba(18, 61, 46, .3);
}
.whatsapp-connect:hover::after,
.whatsapp-connect:focus-visible::after { opacity: 1; }
.whatsapp-connect span { display: none; }
.whatsapp-connect svg {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
}

.hero {
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  color: var(--white);
  overflow: hidden;
  background: #123d2e url("../public/images/hero/container-ship-terminal.webp") center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 61, 46, .93) 0%, rgba(18, 61, 46, .76) 40%, rgba(18, 61, 46, .42) 72%, rgba(18, 61, 46, .22) 100%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.32));
}
.hero-poster,
.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}
.hero-poster img,
.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg-video { display: none; }
.hero.video-ready .hero-bg-video { display: block; }
.hero.video-ready .hero-poster { opacity: 0; }
.hero-poster { transition: opacity .35s ease; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.28));
  pointer-events: none;
}
.hero-content { padding: clamp(72px, 8vw, 104px) 0 clamp(54px, 6vw, 78px); max-width: 720px; }
.hero .eyebrow { color: rgba(255,255,255,.88); }
.hero h1 { color: var(--white); font-size: clamp(2.35rem, 5.5vw, 4.8rem); max-width: 700px; }
.hero p { color: rgba(255,255,255,.9); font-size: clamp(1rem, 1.35vw, 1.18rem); max-width: 620px; margin-top: 20px; line-height: 1.62; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 30px; }
.hero-actions .btn { min-width: 172px; }
.hero-strip {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
}
.hero-strip div { padding: 18px; border-right: 1px solid rgba(255,255,255,.2); }
.hero-strip div:last-child { border-right: 0; }
.hero-strip strong { display: block; color: var(--white); }
.hero-strip span { color: rgba(255,255,255,.75); font-size: .92rem; }

.section { padding: clamp(62px, 7vw, 92px) 0; }
.section.alt { background: var(--white); }
.section-head { display: flex; justify-content: space-between; gap: 32px; align-items: end; margin-bottom: 34px; }
.section-head h2, .page-hero h1 { font-size: clamp(2rem, 4vw, 3.35rem); max-width: 760px; }
.section-head p { max-width: 520px; }
.intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.feature-list { display: grid; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.feature-list li, .check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: rgba(184, 200, 178, .22);
  border: 1px solid rgba(43, 100, 79, .13);
  border-radius: var(--radius);
}
.tick { color: var(--gold); font-weight: 900; }

.image-panel {
  aspect-ratio: 16 / 10;
  min-height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.image-panel img { width: 100%; height: 100%; object-fit: cover; }

.grid { display: grid; gap: 24px; align-items: stretch; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 0;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(198, 154, 69, .38); }
.product-card { display: flex; flex-direction: column; height: 100%; min-width: 0; }
.card-img { aspect-ratio: 16 / 10; height: 230px; width: 100%; object-fit: cover; background: rgba(184, 200, 178, .24); }
.product-card-fruits .card-img,
.product-card-genuine-leather-products .card-img,
.product-card-textile-and-denim .card-img { object-position: center 42%; }
.card-body { padding: 22px; }
.product-card .card-body { display: flex; flex: 1; min-width: 0; flex-direction: column; }
.card h3 { font-size: 1.22rem; margin: 8px 0 10px; }
.product-eyebrow { min-height: 16px; }
.product-card h3 { min-height: 54px; display: flex; align-items: flex-start; }
.product-desc { min-height: 158px; margin-bottom: 0; }
.product-card p { line-height: 1.58; }
.card-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; align-items: center; }
.product-card .spec-table { margin-top: auto; }
.product-card .card-actions { margin-top: 18px; }
.product-card .card-actions .btn { flex: 1 1 145px; justify-content: center; }

.product-details { display: grid; gap: 34px; margin-top: 46px; }
.product-detail-group { border-top: 1px solid var(--line); padding-top: 34px; }
.section-head.compact { margin-bottom: 22px; align-items: start; }
.section-head.compact h2 { font-size: clamp(1.45rem, 2.6vw, 2.25rem); }
.detail-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.detail-card { display: flex; min-width: 0; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.detail-card img { width: 100%; height: 188px; object-fit: cover; aspect-ratio: 16 / 10; background: rgba(184, 200, 178, .24); }
.detail-card div { display: flex; flex: 1; flex-direction: column; padding: 18px; }
.detail-card h3 { margin: 0 0 8px; font-size: 1.08rem; }
.detail-card p { margin: 0; line-height: 1.55; }

.trust-grid { gap: 18px; }
.trust-item {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.trust-item h3 { font-size: 1rem; margin-bottom: 8px; }
.trust-item p { font-size: .94rem; margin: 0; line-height: 1.55; }

.quality-panel {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.quality-panel h3 { margin-bottom: 18px; }

.market-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.market-strip span {
  display: grid;
  place-items: center;
  min-height: 82px;
  padding: 16px;
  background: var(--white);
  border: 1px solid rgba(43, 100, 79, .18);
  border-radius: var(--radius);
  color: var(--green-950);
  font-weight: 900;
  text-align: center;
}

.steps { counter-reset: step; display: grid; gap: 16px; }
.steps-compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.steps-compact .step:last-child { grid-column: 1 / -1; }
.step::before {
  content: counter(step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--green-950);
  background: var(--sage);
  border-radius: 50%;
  font-weight: 900;
}

.availability, .spec-table { width: 100%; table-layout: fixed; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.availability th, .availability td, .spec-table th, .spec-table td { padding: 13px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; overflow-wrap: anywhere; }
.availability tr:last-child th, .availability tr:last-child td, .spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.availability th, .spec-table th { background: rgba(184, 200, 178, .28); color: var(--green-950); }
.spec-table { margin-top: 8px; font-size: .93rem; }
.spec-table th { width: 42%; }

.page-hero {
  padding: 72px 0 46px;
  background: linear-gradient(180deg, rgba(184,200,178,.34), rgba(247,245,239,0));
}
.page-hero p { max-width: 760px; font-size: 1.08rem; margin-top: 18px; }
.page-hero + .section { padding-top: 46px; }

.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.filter-btn { border: 1px solid var(--line); background: var(--white); color: var(--green-950); padding: 10px 14px; border-radius: 999px; font-weight: 800; cursor: pointer; }
.filter-btn.active { background: var(--green-950); color: var(--white); }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 800; color: var(--green-950); }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(23, 35, 30, .18);
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
  font-size: 1rem;
  background: var(--white);
  color: var(--ink);
}
textarea { min-height: 130px; resize: vertical; }
.notice {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(198, 154, 69, .14);
  border: 1px solid rgba(198, 154, 69, .35);
  color: var(--green-950);
}
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }

.cta-band { background: var(--green-950); color: var(--white); padding: 64px 0; }
.cta-band h2 { color: var(--white); font-size: clamp(1.9rem, 4vw, 3rem); }
.cta-band p { color: rgba(255,255,255,.8); max-width: 720px; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }

.site-footer { background: #0f3025; color: rgba(255,255,255,.78); padding: 58px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 30px; }
.site-footer h3, .site-footer h4 { color: var(--white); margin-bottom: 14px; }
.footer-links { display: grid; gap: 9px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 10px 16px; border-top: 1px solid rgba(255,255,255,.14); margin-top: 34px; padding-top: 22px; font-size: .92rem; }
.footer-bottom span { color: rgba(255,255,255,.72); }
body.has-whatsapp-connect .site-footer { padding-bottom: 118px; }

@media (max-width: 1240px) {
  body { padding-top: 80px; }
  body.nav-open { overflow: hidden; }
  body.nav-open .whatsapp-connect {
    display: none;
    pointer-events: none;
  }
  .site-header .container { width: min(100% - 48px, 1160px); }
  .menu-toggle { display: inline-grid; }
  .nav-wrap {
    min-height: 80px;
    display: flex;
    justify-content: space-between;
    column-gap: 18px;
  }
  .brand-wordmark { width: 246px; }
  .brand-name { font-size: 1.28rem; letter-spacing: .08em; }
  .brand-tagline { font-size: .4rem; letter-spacing: .12em; }
  .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 89;
    display: block;
    background: rgba(15, 48, 37, .52);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
  }
  body.nav-open .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: min(86vw, 388px);
    height: 100dvh;
    padding: 22px 24px calc(24px + env(safe-area-inset-bottom));
    background: var(--paper);
    border-left: 1px solid var(--line);
    box-shadow: -18px 0 42px rgba(18, 61, 46, .2);
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform .24s ease;
  }
  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .drawer-body {
    display: block;
    overflow-y: auto;
    min-height: 0;
    padding-bottom: 18px;
    -webkit-overflow-scrolling: touch;
  }
  .drawer-body a {
    display: flex;
    align-items: center;
    min-height: 50px;
    border-bottom: 1px solid rgba(23, 35, 30, .1);
    color: var(--green-950);
    font-size: 1.02rem;
    font-weight: 800;
  }
  .drawer-body a.active {
    color: var(--green-950);
    box-shadow: inset 4px 0 0 var(--gold);
    padding-left: 14px;
  }
  .drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }
  .drawer-tagline {
    color: var(--green-800);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .11em;
    line-height: 1.35;
    text-transform: uppercase;
  }
  .drawer-tagline span { color: var(--gold); }
  .drawer-close {
    display: inline-grid;
    place-items: center;
    position: relative;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--green-950);
    cursor: pointer;
  }
  .drawer-close span {
    position: absolute;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
  }
  .drawer-close span:first-child { transform: rotate(45deg); }
  .drawer-close span:last-child { transform: rotate(-45deg); }
  .drawer-footer {
    display: block;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }
  .nav-links .drawer-quote {
    display: inline-flex;
    width: 100%;
    min-height: 50px;
    padding: 12px 24px;
    border-radius: 9px;
    background: var(--green-950);
    color: var(--white);
    font-size: .96rem;
    font-weight: 700;
    opacity: 1;
    box-shadow: 0 12px 28px rgba(18, 61, 46, .16);
  }
  .nav-links .drawer-quote:hover,
  .nav-links .drawer-quote:focus-visible {
    background: #174936;
    color: var(--white);
  }
  .nav-actions .btn-primary { display: none; }
  .intro-grid, .cta-inner { grid-template-columns: 1fr; display: grid; }
  .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr 1fr; }
  .market-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-compact { grid-template-columns: 1fr; }
  .steps-compact .step:last-child { grid-column: auto; }
  .detail-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: clamp(58px, 6vw, 76px) 0; }
  .section-head { margin-bottom: 28px; }
  .section-head h2,
  .page-hero h1 {
    font-size: clamp(2.25rem, 4vw, 3rem);
    line-height: 1.08;
  }
  .page-hero {
    padding: 58px 0 38px;
    background: linear-gradient(180deg, rgba(184,200,178,.26), rgba(247,245,239,0));
  }
  .page-hero p {
    max-width: 680px;
    font-size: 1.02rem;
    line-height: 1.62;
  }
  .page-hero + .section { padding-top: 34px; }
  .card-img { height: 220px; }
  .card-body { padding: 20px; }
  .product-card h3 { min-height: 0; }
  .product-desc { min-height: 132px; }
  .section-head { display: block; }
  .hero-strip { grid-template-columns: 1fr; }
  .hero-strip div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .hero-content { max-width: 680px; }
  .hero {
    min-height: min(720px, calc(100dvh - 80px));
    align-items: center;
  }
  .hero-content { padding: 58px 0 42px; }
  .hero h1 { font-size: clamp(2.5rem, 5.2vw, 4rem); }
  .hero p { font-size: clamp(1rem, 1.3vw, 1.12rem); }
  .hero-strip { margin-top: 38px; }
  .whatsapp-connect {
    right: 24px;
    bottom: calc(24px + env(safe-area-inset-bottom));
    width: 54px;
    min-width: 54px;
    height: 54px;
    min-height: 54px;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--gold);
    border-radius: 50%;
    background: var(--green-950);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(18, 61, 46, .24);
  }
  .whatsapp-connect svg { width: 25px; height: 25px; }
  .whatsapp-connect::after { display: none; }
  body.has-whatsapp-connect .site-footer { padding-bottom: 78px; }
}

@media (max-width: 900px) {
  .nav-actions .btn-primary { display: none; }
}

@media (max-width: 640px) {
  body { padding-top: 72px; }
  .container { width: min(100% - 40px, 1160px); }
  .site-header .container { width: min(100% - 40px, 1160px); }
  .nav-wrap {
    min-height: 72px;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 12px;
  }
  .brand { min-width: 0; }
  .brand-wordmark {
    width: min(210px, calc(100vw - 112px));
    justify-items: start;
    text-align: left;
  }
  .brand-name {
    font-size: clamp(1rem, 4.4vw, 1.18rem);
    letter-spacing: .07em;
  }
  .brand-tagline { display: none; }
  .menu-toggle {
    width: 44px;
    height: 44px;
    color: var(--green-950);
  }
  .nav-links {
    width: min(88vw, 352px);
    padding: 18px 20px calc(20px + env(safe-area-inset-bottom));
  }
  .page-hero {
    padding: 54px 0 34px;
    background: linear-gradient(180deg, rgba(184,200,178,.24), rgba(247,245,239,0));
  }
  .page-hero + .section { padding-top: 28px; }
  .page-hero h1 {
    max-width: 11.5ch;
    font-size: clamp(2.38rem, 10.2vw, 2.85rem);
    line-height: 1.08;
    overflow-wrap: normal;
  }
  .page-hero p {
    max-width: 32ch;
    margin-top: 18px;
    font-size: clamp(1.06rem, 4.2vw, 1.16rem);
    line-height: 1.62;
    overflow-wrap: normal;
  }
  .page-hero .eyebrow { font-size: .82rem; }
  .notice { overflow-wrap: anywhere; }
  .hero { min-height: 650px; background-position: 58% center; }
  .hero-content { width: min(100%, calc(100vw - 32px)); padding: 64px 0 38px; }
  .hero .eyebrow { max-width: 100%; font-size: .68rem; line-height: 1.3; }
  .hero h1 { font-size: clamp(1.95rem, 8.7vw, 2.35rem); max-width: 12ch; overflow-wrap: normal; }
  .hero p { font-size: .96rem; max-width: 34ch; overflow-wrap: anywhere; }
  .hero-strip span { overflow-wrap: anywhere; }
  .hero-actions .btn { flex: 1 1 100%; width: 100%; }
  .hero-strip { margin-top: 34px; }
  .section { padding: 58px 0; }
  .filters {
    display: flex;
    flex-wrap: nowrap;
    gap: 9px;
    margin: 0 -20px 22px;
    padding: 0 20px 4px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filters::-webkit-scrollbar { display: none; }
  .filter-btn {
    flex: 0 0 auto;
    min-width: max-content;
    min-height: 42px;
    padding: 9px 18px;
    font-size: .92rem;
    line-height: 1;
    scroll-snap-align: start;
    box-shadow: 0 8px 20px rgba(18, 61, 46, .06);
  }
  .grid-3, .grid-4, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .market-strip { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .card-img { height: 215px; }
  .product-desc { min-height: 0; }
  .product-card .card-actions .btn { flex-basis: 100%; }
  .detail-card img { height: 205px; }
  .image-panel { aspect-ratio: 4 / 3; }
  .step { grid-template-columns: 1fr; }
  .nav-actions .btn-primary { display: none; }
  .card-body { padding: 18px; }
  .availability th, .availability td, .spec-table th, .spec-table td { padding: 12px; }
  .spec-table, .spec-table tbody, .spec-table tr, .spec-table th, .spec-table td { display: block; width: 100%; }
  .spec-table th { border-bottom: 0; }
  .spec-table td { padding-top: 0; }
  .whatsapp-connect {
    left: auto;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    justify-content: center;
    width: 50px;
    min-width: 50px;
    height: 50px;
    min-height: 50px;
    padding: 0;
  }
  .whatsapp-connect svg { width: 23px; height: 23px; }
  .whatsapp-connect::after { display: none; }
}

@media (max-width: 940px) and (max-height: 480px) {
  body { padding-top: 72px; }
  .site-header .container { width: min(100% - 40px, 1160px); }
  .nav-wrap { min-height: 72px; }
  .brand-wordmark {
    width: min(210px, calc(100vw - 112px));
    justify-items: start;
    text-align: left;
  }
  .brand-name { font-size: 1.05rem; }
  .brand-tagline { display: none; }
  .page-hero { padding: 34px 0 24px; }
  .page-hero h1 {
    max-width: 16ch;
    font-size: clamp(2rem, 7vw, 2.55rem);
  }
  .page-hero p {
    max-width: 58ch;
    font-size: 1rem;
    line-height: 1.5;
  }
  .hero {
    min-height: auto;
    align-items: center;
  }
  .hero-content { padding: 42px 0 32px; }
  .hero h1 {
    max-width: 14ch;
    font-size: clamp(2.1rem, 8vw, 3rem);
  }
  .hero p { max-width: 48ch; }
  .hero-strip { margin-top: 24px; }
  .section { padding: 44px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-links,
  .nav-overlay,
  .menu-toggle span,
  .whatsapp-connect::after {
    transition: none;
  }
}
