/* =====================================================
   SAVOR AMAZON · 2026
   Design system + section styles
   ===================================================== */

/* ---------- FONTS ---------- */
@font-face {
  font-family: 'Helzy';
  src: url('assets/fonts/Helzy.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/Poppins-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/Poppins-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

/* ---------- TOKENS ---------- */
:root {
  /* Brand */
  --primary: #6c1f5f;
  --primary-700: #5a1750;
  --primary-900: #4f1a49;
  --primary-100: #f5e5f0;
  --secondary: #4f1a49;
  --secondary-700: #3d1338;
  --secondary-900: #2b0d27;
  --accent: #e4a409;
  --accent-700: #c88e00;
  --cream: #efd5a9;
  --cream-soft: #f7e6c8;
  --cream-bg: #fbf4e6;

  /* Neutrals */
  --white: #ffffff;
  --ink: #1a1a2e;
  --ink-soft: #4a4a5e;
  --line: rgba(108, 31, 95, 0.12);
  --line-strong: rgba(108, 31, 95, 0.22);
  --line-dark: rgba(255, 255, 255, 0.14);

  /* Type */
  --font-display: 'Helzy', 'Poppins', serif;
  --font-sans: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* Radii */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.05);
  --shadow-md: 0 10px 30px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 20px 50px rgba(26, 26, 46, 0.12);
  --shadow-xl: 0 30px 80px rgba(26, 26, 46, 0.18);

  /* Transition */
  --t-fast: 150ms ease;
  --t-med: 280ms cubic-bezier(0.2, 0.8, 0.2, 1);

  /* Layout */
  --container: 1200px;
  --container-narrow: 920px;
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--accent-700); }
ul { list-style: none; padding: 0; margin: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
em { font-style: italic; }
address { font-style: normal; }

/* ---------- TYPOGRAPHY ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.05;
  color: var(--primary);
  margin: 0 0 var(--space-5);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}
.display em {
  color: var(--accent);
  font-style: normal;
  font-family: var(--font-display);
}
h1.display { font-size: clamp(2.8rem, 6vw, 5rem); }

/* Numeric / currency token: forced to Poppins so glyphs render correctly */
.price {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 0.85em;
  vertical-align: 0.04em;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: var(--space-4);
}
.eyebrow--accent { color: var(--accent-700); }
.eyebrow--light  { color: var(--accent); }

.lead {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 var(--space-6);
}
.section-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 var(--space-6);
  max-width: 56ch;
}
.section-head--center { text-align: center; margin: 0 auto var(--space-8); max-width: 760px; }
.section-head--center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

main > section { padding: var(--space-9) 0; position: relative; }

/* ---------- LOGO (CSS MASK, SOLID COLOUR) ---------- */
.logo {
  display: inline-block;
  width: 220px;
  height: 64px;
  background-color: currentColor;
  -webkit-mask: url('assets/logos/savor-amazon.svg') no-repeat left center / contain;
          mask: url('assets/logos/savor-amazon.svg') no-repeat left center / contain;
}
.logo--primary { color: var(--primary); }
.logo--white   { color: var(--white); }
.logo--footer  { width: 200px; height: 56px; }

/* ---------- ICONS (mask -> colour-fillable) ---------- */
.attr-icon {
  display: block;
  width: 56px; height: 56px;
  margin: 0 auto var(--space-3);
  background-color: var(--primary);
  -webkit-mask: no-repeat center / contain;
          mask: no-repeat center / contain;
}
.attr-icon--vegan         { -webkit-mask-image: url('assets/icons/attr-vegan.svg');         mask-image: url('assets/icons/attr-vegan.svg'); }
.attr-icon--gluten-free   { -webkit-mask-image: url('assets/icons/attr-gluten-free.svg');   mask-image: url('assets/icons/attr-gluten-free.svg'); }
.attr-icon--dairy-free    { -webkit-mask-image: url('assets/icons/attr-dairy-free.svg');    mask-image: url('assets/icons/attr-dairy-free.svg'); }
.attr-icon--fibre         { -webkit-mask-image: url('assets/icons/attr-fibre.svg');         mask-image: url('assets/icons/attr-fibre.svg'); }
.attr-icon--antioxidants  { -webkit-mask-image: url('assets/icons/attr-antioxidants.svg');  mask-image: url('assets/icons/attr-antioxidants.svg'); }
.attr-icon--no-colours    { -webkit-mask-image: url('assets/icons/attr-no-colours.svg');    mask-image: url('assets/icons/attr-no-colours.svg'); }

/* Inline icons (spec rows, expand chevron) */
.ic {
  display: inline-block;
  width: 1.2em; height: 1.2em;
  background-color: currentColor;
  -webkit-mask: no-repeat center / contain;
          mask: no-repeat center / contain;
  vertical-align: -0.22em;
  flex-shrink: 0;
}
.ic-serves { -webkit-mask-image: url('assets/icons/spec-specs.svg');         mask-image: url('assets/icons/spec-specs.svg'); }
.ic-cyl    { -webkit-mask-image: url('assets/icons/spec-refrigeration.svg'); mask-image: url('assets/icons/spec-refrigeration.svg'); }
.ic-hop    { -webkit-mask-image: url('assets/icons/spec-electrical.svg');    mask-image: url('assets/icons/spec-electrical.svg'); }
.ic-dim    { -webkit-mask-image: url('assets/icons/spec-dimension.svg');     mask-image: url('assets/icons/spec-dimension.svg'); }
.ic-plus {
  width: 16px; height: 16px;
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-position: center, center;
  background-size: 12px 2px, 2px 12px;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-mask: none; mask: none;
  margin-right: 0.5em;
  transition: transform var(--t-med);
}
.machine-expand[open] .ic-plus { transform: rotate(45deg); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85em 1.6em;
  border-radius: var(--r-pill);
  transition: all var(--t-med);
  text-align: center;
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn--sm { font-size: 0.88rem; padding: 0.65em 1.2em; }
.btn--lg { font-size: 1.05rem; padding: 1em 2em; }
.btn--block { display: flex; width: 100%; }

.btn--primary {
  background: var(--primary);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--primary-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn--accent {
  background: var(--accent);
  color: var(--primary);
}
.btn--accent:hover {
  background: var(--accent-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--primary);
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--ghost:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--ghost-light:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
}
.btn--whatsapp:hover {
  background: #1eb955;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.32);
}
.btn--whatsapp svg { color: var(--white); }

/* Icon-only header link */
.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  color: var(--primary);
  transition: background var(--t-med), color var(--t-med), transform var(--t-med);
}
.icon-link:hover {
  background: var(--primary-100);
  color: var(--primary-700);
  transform: translateY(-2px);
}

/* ---------- TOP BAR ---------- */
.top-bar {
  display: block;
  background: linear-gradient(90deg, var(--primary-900) 0%, var(--primary) 60%, var(--primary-700) 100%);
  color: var(--white);
  font-size: 0.92rem;
  padding: 0.6rem 0;
  transition: background var(--t-med);
  position: relative;
  z-index: 101;
}
.top-bar:hover { background: linear-gradient(90deg, var(--primary-700) 0%, var(--primary) 60%, var(--primary-900) 100%); color: var(--white); }
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.top-bar__badge {
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25em 0.7em;
  border-radius: var(--r-pill);
}
.top-bar__text {
  color: rgba(255, 255, 255, 0.92);
}
.top-bar__text strong { color: var(--white); font-weight: 600; }
.top-bar__cta {
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}
.top-bar:hover .top-bar__cta { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
}
.logo-link { display: inline-flex; align-items: center; line-height: 0; }

.primary-nav ul {
  display: flex;
  gap: var(--space-6);
  align-items: center;
}
.primary-nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.98rem;
  padding: var(--space-2) 0;
  position: relative;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
}
.primary-nav a:hover { color: var(--primary); }
.primary-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: var(--space-3); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--r-sm);
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform var(--t-med), opacity var(--t-med);
}
.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); }

.mobile-nav {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: var(--space-5);
}
.mobile-nav ul { display: flex; flex-direction: column; gap: var(--space-4); }
.mobile-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 1.1rem;
}

/* ---------- HERO (cinematic full-bleed) ---------- */
.hero--cinematic {
  position: relative;
  min-height: min(88vh, 900px);
  display: flex;
  align-items: flex-end;
  padding: 0;
  padding-bottom: var(--space-9);
  overflow: hidden;
  background: var(--primary-900);
  isolation: isolate;
}

/* Foto full-bleed */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
  display: block;
  animation: hero-kenburns 22s ease-in-out infinite alternate;
}
@keyframes hero-kenburns {
  0%   { transform: scale(1.02) translate3d(0, 0, 0); }
  100% { transform: scale(1.08) translate3d(-1%, -1%, 0); }
}

/* Overlay para legibilidade: escurece esquerda/base, deixa direita do sunset respirar */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(43,13,39,0.35) 0%, rgba(43,13,39,0.0) 40%, rgba(43,13,39,0.72) 100%),
    linear-gradient(90deg,  rgba(43,13,39,0.65) 0%, rgba(43,13,39,0.15) 55%, rgba(43,13,39,0.0) 100%);
  pointer-events: none;
}

/* Copy container */
.hero--cinematic .hero-inner {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 720px;
  margin-left: max(var(--space-6), 4vw);
  margin-right: auto;
  padding-block: var(--space-8) 0;
}
.hero--cinematic .hero-copy h1 { margin-bottom: var(--space-5); }
.hero-cta { display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* Variantes "on dark" — texto sobre foto escura */
.eyebrow--on-dark {
  color: var(--accent);
  letter-spacing: 0.24em;
}
.display--on-dark {
  color: var(--white);
  text-shadow: 0 2px 24px rgba(43,13,39,0.35);
}
.display--on-dark em { color: var(--accent); }
.lead--on-dark {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  max-width: 44ch;
  text-shadow: 0 1px 12px rgba(43,13,39,0.35);
}

/* Botão ghost claro (borda branca em foto escura) */
.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

/* Scroll hint no bottom-right */
.hero-scroll {
  position: absolute;
  right: var(--space-6);
  bottom: var(--space-6);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--r-pill);
  transition: color var(--t-fast), background var(--t-fast);
}
.hero-scroll:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
.hero-scroll__icon {
  display: inline-block;
  font-size: 1rem;
  animation: hero-bob 2s ease-in-out infinite;
}
@keyframes hero-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}

/* Respeita usuários que preferem menos movimento */
@media (prefers-reduced-motion: reduce) {
  .hero-bg img { animation: none; }
  .hero-scroll__icon { animation: none; }
}

/* Decorative leaves */
.leaf {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}
.leaf--hero-1   { top: 8%;    left: -3%;  width: 220px; transform: rotate(-15deg); opacity: 0.32; }
.leaf--hero-2   { bottom: -5%;right: -3%; width: 260px; transform: rotate(25deg);  opacity: 0.28; }
.leaf--hero-3   { top: 40%;   right: 45%; width: 90px;  transform: rotate(60deg);  opacity: 0.35; }
.leaf--story-1  { top: 5%;    left: 2%;   width: 180px; transform: rotate(-20deg); opacity: 0.12; }
.leaf--story-2  { bottom: 8%; right: 3%;  width: 200px; transform: rotate(30deg);  opacity: 0.10; }
.leaf--side-l   { top: 10%;   left: -2%;  width: 180px; transform: rotate(-25deg); opacity: 0.22; }
.leaf--side-r   { bottom: 8%; right: -2%; width: 200px; transform: rotate(35deg);  opacity: 0.22; }
.leaf--bridge-1 { top: 15%;   left: 3%;   width: 160px; transform: rotate(-10deg); opacity: 0.10; }
.leaf--bridge-2 { bottom: 10%;right: 5%;  width: 180px; transform: rotate(45deg);  opacity: 0.12; }
.leaf--rental-1 { top: 8%;    right: 4%;  width: 180px; transform: rotate(20deg);  opacity: 0.12; }
.leaf--rental-2 { bottom: 12%;left: 2%;   width: 160px; transform: rotate(-30deg); opacity: 0.10; }

.hero-copy, .hero-visual { position: relative; z-index: 1; }

/* ---------- STORY (DARK GREEN) ---------- */
.story {
  background: linear-gradient(180deg, var(--secondary) 0%, var(--secondary-700) 100%);
  color: var(--white);
  overflow: hidden;
}
.story .display { color: var(--white); }
.story .display em { color: var(--accent); }
.story .section-sub { color: rgba(255, 255, 255, 0.85); }
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-7);
}
.story-photo {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  aspect-ratio: 4 / 5;
  background: rgba(255, 255, 255, 0.04);
}
.story-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}
.story-photo:hover img { transform: scale(1.05); }

/* Caption sobre a foto (documental) */
.story-photo figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--space-6) var(--space-5) var(--space-5);
  color: var(--white);
  background: linear-gradient(180deg,
    rgba(43, 13, 39, 0)   0%,
    rgba(43, 13, 39, 0.35) 40%,
    rgba(43, 13, 39, 0.9)  100%);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  pointer-events: none;
}
.story-caption__label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
}
.story-caption__text {
  font-family: var(--font-sans);
  font-size: 0.94rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
  max-width: 30ch;
}

/* ---------- PRODUCT PROOF ---------- */
.proof {
  padding: var(--space-9) 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream-bg) 100%);
  overflow: hidden;
}
.proof .display { color: var(--primary); }
.proof .display em { color: var(--accent); font-style: normal; }
.proof .section-sub { color: var(--ink-soft); }

.proof-gallery {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-4);
  margin-top: var(--space-7);
  max-width: 1240px;
  margin-inline: auto;
}
.proof-card {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--primary-900);
}
.proof-card--hero {
  grid-row: 1 / span 2;
  aspect-ratio: auto;
}
.proof-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}
.proof-card:hover img { transform: scale(1.04); }

.proof-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--space-6) var(--space-5) var(--space-4);
  color: var(--white);
  background: linear-gradient(180deg,
    rgba(43, 13, 39, 0)    0%,
    rgba(43, 13, 39, 0.4)  45%,
    rgba(43, 13, 39, 0.92) 100%);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  pointer-events: none;
}
.proof-caption__label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
}
.proof-caption__text {
  font-family: var(--font-sans);
  font-size: 0.94rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
  max-width: 30ch;
}

/* Tablet: 2 colunas, hero passa a caber acima */
@media (max-width: 900px) {
  .proof-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .proof-card--hero {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }
}
/* Mobile: 1 coluna empilhada */
@media (max-width: 560px) {
  .proof-gallery { grid-template-columns: 1fr; }
  .proof-card--hero { aspect-ratio: 4 / 5; }
}

/* ---------- LIFESTYLE ---------- */
.lifestyle {
  background: var(--cream-bg);
  overflow: hidden;
}
.attr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-7);
  position: relative;
  z-index: 1;
}
.attr-card {
  background: var(--white);
  padding: var(--space-6) var(--space-5);
  border-radius: var(--r-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.attr-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.attr-card:hover .attr-icon { background-color: var(--accent-700); }
.attr-card h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary);
  margin: 0 0 var(--space-2);
}
.attr-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------- CERTIFICATIONS ---------- */
.certifications { background: var(--white); }
.seal-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
  align-items: center;
  margin-top: var(--space-7);
  padding: var(--space-6) var(--space-5);
  background: var(--cream-bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.seal-strip li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3);
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  min-height: 110px;
}
.seal-strip img {
  max-height: 80px;
  width: auto;
  transition: transform var(--t-med);
}
.seal-strip li:hover img { transform: scale(1.06); }

/* ---------- EDGE ---------- */
.edge { background: var(--cream-bg); }
.edge-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
.edge-list {
  margin-top: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.edge-list li {
  padding-left: var(--space-5);
  border-left: 3px solid var(--accent);
}
.edge-list strong {
  display: block;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.edge-list span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.edge-visual {
  display: flex;
  justify-content: center;
}
.edge-visual img {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(15, 71, 60, 0.25));
}

/* ---------- PRESENCE ---------- */
.presence { background: var(--white); }
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-7);
  padding: var(--space-7) var(--space-5);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-900) 100%);
  border-radius: var(--r-lg);
  color: var(--white);
}
.stats-row li {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.stats-row li:last-child { border-right: 0; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1;
  color: var(--accent);
  margin-bottom: var(--space-2);
}
.stat-label {
  display: block;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
}

.country-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3) var(--space-5);
  margin-bottom: var(--space-7);
}
.country-list li {
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
}

/* Trusted by: chip grid */
.client-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid var(--line);
}
.client-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.client-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}
.client-grid li {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  padding: var(--space-4) var(--space-5);
  min-width: 180px;
  min-height: 90px;
  transition: background var(--t-med), transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}
.client-chip--light {
  background: var(--white);
  border: 1px solid var(--line-strong);
}
.client-chip--dark {
  background: var(--primary);
  border: 1px solid var(--primary-700);
  box-shadow: 0 6px 16px rgba(108, 31, 95, 0.18);
}
.client-grid li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.client-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.client-grid img {
  max-height: 50px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

/* ---------- BRIDGE (DARK PRIMARY) ---------- */
.bridge {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-900) 100%);
  color: var(--white);
  overflow: hidden;
}
.bridge .display { color: var(--white); }
.bridge .display em { color: var(--accent); }
.bridge .section-sub { color: rgba(255, 255, 255, 0.85); }
.bridge-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
.bridge-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-7);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.bridge-logo img {
  max-width: 260px;
  width: 100%;
  filter: brightness(0) invert(1);
}

/* ---------- MACHINES ---------- */
.machines { background: var(--cream-bg); }
.machine-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
.machine-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 240px 1fr;
  transition: transform var(--t-med), box-shadow var(--t-med);
  border: 1px solid var(--line);
  min-height: 360px;
}
.machine-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.machine-card--featured {
  border: 2px solid var(--accent);
  position: relative;
}
.machine-card--featured::before {
  content: 'Top of the line';
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: var(--accent);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3em 0.85em;
  border-radius: var(--r-pill);
  z-index: 2;
}
.machine-image {
  background: linear-gradient(180deg, var(--primary-100) 0%, var(--cream-bg) 100%);
  padding: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
}
.machine-image img {
  max-height: 280px;
  width: auto;
  filter: drop-shadow(0 14px 28px rgba(108, 31, 95, 0.25));
  transition: transform var(--t-med);
}
.machine-card:hover .machine-image img { transform: scale(1.04); }

.machine-body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.machine-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: var(--space-3);
  line-height: 1.4;
}
.machine-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.6rem;
  color: var(--primary);
  margin: 0 0 var(--space-2);
  line-height: 1;
}
.machine-pitch {
  color: var(--ink-soft);
  margin: 0 0 var(--space-5);
  font-size: 0.98rem;
  font-style: italic;
}
.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-top: 1px solid var(--line);
  margin: 0;
}
.spec-list li {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  font-size: 0.88rem;
  color: var(--ink-soft);
  min-width: 0;
}
.spec-list .ic { color: var(--primary); }
.spec-list div { display: flex; flex-direction: column; min-width: 0; }
.spec-list strong {
  display: block;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.1;
  font-family: var(--font-sans);
}
.spec-list span { display: block; font-size: 0.78rem; color: var(--ink-soft); }

.machine-expand {
  margin-top: auto;
  border-top: 1px dashed var(--line-strong);
  padding-top: var(--space-3);
}
.machine-expand summary {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--primary);
  cursor: pointer;
  padding: var(--space-2) 0;
  list-style: none;
  user-select: none;
  transition: color var(--t-fast);
}
.machine-expand summary::-webkit-details-marker { display: none; }
.machine-expand summary:hover { color: var(--accent-700); }
/* Full specs: clean vertical stack */
.full-specs-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: var(--space-3) 0 0;
  padding: var(--space-5);
  background: var(--cream-bg);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}
.full-spec {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--line);
}
.full-spec:first-child { padding-top: 0; }
.full-spec:last-child { padding-bottom: 0; border-bottom: 0; }
.full-spec__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}
.full-spec__value {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.55;
}

.tecumseh-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-7);
  padding: var(--space-5);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.tecumseh-note img {
  height: 28px;
  width: auto;
  opacity: 0.85;
}

/* ---------- SOFT HERO (machines.html) ---------- */
.soft-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-900) 100%);
  color: var(--white);
  padding-top: var(--space-9);
  padding-bottom: var(--space-10);
  overflow: hidden;
}
.soft-hero .display { color: var(--white); }
.soft-hero .display em { color: var(--accent); font-style: normal; }
.soft-hero .lead { color: rgba(255, 255, 255, 0.88); }
.soft-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-8);
  align-items: center;
  position: relative;
  z-index: 1;
}
.soft-hero-logo {
  width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
  margin-bottom: var(--space-5);
  opacity: 0.95;
}
.soft-hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}
.soft-hero-machine {
  max-width: 640px;
  width: 100%;
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.45));
  animation: float 6s ease-in-out infinite;
}

/* ---------- CROSS PROMO (index.html → machines) ---------- */
.cross-promo {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-900) 100%);
  color: var(--white);
  overflow: hidden;
}
.cross-promo .display { color: var(--white); }
.cross-promo .display em { color: var(--accent); font-style: normal; }
.cross-promo .section-sub { color: rgba(255, 255, 255, 0.85); }
.cross-promo-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-8);
  align-items: center;
  position: relative;
  z-index: 1;
}
.cross-promo-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cross-soft-logo {
  display: block;
  width: 150px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  margin-bottom: var(--space-5);
}
.cross-machine {
  max-width: 620px;
  width: 100%;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.4));
}

/* ---------- SALE ---------- */
.sale { background: var(--white); }
.sale-card {
  max-width: var(--container-narrow);
  margin: 0 auto;
  background: linear-gradient(135deg, var(--primary-100) 0%, var(--cream-soft) 100%);
  padding: var(--space-9) var(--space-7);
  border-radius: var(--r-xl);
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.sale-card::before, .sale-card::after {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}
.sale-card::before { top: -80px; left: -80px; background: rgba(108, 31, 95, 0.15); }
.sale-card::after  { bottom: -80px; right: -80px; background: rgba(244, 189, 0, 0.18); }
.sale-card > * { position: relative; z-index: 1; }
.sale .display { margin-bottom: var(--space-5); }
.sale .section-sub { margin-left: auto; margin-right: auto; }

.sale-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
}
.sale-alt {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.sale-alt a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- RENTAL ---------- */
.rental {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-900) 100%);
  color: var(--white);
  overflow: hidden;
}
.rental .display { color: var(--white); }
.rental .display em { color: var(--accent); font-style: normal; }
.rental .eyebrow { color: var(--accent); }
.rental .lead { color: rgba(255, 255, 255, 0.9); }
.rental .section-sub { color: rgba(255, 255, 255, 0.85); }
.rental-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-8);
  align-items: start;
  position: relative;
  z-index: 1;
  margin-top: var(--space-7);
}
.rental-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin: var(--space-5) 0 var(--space-6);
}
.rental-benefits li {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
}
.rental-benefits strong {
  display: block;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 2px;
}
.rental-benefits span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}
.rental-cta {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.rental .btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.rental .btn--ghost:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.rental-visual {
  display: flex;
  justify-content: center;
  position: relative;
}
.rental-visual img {
  max-width: 380px;
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

/* Rental extra CTA (WhatsApp inside rental section) */
.rental-extra-cta {
  margin-top: var(--space-6);
  padding: var(--space-5);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.rental-extra-cta p {
  margin: 0 0 var(--space-3);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Rental form sits on dark rental section, styled differently */
.rental-form {
  background: var(--white);
  color: var(--ink);
}
.form-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--primary);
  margin: 0 0 var(--space-2);
  line-height: 1.1;
}
.form-intro {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 var(--space-5);
}

/* ---------- CONTACT ---------- */
.contact { background: var(--cream-bg); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-8);
  align-items: start;
}
.contact-channels {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-channels li {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4) 0;
  border-top: 1px solid var(--line);
}
.contact-channels li:last-child { border-bottom: 1px solid var(--line); }
.contact-channels strong {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
}
.contact-channels a {
  font-size: 1.05rem;
  color: var(--primary);
  font-weight: 500;
}
.contact-channels address { font-size: 1rem; color: var(--ink); }

.lead-form {
  background: var(--white);
  padding: var(--space-7);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.hp-field { position: absolute; left: -9999px; }
.field { margin-bottom: var(--space-4); display: flex; flex-direction: column; gap: var(--space-2); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); margin-bottom: var(--space-4); }
.field-row .field { margin-bottom: 0; }
.field label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--primary);
}
.field .optional {
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 0.85rem;
}
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 1rem;
  padding: 0.85em 1em;
  border-radius: var(--r-md);
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--t-med), box-shadow var(--t-med);
  width: 100%;
  font-family: var(--font-sans);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-100);
}
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%233a388a' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.2em center; background-size: 12px; padding-right: 2.6em; }

.form-note { margin-top: var(--space-4); font-size: 0.85rem; color: var(--ink-soft); text-align: center; }
.form-success {
  margin-top: var(--space-5);
  padding: var(--space-5);
  background: rgba(15, 71, 60, 0.08);
  border-left: 4px solid var(--secondary);
  border-radius: var(--r-md);
  color: var(--secondary);
}
.form-error {
  margin-top: var(--space-4);
  padding: var(--space-4);
  background: rgba(220, 38, 38, 0.06);
  border-left: 4px solid #dc2626;
  border-radius: var(--r-md);
  color: #b91c1c;
  font-size: 0.92rem;
}

/* Contact as compact strip (machines page) */
.contact--strip { padding: var(--space-8) 0; }
.contact--strip .display { margin-bottom: 0; }
.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.contact-strip-grid li {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.contact-strip-grid strong {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
}
.contact-strip-grid a {
  font-size: 0.98rem;
  color: var(--primary);
  font-weight: 500;
  word-break: break-word;
}
.contact-strip-grid address {
  font-size: 0.92rem;
  color: var(--ink);
  font-style: normal;
  line-height: 1.5;
}

/* Active nav state */
.primary-nav .is-active {
  color: var(--primary);
}
.primary-nav .is-active::after {
  transform: scaleX(1);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--primary-900);
  color: rgba(255, 255, 255, 0.78);
  padding: var(--space-9) 0 var(--space-6);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
  gap: var(--space-7);
  align-items: start;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--space-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-2); }
.footer-col a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
}
.footer-col a:hover { color: var(--accent); }

.footer-col--brand .logo {
  display: block;
  margin-bottom: var(--space-4);
}
.footer-tag {
  margin: 0 0 var(--space-5);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  max-width: 28ch;
  line-height: 1.5;
}
.footer-soft {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-soft-logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-address {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: normal;
}

.footer-meta {
  grid-column: 1 / -1;
  text-align: center;
  margin: var(--space-7) 0 0;
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- FLOATING WHATSAPP ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.5);
  color: var(--white);
}
.wa-float svg { width: 28px; height: 28px; }

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ===================================================
   RESPONSIVE
   =================================================== */

/* Tablets */
@media (max-width: 1024px) {
  :root { --space-9: 5rem; --space-10: 6rem; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-bowl { max-width: 360px; }

  .story-grid { grid-template-columns: 1fr 1fr; }
  .story-grid > :last-child { grid-column: 1 / -1; max-width: 60%; margin-inline: auto; }

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

  .seal-strip { grid-template-columns: repeat(3, 1fr); }

  .edge-inner { grid-template-columns: 1fr; text-align: center; }
  .edge-list li { text-align: left; }
  .edge-visual { order: -1; }

  .bridge-inner { grid-template-columns: 1fr; text-align: center; }
  .bridge-logo img { max-width: 200px; }

  .machine-grid { grid-template-columns: 1fr; }
  .machine-card { grid-template-columns: 240px 1fr; }

  .rental-inner { grid-template-columns: 1fr; gap: var(--space-6); }
  .rental-cta { justify-content: center; }
  .rental-benefits li { text-align: left; }
  .rental-visual { order: -1; }

  .contact-inner { grid-template-columns: 1fr; }

  .soft-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .soft-hero-visual { order: -1; }
  .soft-hero-machine { max-width: 280px; }
  .soft-hero-logo { margin-inline: auto; }

  .cross-promo-inner { grid-template-columns: 1fr; text-align: center; }
  .cross-promo-visual { order: -1; }
  .hero-cta { justify-content: center; }

  .contact-strip-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--space-6); text-align: left; }
}

/* Mobile */
@media (max-width: 720px) {
  body { font-size: 16px; }
  main > section { padding: var(--space-8) 0; }

  .primary-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }

  .logo { width: 180px; height: 52px; }

  .top-bar { font-size: 0.82rem; padding: 0.5rem 0; }
  .top-bar__inner { gap: var(--space-2); }
  .top-bar__text { display: block; line-height: 1.3; }

  .stats-row { grid-template-columns: 1fr; gap: var(--space-5); padding: var(--space-6) var(--space-4); }
  .stats-row li { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.15); padding-bottom: var(--space-5); }
  .stats-row li:last-child { border-bottom: 0; padding-bottom: 0; }

  .story-grid { grid-template-columns: 1fr; }
  .story-grid > :last-child { max-width: 100%; }

  .attr-grid { grid-template-columns: 1fr; }
  .attr-card { padding: var(--space-5); }

  .seal-strip { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); padding: var(--space-5); }
  .seal-strip img { max-height: 60px; }

  .machine-card { grid-template-columns: 1fr; min-height: 0; }
  .machine-image { border-right: 0; border-bottom: 1px solid var(--line); padding: var(--space-5); min-height: 240px; }
  .machine-image img { max-height: 220px; }
  .machine-body h3 { font-size: 2.2rem; }
  .machine-card--featured::before { top: var(--space-3); right: var(--space-3); }
  .full-specs { grid-template-columns: 1fr; gap: var(--space-1); padding: var(--space-4); }
  .full-specs dt { padding-top: var(--space-3); }
  .full-specs dt:first-of-type { padding-top: 0; }

  .sale-card { padding: var(--space-7) var(--space-5); }

  .field-row { grid-template-columns: 1fr; gap: var(--space-4); }
  .lead-form { padding: var(--space-5); }

  .hero-cta .btn, .rental-cta .btn { width: 100%; }

  .country-list { gap: var(--space-2); }
  .country-list li { font-size: 0.88rem; padding: 0.4em 0.9em; }

  .tecumseh-note { font-size: 0.85rem; text-align: center; }

  .client-grid li { min-width: 140px; min-height: 80px; padding: var(--space-3) var(--space-4); }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-col ul { align-items: center; }
  .footer-col--brand .logo { margin-inline: auto; }
  .footer-tag { margin-inline: auto; }
  .footer-soft { justify-content: center; }
  .footer-address { text-align: center; }

  .contact-strip-grid { grid-template-columns: 1fr; }
  .soft-hero-machine { max-width: 220px; }
  .sale-cta .btn { width: 100%; }

  .wa-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
  .wa-float svg { width: 26px; height: 26px; }

  .leaf { opacity: 0.12 !important; }
  .leaf--hero-3 { display: none; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero-bowl { animation: none; }
}
