/* ============================================================
   Natural Silva — Premium Design System
   Inspired by: Goop · Aesop · Ritual · Who What Wear
   ============================================================ */

/* Fonts */
/* @import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400;1,9..144,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400;1,9..40,500&family=JetBrains+Mono:wght@400;500&family=Caveat:wght@500&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200'); */

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --ns-green:       #2B5037;
  --ns-green-light: #2d6a4f;
  --ns-green-soft:  #409b6d;
  --ns-green-pale:  #d8f3dc;
  --ns-cream:       #f8f6f0;
  --ns-warm:        #f0ebe3;
  --ns-bone:        #faf8f4;
  --ns-terracotta:  #c67b5c;
  --ns-gold:        #c9923b;
  --ns-white:       #ffffff;

  /* Surfaces */
  --ns-bg:          #ffffff;
  --ns-bg-alt:      #f8f7f4;
  --ns-bg-section:  #f3f1eb;
  --ns-card:        #ffffff;
  --ns-card-alt:    #faf9f6;

  /* Text */
  --ns-text:        #1a1a1a;
  --ns-text-soft:   #555555;
  --ns-text-muted:  #888888;
  --ns-text-inv:    #ffffff;

  /* Borders */
  --ns-line:        #e8e5dd;
  --ns-line-soft:   #f0ede6;

  /* Accents */
  --ns-accent:      var(--ns-green);
  --ns-accent-inv:  var(--ns-text-inv);

  /* Fonts */
  --ns-font-display: "Fraunces", Georgia, serif;
  --ns-font-sans:    "DM Sans", system-ui, -apple-system, sans-serif;
  --ns-font-mono:    "JetBrains Mono", ui-monospace, monospace;
  --ns-font-script:  "Caveat", cursive;

  /* Spacing */
  --ns-pad:         80px;
  --ns-pad-sm:      48px;
  --ns-gap:         32px;
  --ns-max-w:       1480px;
  --ns-content-w:   720px;

  /* Radius */
  --ns-rad:         8px;
  --ns-rad-lg:      16px;
  --ns-rad-xl:      24px;
  --ns-rad-full:    9999px;

  /* Shadows */
  --ns-shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --ns-shadow-md:   0 4px 12px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.04);
  --ns-shadow-lg:   0 12px 40px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.04);
  --ns-shadow-xl:   0 24px 60px rgba(0,0,0,.10), 0 8px 20px rgba(0,0,0,.06);

  /* Transitions */
  --ns-ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ns-transition:  0.4s var(--ns-ease);
}

/* ---------- Dark mode ---------- */
:root[data-dark="1"] {
  --ns-bg:          #0f1310;
  --ns-bg-alt:      #161c18;
  --ns-bg-section:  #1a211d;
  --ns-card:        #1a211d;
  --ns-card-alt:    #1e2722;
  --ns-text:        #f0ede6;
  --ns-text-soft:   #b0ada5;
  --ns-text-muted:  #7a7770;
  --ns-text-inv:    #0f1310;
  --ns-line:        #2a332e;
  --ns-line-soft:   #222b26;
  --ns-green-pale:  #1a2f24;
  --ns-cream:       #1a211d;
  --ns-warm:        #1e2520;
  --ns-bone:        #1a211d;
  --ns-shadow-sm:   0 1px 3px rgba(0,0,0,.2);
  --ns-shadow-md:   0 4px 12px rgba(0,0,0,.25);
  --ns-shadow-lg:   0 12px 40px rgba(0,0,0,.3);
  --ns-shadow-xl:   0 24px 60px rgba(0,0,0,.35);
}

/* ---------- Google Material Symbols ---------- */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined' !important;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--ns-font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ns-text);
  background: var(--ns-bg);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background-color .3s ease, color .3s ease;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--ns-green); color: var(--ns-text-inv); }

/* ---------- Layout ---------- */
.site-wrap { max-width: var(--ns-max-w); margin: 0 auto; }
.container { max-width: var(--ns-max-w); margin: 0 auto; padding: 0 var(--ns-pad); }
.container--narrow { max-width: var(--ns-content-w); margin: 0 auto; padding: 0 var(--ns-pad); }
@media (max-width: 900px) { :root { --ns-pad: 24px; --ns-pad-sm: 32px; } }

/* ---------- Typography ---------- */
.h1 {
  font-family: var(--ns-font-display);
  font-size: clamp(42px, 5.5vw, 88px);
  line-height: 1.02;
  letter-spacing: -.025em;
  font-weight: 400;
  text-wrap: balance;
}
.h2 {
  font-family: var(--ns-font-display);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -.02em;
  font-weight: 400;
  text-wrap: balance;
}
.h3 {
  font-family: var(--ns-font-display);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
  font-weight: 500;
}
.h4 {
  font-family: var(--ns-font-sans);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -.01em;
}
.eyebrow {
  font-family: var(--ns-font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ns-text-muted);
  font-weight: 500;
}
.eyebrow--accent { color: var(--ns-green-soft); }
.lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ns-text-soft);
  max-width: 56ch;
  text-wrap: pretty;
}
.italic { font-style: italic; }
.script { font-family: var(--ns-font-script); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--ns-font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: var(--ns-rad-full);
  transition: all .25s var(--ns-ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--ns-green);
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(27,67,50,.25);
}
.btn--primary:hover {
  background: var(--ns-green-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,67,50,.3);
}
.btn--secondary {
  background: transparent;
  color: var(--ns-green);
  border: 1.5px solid var(--ns-green);
}
.btn--secondary:hover {
  background: var(--ns-green);
  color: #ffffff !important;
  font-weight: 700;
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--ns-text-soft);
  padding: 16px 16px;
}
.btn--ghost:hover { color: var(--ns-green); }
.btn--lg { padding: 20px 40px; font-size: 15px; }
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--white {
  background: #ffffff;
  color: var(--ns-green);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.btn .arrow { transition: transform .25s var(--ns-ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: color-mix(in oklab, var(--ns-green) 95%, transparent);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--ns-green-light);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--ns-pad);
  max-width: var(--ns-max-w);
  margin: 0 auto;
  transition: padding var(--ns-transition);
}
.nav--scrolled .nav-inner { padding: 10px var(--ns-pad); }
.nav-brand { display: flex; align-items: center; }
.nav-logo {
  height: 48px;
  width: auto;
  display: block;
  transition: transform .3s var(--ns-ease);
  /* Since the logo might be dark, we might need a filter to make it light, but Natural Silva logo might already look okay or we can invert it */
  filter: brightness(0) invert(1);
}
.nav-logo:hover { transform: scale(1.02); }
@media (max-width: 600px) { .nav-logo { height: 36px; } }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--ns-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ns-ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #ffffff; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { 
  transform: scaleX(1); 
  transform-origin: left; 
}
.nav-right { display: flex; gap: 16px; align-items: center; }
.nav-lang {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-family: var(--ns-font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--ns-rad-full);
}
.nav-lang span[data-active="1"] { color: var(--ns-gold); font-weight: 600; }
.nav-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ns-text);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--ns-rad-full);
  transition: background .2s;
}
.nav-cart:hover { background: var(--ns-bg-alt); }
.nav-burger { display: none; }
@media (max-width: 880px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--ns-green);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 40px var(--ns-pad) 120px var(--ns-pad);
    gap: 16px;
    z-index: 999;
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow-y: auto;
  }
  :root[data-dark="1"] .nav-links {
    background: rgba(15, 19, 16, 1);
  }
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a {
    font-size: 28px;
    font-family: var(--ns-font-display);
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    padding: 16px 0;
    border-bottom: none;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s var(--ns-ease), transform 0.4s var(--ns-ease);
  }
  .nav-links a::after {
    display: none;
  }
  .nav-links.active a {
    opacity: 0.85;
    transform: translateY(0);
  }
  .nav-links.active a:hover, .nav-links.active a[aria-current="page"] {
    opacity: 1;
    transform: scale(1.03);
  }
  .nav-links.active a:nth-child(1) { transition-delay: 0.08s; }
  .nav-links.active a:nth-child(2) { transition-delay: 0.14s; }
  .nav-links.active a:nth-child(3) { transition-delay: 0.2s; }
  .nav-links.active a:nth-child(4) { transition-delay: 0.26s; }
  .nav-burger { display: inline-grid; place-items: center; width: 40px; height: 40px; border: none; background: transparent; cursor: pointer; color: var(--ns-text-inv); }
}

/* Nav Search Bar Integration */
.nav-search-container {
  display: none;
  flex: 1;
  max-width: 320px;
  margin: 0 24px;
  align-items: center;
  transition: all 0.3s var(--ns-ease);
}
.nav-search-box {
  width: 100%;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  padding: 4px 12px 4px 16px !important;
  box-shadow: none !important;
  border-radius: 99px;
  height: 38px;
  display: flex;
  align-items: center;
  transition: all 0.3s var(--ns-ease);
}
.nav-search-box:focus-within {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  transform: none !important;
}
.nav-search-box .search-icon {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 18px !important;
  margin-right: 8px !important;
}
.nav-search-box:focus-within .search-icon {
  color: #ffffff !important;
}
.nav-search-box #blog-search-input {
  padding: 4px 0 !important;
  font-size: 14px !important;
  color: #ffffff !important;
  height: auto !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  flex: 1;
}
.nav-search-box #blog-search-input::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.nav-search-box .search-clear-btn {
  color: rgba(255, 255, 255, 0.5) !important;
  padding: 4px !important;
  margin-left: 4px !important;
}
.nav-search-box .search-clear-btn:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}

@media (max-width: 768px) {
  .nav-inner {
    flex-wrap: wrap;
  }
  .nav-brand {
    order: 1;
  }
  .nav-right {
    order: 2;
  }
  .nav-search-container {
    order: 3;
    width: 100%;
    max-width: 100%;
    margin: 16px 0 0 0;
    flex-basis: 100%;
  }
}
@media (max-width: 480px) {
  .nav-search-container {
    margin: 12px 0 0 0;
  }
  .nav-search-box {
    padding: 4px 12px 4px 16px !important;
    height: 38px;
  }
  .nav-search-box .search-icon {
    font-size: 16px !important;
    margin-right: 8px !important;
  }
  .nav-search-box #blog-search-input {
    font-size: 14px !important;
  }
}

/* ---------- Hero ---------- */
.hero {
  padding: calc(var(--ns-pad) * 1.2) var(--ns-pad) var(--ns-pad);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 88vh;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, var(--ns-green-pale) 0%, transparent 70%);
  opacity: .4;
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ns-line), transparent);
}
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 48px; gap: 48px; }
  .hero::before { display: none; }
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-family: var(--ns-font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ns-green-soft);
  font-weight: 500;
}
.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ns-green-soft);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.8); }
}
.hero h1 {
  font-family: var(--ns-font-display);
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 1.0;
  letter-spacing: -.03em;
  font-weight: 400;
  color: var(--ns-text);
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: var(--ns-green);
  font-weight: 400;
}
.hero .lede {
  margin-bottom: 40px;
  max-width: 52ch;
  font-size: 19px;
  line-height: 1.65;
  color: var(--ns-text-soft);
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-trust {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--ns-line);
}
.hero-trust-item { display: flex; flex-direction: column; gap: 6px; }
.hero-trust-item b {
  font-family: var(--ns-font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--ns-green);
  line-height: 1;
}
.hero-trust-item span {
  font-size: 12px;
  color: var(--ns-text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-visual {
  position: relative;
  z-index: 2;
  aspect-ratio: 4/5;
  border-radius: var(--ns-rad-xl);
  overflow: hidden;
  background: var(--ns-bg-section);
  box-shadow: var(--ns-shadow-xl);
}
.hero-visual .img-wrap { width: 100%; height: 100%; border-radius: 0; }
.hero-visual .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute;
  bottom: 32px;
  left: -40px;
  background: var(--ns-card);
  border: 1px solid var(--ns-line);
  border-radius: var(--ns-rad-lg);
  padding: 24px 28px;
  box-shadow: var(--ns-shadow-lg);
  max-width: 280px;
  z-index: 3;
  backdrop-filter: blur(10px);
}
.hero-float b {
  display: block;
  font-family: var(--ns-font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ns-green);
  margin-bottom: 6px;
}
.hero-float p {
  font-size: 14px;
  color: var(--ns-text-soft);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 980px) {
  .hero-float { left: 16px; bottom: 16px; max-width: 80%; }
  .hero-trust { gap: 24px; }
  .hero-trust-item b { font-size: 24px; }
}

/* ---------- Section headers ---------- */
.section { padding: var(--ns-pad-sm) 0; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 56px;
}
.section-header h2 { max-width: 16ch; }
.section-header.text-center h2 { margin: 0 auto; max-width: 24ch; }
.section-header p { color: var(--ns-text-soft); max-width: 40ch; font-size: 16px; }

/* ---------- Feature strip ---------- */
.feature-strip {
  background: transparent;
  border: none;
  padding: var(--ns-pad-sm) var(--ns-pad);
}
.feature-strip-inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: var(--ns-max-w);
  margin: 0 auto;
}
@media (max-width: 1100px) { .feature-strip-inner { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .feature-strip-inner { grid-template-columns: 1fr 1fr; gap: 16px; } }
.feature-item {
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  border-radius: var(--ns-rad-lg);
  transition: all .3s var(--ns-ease);
  cursor: pointer;
  background: var(--ns-card);
  border: 1px solid var(--ns-line-soft);
  color: var(--ns-text);
}
.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--ns-shadow-lg);
  border-color: var(--ns-green-soft);
}
.feature-item .icon {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
  color: var(--ns-green);
}
.feature-item h4 {
  font-family: var(--ns-font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ns-text);
}
.feature-item p {
  font-size: 14px;
  color: var(--ns-text-soft);
  line-height: 1.5;
}

/* ---------- Content cards ---------- */
.cards-grid {
  display: grid;
  gap: 32px;
}
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid--2-1 { grid-template-columns: 1.4fr 1fr 1fr; }
.blog-featured-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}
.blog-side-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (max-width: 900px) {
  .cards-grid--3, .cards-grid--4, .cards-grid--2-1, .blog-featured-grid { grid-template-columns: 1fr; }
}
.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  transition: transform .3s var(--ns-ease);
}
.card:hover { transform: translateY(-4px); }
.card-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--ns-rad-lg);
  background: var(--ns-bg-section);
}
.card-img .img-wrap { width: 100%; aspect-ratio: 4/5; }
.card-img .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ns-ease); }
.card:hover .card-img .img-wrap img { transform: scale(1.04); }
.card-img--wide .img-wrap { aspect-ratio: 16/10; }
.card-img--featured .img-wrap { aspect-ratio: 16/10; }

.card--horizontal {
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.card--horizontal .card-img {
  width: 120px;
  flex-shrink: 0;
}
.card--horizontal .card-img .img-wrap {
  aspect-ratio: 1/1;
}
.card--horizontal .card-body {
  gap: 4px;
}
@media (max-width: 500px) {
  .card--horizontal { flex-direction: column; align-items: flex-start; }
  .card--horizontal .card-img { width: 100%; }
  .card--horizontal .card-img .img-wrap { aspect-ratio: 16/10; }
}

.blog-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.blog-carousel::-webkit-scrollbar {
  display: none;
}
.blog-carousel .card {
  flex: 0 0 calc(25% - 18px);
  scroll-snap-align: start;
}
@media (max-width: 1024px) {
  .blog-carousel .card { flex: 0 0 calc(33.333% - 16px); }
}
@media (max-width: 768px) {
  .blog-carousel .card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 500px) {
  .blog-carousel .card { flex: 0 0 calc(100% - 24px); }
}

.carousel-nav {
  display: flex;
  gap: 8px;
  align-items: center;
}
.carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ns-bg-alt);
  border: 1px solid var(--ns-line);
  color: var(--ns-text);
  cursor: pointer;
  transition: all .2s;
}
.carousel-btn:hover {
  background: var(--ns-green);
  color: white;
  border-color: var(--ns-green);
}
.card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  background: var(--ns-green);
  color: white;
  border-radius: var(--ns-rad-full);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  z-index: 2;
}
.card-body { display: flex; flex-direction: column; gap: 8px; }
.card-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--ns-font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ns-text-muted);
}
.card-meta b { color: var(--ns-green-soft); font-weight: 600; }
.card h3 {
  font-family: var(--ns-font-display);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 500;
  color: var(--ns-text);
  text-wrap: balance;
  transition: color .2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7em; /* Exatamente duas linhas */
  margin-bottom: 4px;
}
.card:hover h3 { color: var(--ns-green); }
.card p {
  font-size: 14px;
  color: var(--ns-text-soft);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 4.5em; /* Exatamente três linhas */
}

/* ---------- Products ---------- */
.products-section {
  background: var(--ns-bg-alt);
  border-block: 1px solid var(--ns-line);
  padding: var(--ns-pad-sm) 0;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .products-grid { grid-template-columns: 1fr 1fr; } }
.product-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  group: product;
}
.product-card .card-img { border-radius: var(--ns-rad-lg); }
.product-card .card-img .img-wrap { aspect-ratio: 3/4; background: var(--ns-card); }
.product-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.product-name {
  font-family: var(--ns-font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ns-text);
}
.product-price {
  font-family: var(--ns-font-mono);
  font-size: 14px;
  color: var(--ns-green);
  font-weight: 600;
  white-space: nowrap;
}
.product-tagline {
  font-size: 13px;
  color: var(--ns-text-muted);
}
.product-add {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ns-green);
  color: white;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all .25s var(--ns-ease);
  box-shadow: var(--ns-shadow-md);
}
.card-img:hover .product-add { opacity: 1; transform: translateY(0); }
.product-add:hover { background: var(--ns-green-light); transform: scale(1.08) !important; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--ns-green);
  color: var(--ns-text-inv);
  padding: var(--ns-pad-sm);
  border-radius: var(--ns-rad-xl);
  margin: var(--ns-pad-sm) var(--ns-pad);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 900px) { .cta-banner { grid-template-columns: 1fr; gap: 32px; margin: var(--ns-pad-sm) 0; border-radius: 0; } }
.cta-banner .eyebrow { color: rgba(255,255,255,.6); }
.cta-banner h2 { color: white; margin: 16px 0; }
.cta-banner h2 em { color: var(--ns-gold); font-style: italic; }
.cta-banner .lede { color: rgba(255,255,255,.8); margin-bottom: 32px; }
.cta-banner ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 36px;
}
.cta-banner ul li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 15px;
  color: rgba(255,255,255,.85);
}
.cta-banner ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ns-gold);
  flex-shrink: 0;
}
.cta-banner .btn--white { min-width: fit-content; }

/* ---------- Testimonials ---------- */
.testimonials {
  padding: var(--ns-pad-sm) 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 800px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial {
  padding: 32px;
  background: var(--ns-card);
  border: 1px solid var(--ns-line);
  border-radius: var(--ns-rad-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .3s var(--ns-ease), box-shadow .3s var(--ns-ease);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--ns-shadow-lg);
}
.testimonial-stars { color: var(--ns-gold); font-size: 14px; letter-spacing: 2px; }
.testimonial blockquote {
  font-family: var(--ns-font-display);
  font-size: 18px;
  line-height: 1.4;
  font-style: italic;
  color: var(--ns-text);
  font-weight: 400;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--ns-line);
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ns-green), var(--ns-gold));
  flex-shrink: 0;
}
.testimonial-author b {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ns-text);
}
.testimonial-author span {
  font-size: 12px;
  color: var(--ns-text-muted);
}

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--ns-line);
  padding: 20px 0;
  overflow: hidden;
  background: var(--ns-bg-alt);
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  font-family: var(--ns-font-display);
  font-size: clamp(24px, 2.5vw, 36px);
  font-style: italic;
  color: var(--ns-text-soft);
  white-space: nowrap;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ns-green-soft);
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  margin: 0 12px;
}

/* ---------- Pillars ---------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 800px) { .pillars-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { padding: 32px 24px; }
}
.pillar {
  background: var(--ns-card);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  border-radius: var(--ns-rad-lg);
  border: 1px solid var(--ns-line);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}
.pillar:hover { 
  background: var(--ns-surface);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  border-color: var(--ns-green-soft);
}
.pillar-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background-color: #FAF9F6;
  border-bottom: 1px solid var(--ns-line);
}
.pillar-content {
  padding: 32px 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}
.pillar-num {
  font-family: var(--ns-font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--ns-green-soft);
  font-weight: 600;
}
.pillar h4 {
  font-family: var(--ns-font-display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--ns-green);
}
.pillar p {
  font-size: 14px;
  color: var(--ns-text-soft);
  line-height: 1.6;
}

/* ---------- Footer ---------- */
.foot {
  background: var(--ns-green);
  color: var(--ns-text-inv);
  padding: 80px var(--ns-pad) 40px;
  margin-top: 80px;
}
.foot a { color: rgba(255,255,255,.7); transition: color .15s; }
.foot a:hover { color: white; }
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
  gap: 48px;
  max-width: var(--ns-max-w);
  margin: 0 auto;
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot h4 {
  font-family: var(--ns-font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
  font-weight: 500;
}
.foot ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-family: var(--ns-font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  max-width: var(--ns-max-w);
  margin-left: auto;
  margin-right: auto;
}
.foot-newsletter input {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
  color: white;
  font-family: var(--ns-font-sans);
  font-size: 14px;
  outline: none;
}
.foot-newsletter input::placeholder { color: rgba(255,255,255,.35); }
.foot-newsletter button {
  margin-top: 14px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  background: white;
  color: var(--ns-green);
  border: 0;
  border-radius: var(--ns-rad-full);
  transition: all .2s;
}
.foot-newsletter button:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.2); }

/* ---------- Image treatments ---------- */
.img-wrap { position: relative; overflow: hidden; border-radius: var(--ns-rad-lg); background: var(--ns-bg-section); }
.img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ns-ease); }
.img-wrap:hover img { transform: scale(1.03); }

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ns-ease), transform .7s var(--ns-ease); }
[data-reveal][data-shown="1"] { opacity: 1; transform: none; }

/* ---------- Utility ---------- */
.flex { display: flex; }
.col { flex-direction: column; }
.grid { display: grid; }
.center { align-items: center; justify-content: center; }
.between { justify-content: space-between; }
.gap-sm { gap: 12px; } .gap { gap: 24px; } .gap-lg { gap: 48px; }
.muted { color: var(--ns-text-muted); }
.soft  { color: var(--ns-text-soft); }
.line  { background: var(--ns-line); height: 1px; width: 100%; }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; } .mt-5 { margin-top: 64px; } .mt-6 { margin-top: 96px; }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ---------- Loading Skeleton ---------- */
.skeleton {
  background: linear-gradient(90deg, var(--ns-bg-section) 25%, var(--ns-bg-alt) 50%, var(--ns-bg-section) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--ns-rad-lg);
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

 / *   = = = = = = = = = = = = = = = = = = = =   H E R O   F E A T U R E D   P O S T   = = = = = = = = = = = = = = = = = = = =   * / 
 . h e r o - f e a t u r e d - c a r d   { 
     p o s i t i o n :   r e l a t i v e ; 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   1 0 0 % ; 
     d i s p l a y :   f l e x ; 
     f l e x - d i r e c t i o n :   c o l u m n ; 
     o v e r f l o w :   h i d d e n ; 
     b o r d e r - r a d i u s :   v a r ( - - n s - r a d ) ; 
     t e x t - d e c o r a t i o n :   n o n e ; 
     b a c k g r o u n d :   # 3 1 5 1 3 c ; 
     t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   v a r ( - - n s - e a s e ) ; 
 } 
 . h e r o - f e a t u r e d - c a r d : h o v e r   { 
     t r a n s f o r m :   t r a n s l a t e Y ( - 4 p x ) ; 
 } 
 . h e r o - f e a t u r e d - i m g   { 
     f l e x :   1 ; 
     w i d t h :   1 0 0 % ; 
     o v e r f l o w :   h i d d e n ; 
 } 
 . h e r o - f e a t u r e d - i m g   i m g   { 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   1 0 0 % ; 
     o b j e c t - f i t :   c o v e r ; 
 } 
 . h e r o - f e a t u r e d - f o o t e r   { 
     b a c k g r o u n d :   # 3 1 5 1 3 c ; 
     p a d d i n g :   2 4 p x ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     g a p :   1 6 p x ; 
 } 
 . h e r o - f e a t u r e d - a v a t a r   { 
     w i d t h :   4 8 p x ; 
     h e i g h t :   4 8 p x ; 
     b o r d e r - r a d i u s :   5 0 % ; 
     b a c k g r o u n d :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 1 5 ) ; 
     b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 3 ) ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     c o l o r :   # f f f ; 
     f o n t - w e i g h t :   6 0 0 ; 
     f o n t - f a m i l y :   v a r ( - - n s - f o n t - s a n s ) ; 
     f l e x - s h r i n k :   0 ; 
 } 
 . h e r o - f e a t u r e d - i n f o   { 
     d i s p l a y :   f l e x ; 
     f l e x - d i r e c t i o n :   c o l u m n ; 
 } 
 . h e r o - f e a t u r e d - t i t l e   { 
     c o l o r :   # f f f ; 
     f o n t - w e i g h t :   6 0 0 ; 
     f o n t - f a m i l y :   v a r ( - - n s - f o n t - s a n s ) ; 
     f o n t - s i z e :   1 8 p x ; 
     l i n e - h e i g h t :   1 . 3 ; 
     m a r g i n - b o t t o m :   4 p x ; 
 } 
 . h e r o - f e a t u r e d - a u t h o r   { 
     c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 7 ) ; 
     f o n t - s i z e :   1 4 p x ; 
     f o n t - f a m i l y :   v a r ( - - n s - f o n t - s a n s ) ; 
 } 
 / *   = = = = = = = = = = = = = = = = = = = =   H E R O   F E A T U R E D   P O S T   = = = = = = = = = = = = = = = = = = = =   * / 
 . h e r o - f e a t u r e d - c a r d   { 
     p o s i t i o n :   r e l a t i v e ; 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   1 0 0 % ; 
     d i s p l a y :   f l e x ; 
     f l e x - d i r e c t i o n :   c o l u m n ; 
     o v e r f l o w :   h i d d e n ; 
     b o r d e r - r a d i u s :   v a r ( - - n s - r a d ) ; 
     t e x t - d e c o r a t i o n :   n o n e ; 
     b a c k g r o u n d :   # 3 1 5 1 3 c ; 
     t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   v a r ( - - n s - e a s e ) ; 
 } 
 . h e r o - f e a t u r e d - c a r d : h o v e r   { 
     t r a n s f o r m :   t r a n s l a t e Y ( - 4 p x ) ; 
 } 
 . h e r o - f e a t u r e d - i m g   { 
     f l e x :   1 ; 
     w i d t h :   1 0 0 % ; 
     o v e r f l o w :   h i d d e n ; 
 } 
 . h e r o - f e a t u r e d - i m g   i m g   { 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   1 0 0 % ; 
     o b j e c t - f i t :   c o v e r ; 
 } 
 . h e r o - f e a t u r e d - f o o t e r   { 
     b a c k g r o u n d :   # 3 1 5 1 3 c ; 
     p a d d i n g :   2 4 p x ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     g a p :   1 6 p x ; 
 } 
 . h e r o - f e a t u r e d - a v a t a r   { 
     w i d t h :   4 8 p x ; 
     h e i g h t :   4 8 p x ; 
     b o r d e r - r a d i u s :   5 0 % ; 
     b a c k g r o u n d :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 1 5 ) ; 
     b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 3 ) ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     c o l o r :   # f f f ; 
     f o n t - w e i g h t :   6 0 0 ; 
     f o n t - f a m i l y :   v a r ( - - n s - f o n t - s a n s ) ; 
     f l e x - s h r i n k :   0 ; 
 } 
 . h e r o - f e a t u r e d - i n f o   { 
     d i s p l a y :   f l e x ; 
     f l e x - d i r e c t i o n :   c o l u m n ; 
 } 
 . h e r o - f e a t u r e d - t i t l e   { 
     c o l o r :   # f f f ; 
     f o n t - w e i g h t :   6 0 0 ; 
     f o n t - f a m i l y :   v a r ( - - n s - f o n t - s a n s ) ; 
     f o n t - s i z e :   1 8 p x ; 
     l i n e - h e i g h t :   1 . 3 ; 
     m a r g i n - b o t t o m :   4 p x ; 
 } 
 . h e r o - f e a t u r e d - a u t h o r   { 
     c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 7 ) ; 
     f o n t - s i z e :   1 4 p x ; 
     f o n t - f a m i l y :   v a r ( - - n s - f o n t - s a n s ) ; 
 } 
 . s w i p e r - p a g i n a t i o n - b u l l e t   { 
     b a c k g r o u n d :   v a r ( - - n s - g r e e n )   ! i m p o r t a n t ; 
 } 
  
 
/* =================== HERO BANNER ROTATIVO =================== */
.hero-banner { position: relative; width: 100%; background-color: #F0F4F1; display: flex; align-items: center; overflow: hidden; border-radius: var(--ns-rad); margin-top: 48px; min-height: 400px; }
.hero-banner-accent { position: absolute; top: 0; right: 0; bottom: 0; width: 15%; background-color: #2B5037; z-index: 1; border-top-right-radius: var(--ns-rad); border-bottom-right-radius: var(--ns-rad); }
.hero-banner-swiper { width: 100%; padding: 40px 0; z-index: 2; overflow: hidden; }
.hero-slide { display: flex; align-items: center; justify-content: space-between; padding: 0 5%; box-sizing: border-box; }
.hero-slide-content { flex: 1.2; max-width: 55%; z-index: 3; }
.hero-slide-content h2 { font-size: clamp(2rem, 4vw, 3rem); color: #333; margin-bottom: 24px; font-weight: 500; line-height: 1.2; font-family: var(--ns-font-display); }
.hero-slide-content h2 strong { font-weight: 700; color: #2B5037; }
.hero-slide-cta-wrapper { display: flex; align-items: center; gap: 20px; margin-top: 24px; flex-wrap: wrap; }
.btn-banner { display: inline-flex; align-items: center; justify-content: center; background-color: #009900; color: #FFF; font-weight: 700; font-size: 1.1rem; text-decoration: none; padding: 12px 28px; border-radius: 50px; text-transform: uppercase; line-height: 1; transition: background-color 0.2s, transform 0.2s; white-space: nowrap; }
.btn-banner:hover { background-color: #007700; color: #FFF; transform: scale(1.05); }
.hero-slide-cta-wrapper p { font-size: 1.1rem; font-weight: 700; color: #444; line-height: 1.2; margin: 0; text-transform: uppercase; letter-spacing: 1px; }
.hero-slide-visual { flex: 1; display: flex; justify-content: flex-end; position: relative; z-index: 3; max-width: 45%; }
.hero-slide-visual img { max-width: 120%; object-fit: contain; transform: scale(1.1) translateX(5%); animation: floatBanner 6s ease-in-out infinite; mix-blend-mode: multiply; }
@keyframes floatBanner {
  0% { transform: scale(1.1) translateX(5%) translateY(0); }
  50% { transform: scale(1.1) translateX(5%) translateY(-15px); }
  100% { transform: scale(1.1) translateX(5%) translateY(0); }
}
.hero-banner-pagination { position: absolute; right: 20px !important; bottom: 20px !important; left: auto !important; width: auto !important; z-index: 10; }
.hero-banner-pagination .swiper-pagination-bullet { background: rgba(0, 0, 0, 0.2); opacity: 1; width: 6px; height: 6px; border-radius: 50%; margin: 0 4px !important; transition: all 0.3s ease; }
.hero-banner-pagination .swiper-pagination-bullet-active { background: #2B5037; width: 16px; border-radius: 8px; }

/* Responsive Adjustments */
@media (max-width: 900px) {
  .hero-slide-content h2 { font-size: 2.2rem; }
  .hero-banner-accent { width: 25%; }
}
@media (max-width: 768px) {
  .hero-banner { margin-top: 24px; min-height: auto; }
  .hero-banner-accent { display: none; } /* Hide the green accent block on mobile to avoid text overlap and clutter */
  .hero-slide { flex-direction: column-reverse; padding: 20px 5%; text-align: center; }
  .hero-slide-content { max-width: 100%; margin-top: 0px; margin-bottom: 24px; }
  .hero-slide-content h2 { font-size: 1.8rem; margin-bottom: 16px; }
  .hero-slide-cta-wrapper { flex-direction: column; gap: 12px; align-items: center; justify-content: center; }
  .hero-slide-cta-wrapper p { font-size: 0.95rem; }
  .btn-banner { width: 100%; max-width: 300px; padding: 14px 20px; }
  .hero-slide-visual { max-width: 100%; justify-content: center; margin-bottom: 16px; }
  .hero-slide-visual img { max-width: 90%; transform: none; animation: none; mix-blend-mode: multiply; }
  .hero-banner-pagination { bottom: 0px !important; right: 50% !important; transform: translateX(50%) !important; }
}
