/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:          #ffffff;
  --bg-2:        #f6f4ef;
  --bg-navy:     #101a2e;
  --bg-navy-2:   #16233c;
  --ink:         #14181f;
  --ink-soft:    #3b4250;
  --ink-mute:    #6b7280;
  --cream:       #f5f2ea;
  --navy:        #14284a;
  --navy-2:      #1c3563;
  --accent:      #2f8f52;
  --accent-2:    #226b3d;
  --accent-soft: #e8f5eb;
  --line:        rgba(20, 24, 31, 0.1);
  --line-strong: rgba(20, 24, 31, 0.18);
  --line-on-navy: rgba(245, 242, 234, 0.14);

  --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --display: "Space Grotesk", "Inter", -apple-system, "Segoe UI", system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 26px;
  --shadow-card: 0 1px 2px rgba(16, 26, 46, 0.06), 0 12px 28px -14px rgba(16, 26, 46, 0.18);
  --shadow-card-hover: 0 4px 10px rgba(16, 26, 46, 0.08), 0 26px 46px -18px rgba(16, 26, 46, 0.28);
  --shadow-float: 0 14px 34px -10px rgba(16, 26, 46, 0.4);
  --nav-h: 76px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
body.no-scroll { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  text-wrap: balance;
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-weight: 700;
}
::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.1rem; background: var(--ink); color: #fff;
  z-index: 9999; border-radius: 8px; font-weight: 600; font-size: .9rem;
  transition: top .25s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 960px) { .container { padding-inline: 2.5rem; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section-alt { background: var(--bg-2); }
.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}
.section-head h1, .section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); margin-block: .6rem 0; }
.section-head p { color: var(--ink-mute); font-size: 1.05rem; margin-top: .9rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-revealed { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 600;
  font-size: .96rem;
  white-space: nowrap;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), background .25s var(--ease-out), color .25s var(--ease-out), border-color .25s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(47, 143, 82, 0.5);
}
.btn-primary:hover { background: var(--accent-2); box-shadow: 0 16px 30px -8px rgba(34, 107, 61, 0.5); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245, 242, 234, 0.5);
}
.btn-outline:hover { border-color: #fff; background: rgba(245, 242, 234, 0.08); }
.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover { background: var(--navy-2); }
.btn-sm { padding: .6rem 1.1rem; font-size: .85rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .4; cursor: not-allowed; transform: none; }

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: sticky; top: 0; z-index: 60;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
@supports not (backdrop-filter: blur(10px)) {
  .nav { background: rgba(255, 255, 255, 0.98); }
}
.nav.is-scrolled { border-color: var(--line); box-shadow: 0 8px 24px -18px rgba(16, 26, 46, 0.4); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; }
.nav-brand { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.nav-logo { height: 46px; width: auto; }
.nav-brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand-name strong { font-family: var(--display); font-size: 1.05rem; color: var(--ink); }
.nav-brand-name span { font-size: .72rem; color: var(--ink-mute); }

.nav-menu {
  display: flex; align-items: center; gap: 2rem;
  list-style: none; padding: 0; margin: 0;
}
.nav-menu a {
  font-weight: 600; font-size: .95rem; color: var(--ink-soft);
  position: relative; padding-block: .35rem;
}
.nav-menu a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--accent);
  transition: right .3s var(--ease-out);
}
.nav-menu a:hover { color: var(--ink); }
.nav-menu a:hover::after { right: 0; }

.nav-contact { display: none; align-items: center; gap: 1.4rem; margin-right: 1.4rem; }
.nav-contact a {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .85rem; font-weight: 600; color: var(--ink-soft);
  white-space: nowrap;
}
.nav-contact a:hover { color: var(--accent-2); }
.nav-contact svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; }
@media (min-width: 1280px) { .nav-contact { display: flex; } }

.nav-actions { display: flex; align-items: center; gap: .6rem; }
.icon-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--bg-2);
  color: var(--ink);
  transition: background .25s var(--ease-out), transform .25s var(--ease-out);
}
.icon-btn:hover { background: var(--accent-soft); color: var(--accent-2); transform: translateY(-2px); }
.icon-btn svg { width: 20px; height: 20px; }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 19px; height: 19px; padding: 0 4px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: .68rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
}

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 999px;
}
.nav-toggle:hover { background: var(--bg-2); }
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease-out), opacity .3s var(--ease-out); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 959px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: fixed; inset: var(--nav-h) 0 0 0;
    flex-direction: column; align-items: flex-start;
    gap: 0;
    background: #fff;
    padding: 1.5rem 1.25rem 2rem;
    transform: translateY(-8px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .25s var(--ease-out), transform .25s var(--ease-out), visibility .25s;
    overflow-y: auto;
  }
  .nav-menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .nav-menu li { width: 100%; border-bottom: 1px solid var(--line); }
  .nav-menu a { display: block; padding: 1.1rem 0; font-size: 1.05rem; }
  .nav-brand-name span { display: none; }
}

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 88svh;
  display: flex; align-items: flex-end;
  overflow: clip;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
}
.hero-inner {
  position: relative;
  width: 100%;
  padding-block: clamp(6.5rem, 16vw, 9rem) clamp(3rem, 6vw, 4.5rem);
  color: var(--cream);
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--display); font-weight: 600;
  font-size: .82rem; letter-spacing: .05em; text-transform: uppercase;
  color: var(--cream);
  background: rgba(245, 242, 234, 0.12);
  border: 1px solid rgba(245, 242, 234, 0.22);
  padding: .5rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.hero-kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero-title {
  font-size: clamp(2.5rem, 6.4vw, 4.6rem);
  max-width: 16ch;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6), 0 1px 24px rgba(0, 0, 0, 0.5);
}
.hero-title em { font-style: normal; color: var(--accent); }
.hero-sub {
  margin-top: 1.35rem;
  max-width: 44ch;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  color: rgba(245, 242, 234, 0.86);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65), 0 1px 16px rgba(0, 0, 0, 0.5);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.6rem;
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(245, 242, 234, 0.18);
}
.hero-trust-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .88rem; color: rgba(245, 242, 234, 0.85);
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}
.hero-trust-item svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }

/* =============================================================
   7. Marquee
   ============================================================= */
.marquee-section {
  background: var(--navy);
  padding-block: 1.1rem;
  overflow: hidden;
}
.marquee-track {
  display: flex; align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee-track span {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: rgba(245, 242, 234, 0.55);
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =============================================================
   8. Highlights
   ============================================================= */
.highlights-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .highlights-grid { grid-template-columns: repeat(4, 1fr); } }
.highlight-card {
  padding: 1.7rem 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
}
.highlight-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); border-color: transparent; }
.highlight-icon {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-2);
  margin-bottom: 1rem;
}
.highlight-icon svg { width: 24px; height: 24px; }
.highlight-card h3 { font-size: 1.08rem; }
.highlight-card p { font-size: .88rem; color: var(--ink-mute); margin-top: .4rem; }

/* =============================================================
   9. Products
   ============================================================= */
.products-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 1.5rem 1.35rem 1.35rem;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: box-shadow .35s var(--ease-out), border-color .35s var(--ease-out), transform .1s linear;
  will-change: transform;
}
.product-card:hover { box-shadow: var(--shadow-card-hover); border-color: transparent; }
.product-media {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-s);
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--navy);
  overflow: hidden;
}
.product-media svg { width: 46%; height: 46%; }
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product-card h3 {
  font-size: .98rem;
  font-weight: 600;
  line-height: 1.3;
  min-height: 2.6em;
}
.product-spec {
  font-size: .8rem;
  color: var(--ink-mute);
  margin-top: .4rem;
  font-family: var(--display);
  letter-spacing: .01em;
}
.product-card .btn {
  margin-top: 1.15rem;
  font-size: .82rem;
  padding: .78rem 1rem;
}
.product-card .btn.is-added { background: var(--navy); box-shadow: none; }

.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem;
  margin-top: 2.75rem;
}
.page-nav-btn, .page-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 600; font-size: .92rem;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  transition: background .25s var(--ease-out), color .25s var(--ease-out), border-color .25s var(--ease-out);
}
.page-btn:hover, .page-nav-btn:hover { border-color: var(--accent); color: var(--accent-2); }
.page-btn.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }
.page-nav-btn[disabled] { opacity: .35; cursor: not-allowed; }
.page-numbers { display: flex; gap: .5rem; }

/* =============================================================
   10. About
   ============================================================= */
.mission-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
@media (min-width: 820px) { .mission-grid { grid-template-columns: 1fr 1.3fr; } }
.mission-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}
.mission-card h3 { font-size: 1.15rem; margin-top: 1rem; margin-bottom: .6rem; }
.mission-card p { font-size: .95rem; line-height: 1.7; color: var(--ink-mute); }

.about-map {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: clip;
  box-shadow: var(--shadow-card);
  min-height: 320px;
}
.about-map iframe { display: block; width: 100%; height: 100%; min-height: 320px; }

.gallery-head { margin-top: clamp(3rem, 6vw, 4.5rem); margin-bottom: 1.5rem; }
.gallery-head h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-top: .5rem; }
.gallery-strip {
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  margin: 0 -1.25rem;
  padding-inline: 1.25rem;
}
.gallery-track { display: flex; gap: 1.1rem; width: max-content; }
.gallery-track img {
  flex: 0 0 auto;
  width: 240px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  scroll-snap-align: start;
}
@media (min-width: 720px) {
  .gallery-strip { margin-inline: 0; padding-inline: 0; }
}

.about-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}
@media (min-width: 960px) { .about-grid { grid-template-columns: 1.05fr 0.95fr; } }
.about-media { position: relative; border-radius: var(--radius-l); overflow: clip; }
.about-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.about-media-tag {
  position: absolute; left: 1.4rem; bottom: 1.4rem; z-index: 1;
  color: #fff; font-family: var(--display); font-weight: 600;
  font-size: .95rem;
  display: flex; align-items: center; gap: .5rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7), 0 1px 12px rgba(0, 0, 0, 0.5);
}
.about-media-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

.about-copy p.lede { font-size: 1.08rem; color: var(--ink-soft); margin-top: 1.1rem; }
.about-list { margin-top: 1.8rem; display: grid; gap: .95rem; }
.about-list li { display: flex; align-items: flex-start; gap: .8rem; font-size: .96rem; color: var(--ink-soft); }
.about-list svg { width: 22px; height: 22px; color: var(--accent-2); flex-shrink: 0; margin-top: .1rem; }
.about-list strong { color: var(--ink); }
.about-copy .btn { margin-top: 2.1rem; }

/* =============================================================
   12. CTA band
   ============================================================= */
.cta-band {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  border-radius: var(--radius-l);
  padding: clamp(2.4rem, 6vw, 4rem);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.75rem;
  margin-inline: 1.25rem;
}
@media (min-width: 960px) { .cta-band { margin-inline: 2.5rem; } }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); max-width: 22ch; }
.cta-band p { color: rgba(255, 255, 255, 0.88); margin-top: .6rem; max-width: 42ch; }
.cta-band .btn-dark { background: #fff; color: var(--accent-2); }
.cta-band .btn-dark:hover { background: var(--cream); }

/* =============================================================
   13. Footer
   ============================================================= */
.footer {
  background: var(--bg-navy);
  color: rgba(245, 242, 234, 0.75);
  padding-block: clamp(3.5rem, 7vw, 5rem) 2rem;
}
.footer-grid {
  display: grid;
  gap: 2.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.1rem; }
.footer-logo { height: 42px; width: auto; border-radius: 8px; background: #fff; padding: 3px; }
.footer-brand strong { font-family: var(--display); font-size: 1.15rem; color: #fff; }
.footer-desc { max-width: 34ch; font-size: .92rem; }
.footer h4 { color: #fff; font-size: .92rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-links { display: grid; gap: .7rem; }
.footer-links a, .footer-contact a { font-size: .92rem; transition: color .2s var(--ease-out); }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact { display: grid; gap: .85rem; font-size: .92rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: .65rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: .15rem; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.75rem;
  border-top: 1px solid var(--line-on-navy);
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
  font-size: .82rem;
}

/* =============================================================
   14. Floating WhatsApp
   ============================================================= */
.wa-float {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 70;
  display: flex; align-items: center; gap: .8rem;
}
.wa-bubble {
  background: #fff;
  color: var(--ink);
  padding: .75rem 1rem;
  border-radius: 14px;
  box-shadow: var(--shadow-float);
  font-size: .84rem;
  line-height: 1.35;
  max-width: 190px;
  animation: waFloat 4.5s ease-in-out infinite;
}
.wa-bubble strong { display: block; color: var(--ink); font-family: var(--display); font-size: .86rem; }
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .wa-bubble { animation: none; }
}
.wa-button {
  position: relative;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-float);
  color: #fff;
  flex-shrink: 0;
}
.wa-button svg { width: 30px; height: 30px; }
.wa-button::after {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.55);
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(0.85); opacity: .9; }
  100% { transform: scale(1.35); opacity: 0; }
}
@media (max-width: 539px) {
  .wa-bubble { display: none; }
}

/* =============================================================
   15. Cart drawer
   ============================================================= */
.cart-overlay {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(16, 20, 28, 0.5);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease-out), visibility .3s;
}
.cart-overlay.is-open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 90;
  width: min(420px, 100%);
  background: #fff;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s var(--ease-out);
  box-shadow: -20px 0 50px rgba(16, 20, 28, 0.2);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 1.5rem 1.1rem;
  border-bottom: 1px solid var(--line);
}
.cart-header h2 { font-size: 1.2rem; }
.cart-close {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-2);
}
.cart-close svg { width: 18px; height: 18px; }
.cart-body { flex-grow: 1; overflow-y: auto; padding: 1.25rem 1.5rem; }
.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--ink-mute); }
.cart-empty svg { width: 52px; height: 52px; margin-inline: auto; margin-bottom: 1rem; color: var(--line-strong); }
.cart-list { display: grid; gap: 1.1rem; }
.cart-item {
  display: flex; align-items: flex-start; justify-content: space-between; gap: .75rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.cart-item-name { font-size: .92rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.cart-item-spec { font-size: .78rem; color: var(--ink-mute); margin-top: .2rem; }
.cart-item-controls { display: flex; align-items: center; gap: .4rem; flex-shrink: 0; }
.qty-btn {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.qty-btn:hover { background: var(--accent-soft); color: var(--accent-2); }
.qty-value { min-width: 20px; text-align: center; font-weight: 600; font-size: .88rem; }
.cart-remove { color: var(--ink-mute); font-size: .8rem; margin-left: .3rem; }
.cart-remove:hover { color: var(--accent-2); }
.cart-footer { padding: 1.25rem 1.5rem 1.5rem; border-top: 1px solid var(--line); }
.cart-footer p { font-size: .82rem; color: var(--ink-mute); margin-bottom: .9rem; }

/* =============================================================
   16. How-to-buy dialog
   ============================================================= */
dialog[data-howto-dialog] {
  border: none; border-radius: var(--radius-l);
  padding: 0; max-width: 460px; width: min(460px, calc(100vw - 2.5rem));
  box-shadow: 0 30px 70px rgba(16, 20, 28, 0.35);
}
dialog[data-howto-dialog]::backdrop { background: rgba(16, 20, 28, 0.55); }
.howto-inner { padding: 2rem 1.85rem 1.85rem; }
.howto-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1.3rem; }
.howto-header h2 { font-size: 1.35rem; max-width: 22ch; }
.howto-steps { display: grid; gap: 1rem; margin-bottom: 1.7rem; }
.howto-steps li { display: flex; gap: .85rem; align-items: flex-start; font-size: .93rem; color: var(--ink-soft); }
.howto-num {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent-soft); color: var(--accent-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: .8rem;
}

/* =============================================================
   16.5 Landing gateway (index.html)
   ============================================================= */
.landing {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: clip;
  isolation: isolate;
  padding: 6rem 1.5rem 5rem;
}
/* --- Escena de atardecer (index.html) -------------------------
   Todo vectorial y animado. Cada capa se mueve a distinta
   velocidad con el mouse (--px / --py) para dar profundidad. */
.landing-bg { position: absolute; inset: 0; z-index: -2; }
.landing-bg > * {
  position: absolute;
  transition: translate 1s var(--ease-out);
}
.landing-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(130% 95% at 50% 38%, transparent 0%, rgba(12, 14, 24, 0.35) 100%),
    linear-gradient(0deg, rgba(9, 12, 14, 0.6) 0%, rgba(9, 12, 14, 0.16) 17%, transparent 34%);
}

.sky {
  inset: 0;
  background: linear-gradient(to bottom,
    #0d4a76 0%,
    #1a6291 11%,
    #2f80a7 22%,
    #5aa3ba 33%,
    #93c3c0 44%,
    #cfd8a8 54%,
    #f0cf88 63%,
    #f7c173 70%,
    #fbd08a 77%,
    #fde4b0 83%);
}

/* Bruma cálida sobre el horizonte: separa los planos y da atmósfera.
   Se extiende más allá del viewport porque el blur, si no, corta al borde. */
.haze {
  left: -8%; width: 116%; max-width: none; bottom: 14%;
  height: 28%;
  background: linear-gradient(to top,
    rgba(255, 176, 100, 0) 0%,
    rgba(255, 186, 108, 0.22) 34%,
    rgba(255, 210, 150, 0.1) 62%,
    transparent 100%);
  filter: blur(14px);
  mix-blend-mode: screen;
}

.sun {
  left: 24%; top: 58%;
  width: 30vmax; height: 30vmax;
  margin: -15vmax 0 0 -15vmax;
  background: radial-gradient(circle,
    rgba(255, 249, 226, 0.95) 0%,
    rgba(255, 226, 160, 0.75) 8%,
    rgba(255, 187, 110, 0.4) 18%,
    rgba(255, 158, 92, 0.16) 32%,
    transparent 60%);
  animation: sun-pulse 9s ease-in-out infinite;
}
@keyframes sun-pulse {
  0%, 100% { transform: scale(1);    opacity: .92; }
  50%      { transform: scale(1.06); opacity: 1; }
}

.rays {
  left: 24%; top: 58%;
  width: 190vmax; height: 190vmax;
  background: repeating-conic-gradient(from 0deg,
    rgba(255, 216, 154, 0.05) 0deg 4deg,
    transparent 4deg 19deg);
  -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, .7) 0%, transparent 34%);
  mask-image: radial-gradient(circle, rgba(0, 0, 0, .7) 0%, transparent 34%);
  filter: blur(9px);
  mix-blend-mode: screen;
  animation: rays-turn 150s linear infinite;
}
@keyframes rays-turn {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.clouds {
  left: -4%; width: 108%; max-width: none; top: 0;
  height: 72%;
  background-repeat: repeat-x;
}
.clouds-far {
  background-image:
    radial-gradient(64px 15px at 130px 24%, rgba(255, 226, 196, .34), transparent 70%),
    radial-gradient(96px 19px at 360px 40%, rgba(255, 210, 180, .28), transparent 72%),
    radial-gradient(72px 14px at 620px 18%, rgba(255, 234, 206, .26), transparent 70%),
    radial-gradient(110px 22px at 830px 46%, rgba(250, 198, 170, .24), transparent 74%);
  background-size: 1000px 100%;
  animation: cloud-drift-a 150s linear infinite;
}
.clouds-near {
  background-image:
    radial-gradient(130px 24px at 200px 54%, rgba(255, 206, 168, .34), transparent 72%),
    radial-gradient(90px 18px at 520px 64%, rgba(255, 190, 150, .3), transparent 72%),
    radial-gradient(150px 26px at 780px 48%, rgba(255, 214, 178, .26), transparent 74%);
  background-size: 900px 100%;
  animation: cloud-drift-b 95s linear infinite;
}
@keyframes cloud-drift-a { from { background-position: 0 0; }   to { background-position: -1000px 0; } }
@keyframes cloud-drift-b { from { background-position: 0 0; }   to { background-position: -900px 0; } }

/* Profundidad de campo: lo lejano va desenfocado y lo cercano también,
   como en una foto con la moneda en foco. */
/* max-width:none anula el reset global de svg, que si no recorta las
   capas a 100% y deja una franja de cielo pelada en el borde derecho. */
.ridge { left: -5%; bottom: 0; width: 110%; max-width: none; }
.ridge-far  { height: 38%; opacity: .85; filter: blur(1.8px); }
.ridge-mid  { height: 30%; opacity: .97; filter: blur(1.1px); }
.ridge-near { height: 20%; filter: blur(.4px); }
/* Surcos del sembrado en fuga: leen el primer plano como campo trabajado. */
.furrows path { fill: none; stroke: rgba(190, 224, 168, .13); stroke-width: 2.4; }

/* Hilera de álamos sobre el horizonte: la firma del campo bonaerense. */
.trees {
  fill: #2c4a30;
}
.trees-a { left: 4%;  bottom: 16%; height: 14%; filter: blur(1.6px); }
.trees-b { right: 27%; bottom: 17%; height: 11%; opacity: .85; filter: blur(2px); }
.tree-sway {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: tree-sway 13s ease-in-out infinite;
}
.tree-sway-b { animation-duration: 16s; animation-delay: -5s; }
.tree-sway-c { animation-duration: 14.5s; animation-delay: -8s; }
@keyframes tree-sway {
  0%, 100% { transform: rotate(-.7deg); }
  50%      { transform: rotate(.9deg); }
}

.windmill {
  right: 11%; bottom: 12%;
  height: 46%;
  fill: #24371f;
  filter: blur(.7px);
}
.wm-legs, .wm-brace, .wm-cross, .wm-boom { fill: none; stroke: #24371f; }
.wm-legs  { stroke-width: 3.4; }
.wm-brace { stroke-width: 2; }
.wm-cross { stroke-width: 1.5; }
.wm-boom  { stroke-width: 2.6; }
.wm-fan {
  transform-box: view-box;
  transform-origin: 60px 40px;
  animation: wm-spin 11s linear infinite;
}
@keyframes wm-spin { to { transform: rotate(360deg); } }

/* Nace del borde de abajo del cuadro: si arranca del medio del campo,
   los tallos quedan sueltos y parecen flotar. */
/* Un tractor cruza el campo cada tanto y después espera fuera de cuadro. */
.tractor {
  left: 0; bottom: 11.5%;
  height: 6.4%;
  fill: #1d3317;
  filter: blur(1.1px);
  animation: tractor-pass 54s linear infinite;
}
/* El campo cercano le tapa las ruedas: sin eso parece que va volando. */
.tractor-shadow { fill: rgba(6, 16, 4, .45); }
.tractor-bob {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: tractor-bob 1.1s ease-in-out infinite;
}
/* Va por delante del campo, con las ruedas sobre la línea de la loma.
   La Y y la inclinación salen de muestrear el perfil real del terreno,
   por eso sube, baja y se recuesta con la pendiente. */
@keyframes tractor-pass {
  0%       { transform: translate(-16vw, 0.48vh) rotate(-1.5deg); }
  5%       { transform: translate(0.5vw, -0.29vh) rotate(-0.3deg); }
  10%      { transform: translate(17vw, 0.18vh) rotate(0.45deg); }
  15%      { transform: translate(33.5vw, 0.21vh) rotate(-1.6deg); }
  20%      { transform: translate(50vw, -1.47vh) rotate(-2.2deg); }
  25%      { transform: translate(66.5vw, -2.08vh) rotate(0.8deg); }
  30%      { transform: translate(83vw, -0.64vh) rotate(2.05deg); }
  35%      { transform: translate(99.5vw, 0.03vh) rotate(0.4deg); }
  40%      { transform: translate(116vw, -0.25vh) rotate(-0.5deg); }
  40.01%,
  100%     { transform: translate(-16vw, 0.48vh) rotate(-1.5deg); }
}
@keyframes tractor-bob {
  0%, 100% { transform: translateY(0) rotate(-.4deg); }
  50%      { transform: translateY(-1.5%) rotate(.4deg); }
}

.grass {
  bottom: -4%;
  height: 40%;
  fill: #16290f;
}
.grass path { fill: none; stroke: #16290f; stroke-width: 3.4; stroke-linecap: round; }
/* Primer plano fuera de foco, como el pasto más cerca del lente. */
.grass-left  { left: -3%; filter: blur(1.8px); }
.grass-right { right: -3%; transform: scaleX(-1); filter: blur(2.2px); }
.grass-mid   { left: 42%; height: 32%; opacity: .9; filter: blur(1.2px); }
.grass-sway {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: grass-sway 7s ease-in-out infinite;
}
.grass-sway-b { animation-duration: 9s;   animation-delay: -2.5s; }
.grass-sway-c { animation-duration: 8s;   animation-delay: -1.2s; }
.grass-sway-d { animation-duration: 6.4s; animation-delay: -3.8s; }
@keyframes grass-sway {
  0%, 100% { transform: rotate(-1.4deg); }
  50%      { transform: rotate(1.8deg); }
}

/* Luz rasante del sol poniente barriendo el campo desde la izquierda. */
.land-light {
  left: 0; right: 0; bottom: 0;
  height: 42%;
  background:
    linear-gradient(100deg,
      rgba(255, 214, 138, .5) 0%,
      rgba(255, 196, 118, .24) 26%,
      rgba(255, 180, 110, .07) 48%,
      transparent 68%),
    linear-gradient(to top, rgba(4, 14, 4, .85) 0%, rgba(4, 14, 4, .3) 24%, transparent 52%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

/* Grano fotográfico: es lo que saca el aspecto de vector plano. */
.grain {
  inset: 0;
  pointer-events: none;
  opacity: .5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.42'/%3E%3C/svg%3E");
}

/* Polvillo en suspensión atravesando la luz del sol. */
.motes { inset: 0; }
.motes span {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255, 233, 196, .85);
  filter: blur(1px);
  opacity: 0;
  animation: mote-rise 17s linear infinite;
}
.motes span:nth-child(1) { left: 12%; top: 74%; animation-delay: -1s;  }
.motes span:nth-child(2) { left: 26%; top: 82%; animation-delay: -4s;  animation-duration: 21s; }
.motes span:nth-child(3) { left: 37%; top: 70%; animation-delay: -8s;  }
.motes span:nth-child(4) { left: 55%; top: 86%; animation-delay: -12s; animation-duration: 24s; }
.motes span:nth-child(5) { left: 68%; top: 76%; animation-delay: -6s;  }
.motes span:nth-child(6) { left: 79%; top: 84%; animation-delay: -15s; animation-duration: 19s; }
.motes span:nth-child(7) { left: 88%; top: 72%; animation-delay: -10s; }
.motes span:nth-child(8) { left: 47%; top: 78%; animation-delay: -17s; animation-duration: 23s; }
@keyframes mote-rise {
  0%       { transform: translate3d(0, 0, 0) scale(.6);        opacity: 0; }
  12%      { opacity: .8; }
  70%      { opacity: .55; }
  100%     { transform: translate3d(34px, -40vh, 0) scale(1);  opacity: 0; }
}

@media (max-width: 640px) {
  /* El horizonte queda detrás de los botones: el molino estorbaría. */
  .windmill { display: none; }
  .trees-a { left: 2%; height: 11%; }
  .trees-b { right: 4%; height: 9%; }
  .grass { height: 30%; }
}

.landing-badge {
  position: relative;
  width: min(320px, 62vw);
  margin-bottom: 2.2rem;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.55));
  perspective: 900px;
  animation:
    landing-rise 1s var(--ease-out) both,
    landing-float 7s ease-in-out 1s infinite;
}
/* Halo cálido detrás de la moneda: la "apoya" en la escena. */
.landing-badge::before {
  content: "";
  position: absolute; inset: -22%;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, rgba(255, 214, 150, 0.3) 0%, rgba(255, 190, 110, 0.12) 38%, transparent 68%);
  opacity: .75;
  animation: landing-halo 7s ease-in-out infinite;
  pointer-events: none;
}
.landing-badge-inner {
  position: relative;
  transform-style: preserve-3d;
  transition: transform .6s var(--ease-out);
  will-change: transform;
}
.landing-badge-inner img { width: 100%; height: auto; display: block; }

/* Reflejo especular: el mouse hace de lámpara sobre el bronce.
   Se recorta con el alfa del PNG para que la luz no se salga de la moneda. */
.landing-badge-shine {
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--mx, 34%) var(--my, 24%),
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 240, 205, 0.5) 16%,
    rgba(255, 214, 150, 0.16) 34%,
    transparent 58%
  );
  mix-blend-mode: overlay;
  opacity: var(--shine, .45);
  transition: opacity .5s var(--ease-out);
  -webkit-mask-image: url("assets/img/coin-medal.png");
  mask-image: url("assets/img/coin-medal.png");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
@keyframes landing-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes landing-halo {
  0%, 100% { opacity: .55; transform: scale(1); }
  50%      { opacity: .9;  transform: scale(1.06); }
}
@keyframes landing-rise {
  from { opacity: 0; transform: translateY(26px) scale(.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.landing-actions {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center;
  gap: 1.2rem;
  animation: landing-rise .9s var(--ease-out) .25s both;
}
.btn-image {
  position: relative;
  display: inline-block;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.5));
  transition: transform .3s var(--ease-out), filter .3s var(--ease-out);
}
.btn-image img { display: block; height: 96px; width: auto; max-width: 100%; }
.btn-image:hover {
  transform: translateY(-3px) scale(1.03);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.6)) brightness(1.06);
}

/* Destello que barre la chapa al pasar el mouse. */
.btn-image-shine {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.55) 48%,
    rgba(255, 244, 220, 0.75) 52%,
    transparent 62%
  );
  background-size: 260% 100%;
  background-position: 130% 0;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mix-blend-mode: overlay;
}
.btn-image--wa .btn-image-shine {
  -webkit-mask-image: url("assets/img/btn-whatsapp.png");
  mask-image: url("assets/img/btn-whatsapp.png");
}
.btn-image--rep .btn-image-shine {
  -webkit-mask-image: url("assets/img/btn-repuestos.png");
  mask-image: url("assets/img/btn-repuestos.png");
}
.btn-image:hover .btn-image-shine {
  opacity: 1;
  animation: btn-sheen .85s var(--ease-out) forwards;
}
@keyframes btn-sheen {
  from { background-position: 130% 0; }
  to   { background-position: -40% 0; }
}

.landing-foot {
  position: absolute; left: 0; right: 0; bottom: 1.4rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7), 0 1px 16px rgba(0, 0, 0, 0.5);
  padding-inline: 1.5rem;
  animation: landing-rise .9s var(--ease-out) .45s both;
}

@media (prefers-reduced-motion: reduce) {
  .landing-bg > *,
  .sun, .rays, .clouds, .wm-fan, .grass-sway, .tree-sway,
  .landing-badge,
  .landing-badge::before,
  .landing-badge-inner,
  .landing-actions,
  .landing-foot,
  .btn-image:hover .btn-image-shine {
    animation: none;
    transition: none;
  }
  /* Sin animación el tractor quedaría estacionado en el borde. */
  .motes, .tractor { display: none; }
}

/* =============================================================
   17. Responsive helpers
   ============================================================= */
@media (max-width: 719px) {
  .hero-actions .btn { flex: 1 1 auto; }
  .cta-band { flex-direction: column; align-items: flex-start; text-align: left; }
}

@media (min-width: 1600px) {
  .container { max-width: 1360px; }
}

/* =============================================================
   18. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-bg img { transform: none; }
  .wa-button::after { animation: none; }
  .marquee-track { animation-duration: 80s; }
}
