@font-face {
  font-family: "ITC American Typewriter Pro";
  src: url("/fonts/americantypewriterstd-bdita.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --font-sans: "Inter", "Noto Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-comfortaa: "Comfortaa", cursive;
  --font-american-typewriter: "ITC American Typewriter Pro", "American Typewriter", Georgia, serif;
  --primary: #1b5e20;
  --primary-light: #2e7d32;
  --primary-dark: #0d3b13;
  --primary-vivid: #7ceb85;
  --primary-foreground: #f8faf8;
  --accent: #b71c1c;
  --accent-light: #c62828;
  --accent-foreground: #fafafa;
  --background: #f0f1ed;
  --foreground: #1a2b1a;
  --card: #f5f6f2;
  --secondary: #e6ebe2;
  --muted: #eaece6;
  --muted-foreground: #526152;
  --border: #d3dace;
  --ring: #1b5e20;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 18px -12px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 18px 40px -24px rgba(0, 0, 0, 0.35);
  --shadow-xl: 0 28px 70px -35px rgba(0, 0, 0, 0.45);
  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-subtle: cubic-bezier(0.25, 0.8, 0.25, 1);
  --hover-bg: rgba(27, 94, 32, 0.055);
  --hover-bg-strong: rgba(27, 94, 32, 0.09);
  --hover-border: rgba(27, 94, 32, 0.18);
  --hover-text: #1d6a25;
  --hover-shadow: 0 16px 38px -30px rgba(26, 43, 26, 0.5);
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --container: 80rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--primary-dark);
  overscroll-behavior: none;
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--primary-dark);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overscroll-behavior: none;
  overscroll-behavior-y: none;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

body.drawer-open {
  overflow: hidden;
}

::selection {
  background: rgba(27, 94, 32, 0.15);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

img,
video {
  display: block;
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--background);
  overflow-x: clip;
}

.site-main {
  flex: 1;
}

.page-offset {
  padding-top: 5rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.container-narrow {
  width: min(100% - 2rem, 64rem);
  margin: 0 auto;
}

.container-small {
  width: min(100% - 2rem, 48rem);
  margin: 0 auto;
}

.section {
  padding: 3rem 0;
}

.section-muted {
  background: rgba(230, 235, 226, 0.5);
}

.section-primary {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  color: var(--primary-foreground);
}

.text-center {
  text-align: center;
}

.section-heading {
  margin-bottom: 2rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-glass {
  background: rgba(245, 246, 242, 0.12);
  border: 1px solid rgba(245, 246, 242, 0.15);
  color: var(--card);
  backdrop-filter: blur(14px);
}

.title-xl,
.title-lg,
.title-md {
  margin: 0;
  color: var(--foreground);
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.title-xl {
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: 1.05;
}

.title-lg {
  font-size: clamp(1.875rem, 4vw, 3.125rem);
  line-height: 1.1;
}

.title-md {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.14;
}

.lead {
  margin: 1rem auto 0;
  max-width: 42rem;
  color: var(--muted-foreground);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 320ms var(--ease-standard), border-color 320ms var(--ease-standard), color 320ms var(--ease-standard), transform 320ms var(--ease-standard), box-shadow 320ms var(--ease-standard);
}

.button:hover {
  transform: translateY(-0.5px);
}

.button-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.button-primary:hover {
  background: #236f2a;
  box-shadow: 0 14px 28px -24px rgba(27, 94, 32, 0.55);
}

.button-accent {
  background: var(--accent);
  color: var(--accent-foreground);
  box-shadow: 0 16px 32px -18px rgba(183, 28, 28, 0.6);
}

.button-accent:hover {
  background: #bd2525;
  box-shadow: 0 14px 30px -24px rgba(183, 28, 28, 0.55);
}

.button-glass {
  border: 1px solid rgba(245, 246, 242, 0.2);
  background: rgba(245, 246, 242, 0.08);
  color: var(--card);
  backdrop-filter: blur(14px);
}

.button-glass:hover {
  border-color: rgba(245, 246, 242, 0.28);
  background: rgba(245, 246, 242, 0.12);
}

.icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  display: block;
  overflow: visible;
  stroke-width: 2.15;
}

.icon * {
  vector-effect: non-scaling-stroke;
}

.icon-image {
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(26%) sepia(20%) saturate(1779%) hue-rotate(75deg) brightness(88%) contrast(91%);
  transition: filter 320ms var(--ease-standard), opacity 320ms var(--ease-standard), transform 320ms var(--ease-standard);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding-top: env(safe-area-inset-top);
  background: rgba(240, 241, 237, 0.72);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  transition: background 520ms var(--ease-standard), box-shadow 520ms var(--ease-standard);
}

.site-header.is-hero {
  background: rgba(255, 255, 255, 0);
}

.site-header.is-scrolled {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  width: min(100% - 2rem, var(--container));
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  position: relative;
  width: 90px;
  aspect-ratio: 1;
  transition: transform 420ms var(--ease-standard), opacity 320ms var(--ease-standard);
}

.brand:hover .brand-logo {
  transform: scale(1.025);
}

.brand-shadow,
.brand-mark {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-shadow {
  filter: invert(1);
  transition: filter 360ms var(--ease-standard), opacity 360ms var(--ease-standard);
}

.site-header.is-hero.hero-dark .brand-shadow {
  filter: invert(0);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-link,
.products-trigger {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 0.35rem;
  border-radius: 0.55rem;
  padding: 0.5rem 1rem;
  background: transparent;
  color: rgba(26, 43, 26, 0.8);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 300ms var(--ease-standard), color 300ms var(--ease-standard), box-shadow 300ms var(--ease-standard);
}

.site-header.is-hero .nav-link,
.site-header.is-hero .products-trigger,
.site-header.is-hero .language-toggle,
.site-header.is-hero .menu-toggle {
  color: rgba(255, 255, 255, 0.92);
}

.nav-link:hover,
.products-trigger:hover,
.nav-link.is-active,
.products-trigger.is-active {
  color: var(--hover-text);
  background: var(--hover-bg);
  box-shadow: inset 0 0 0 1px rgba(27, 94, 32, 0.04);
}

.site-header.is-hero .nav-link:hover,
.site-header.is-hero .products-trigger:hover,
.site-header.is-hero .nav-link.is-active,
.site-header.is-hero .products-trigger.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.products-trigger .icon {
  width: 1rem;
  height: 1rem;
  transition: transform 320ms var(--ease-standard);
}

.products-trigger[aria-expanded="true"] .icon {
  transform: rotate(180deg);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.language-toggle {
  display: none;
  min-height: 36px;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: rgba(26, 43, 26, 0.7);
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: background 300ms var(--ease-standard), border-color 300ms var(--ease-standard), color 300ms var(--ease-standard), box-shadow 300ms var(--ease-standard);
}

.language-toggle:hover {
  border-color: rgba(27, 94, 32, 0.18);
  background: var(--hover-bg);
}

.site-header.is-hero .language-toggle {
  border-color: rgba(255, 255, 255, 0.3);
}

.site-header.is-hero .language-toggle:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: transparent;
  color: var(--foreground);
  transition: background 300ms var(--ease-standard), color 300ms var(--ease-standard), transform 300ms var(--ease-standard);
}

.menu-toggle:hover {
  background: var(--hover-bg);
}

.menu-toggle .icon {
  width: 1.45rem;
  height: 1.45rem;
}

.products-dropdown {
  position: fixed;
  top: 4.85rem;
  left: var(--dropdown-left, 50%);
  z-index: 1200;
  width: min(540px, calc(100vw - 2rem));
  border: 1px solid rgba(245, 246, 242, 0.14);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(18, 53, 22, 0.88), rgba(72, 63, 23, 0.82));
  box-shadow: 0 24px 60px -34px rgba(0, 0, 0, 0.58), 0 2px 10px -6px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  transform: translate(-50%, 10px) scale(0.992);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms var(--ease-standard), transform 360ms var(--ease-standard);
}

.products-dropdown.is-open {
  transform: translate(-50%, 0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.dropdown-title {
  padding: 0.9rem 1.25rem 0.5rem;
  color: rgba(230, 248, 222, 0.72);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem;
  padding: 0 0.5rem 0.5rem;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 0.85rem;
  padding: 0.85rem;
  transition: background 300ms var(--ease-standard), transform 300ms var(--ease-standard);
}

.dropdown-item:hover {
  background: rgba(245, 246, 242, 0.075);
  transform: translateY(-0.5px);
}

.dropdown-icon,
.card-icon,
.milestone-icon {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  background: rgba(27, 94, 32, 0.08);
  color: var(--primary);
  transition: background 320ms var(--ease-standard), color 320ms var(--ease-standard), box-shadow 320ms var(--ease-standard), transform 320ms var(--ease-standard);
}

.dropdown-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-top: 0.125rem;
  background: rgba(245, 246, 242, 0.1);
  color: rgba(230, 248, 222, 0.86);
  box-shadow: inset 0 0 0 1px rgba(245, 246, 242, 0.055);
}

.dropdown-icon .icon {
  width: 1.45rem;
  height: 1.45rem;
}

.dropdown-icon .icon-image,
.card-icon .icon-image,
.milestone-icon .icon-image,
.drawer-category-icon .icon-image,
.category-hero-icon .icon-image {
  position: absolute;
  top: 50%;
  left: 50%;
  object-position: center;
  transform: translate(-50%, -50%);
}

.dropdown-item:hover .dropdown-icon {
  background: rgba(245, 246, 242, 0.16);
  color: rgba(248, 250, 248, 0.96);
  box-shadow: inset 0 0 0 1px rgba(245, 246, 242, 0.08);
}

.product-card:hover .card-icon,
.milestone-card:hover .milestone-icon,
.contact-card:hover .card-icon,
.other-card:hover .card-icon {
  background: rgba(27, 94, 32, 0.12);
  color: var(--hover-text);
  box-shadow: inset 0 0 0 1px rgba(27, 94, 32, 0.06);
}

.dropdown-icon .icon-image {
  filter: brightness(0) saturate(100%) invert(92%) sepia(12%) saturate(411%) hue-rotate(55deg) brightness(99%) contrast(96%);
  opacity: 0.9;
}

.dropdown-item:hover .dropdown-icon .icon-image {
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.product-card:hover .icon-image,
.other-card:hover .icon-image,
.contact-card:hover .icon-image {
  filter: brightness(0) saturate(100%) invert(27%) sepia(21%) saturate(1678%) hue-rotate(75deg) brightness(91%) contrast(91%);
}

.dropdown-item strong,
.dropdown-item span {
  display: block;
}

.dropdown-item strong {
  color: rgba(248, 250, 248, 0.94);
  font-size: 0.9rem;
}

.dropdown-item span {
  margin-top: 0.2rem;
  color: rgba(230, 238, 226, 0.76);
  font-size: 0.75rem;
  line-height: 1.45;
}

.dropdown-footer {
  margin: 0.25rem 0.75rem 0.75rem;
  border-top: 1px solid rgba(245, 246, 242, 0.12);
  padding-top: 0.6rem;
}

.dropdown-footer a {
  display: inline-flex;
  gap: 0.4rem;
  padding: 0.45rem 0.3rem;
  color: rgba(230, 248, 222, 0.9);
  font-size: 0.9rem;
  font-weight: 800;
  transition: color 280ms var(--ease-standard), transform 280ms var(--ease-standard);
}

.dropdown-footer a:hover {
  color: #fff;
  transform: translateX(1px);
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1998;
  background: rgba(26, 43, 26, 0.4);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms var(--ease-standard);
}

.mobile-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 1999;
  width: min(22rem, 92vw);
  display: flex;
  flex-direction: column;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--card);
  box-shadow: -24px 0 60px -35px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  transition: transform 420ms var(--ease-standard);
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.drawer-header,
.drawer-footer {
  flex-shrink: 0;
  padding: 1rem 1.25rem;
  border-color: var(--border);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.drawer-logo {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.drawer-close {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--muted-foreground);
}

.drawer-nav {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1rem;
}

.drawer-link,
.drawer-products-trigger {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.9rem;
  padding: 0.75rem 1rem;
  background: transparent;
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 600;
}

.drawer-link:hover,
.drawer-products-trigger:hover {
  background: var(--hover-bg);
  color: var(--hover-text);
}

.drawer-submenu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 360ms var(--ease-standard), opacity 300ms var(--ease-standard);
}

.drawer-submenu.is-open {
  max-height: 28rem;
  opacity: 1;
}

.drawer-submenu-inner {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 0.25rem 0 0.5rem 0.75rem;
  border-left: 2px solid rgba(27, 94, 32, 0.2);
  padding-left: 0.75rem;
}

.drawer-category {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.65rem;
  padding: 0.6rem 0.75rem;
  color: var(--muted-foreground);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 300ms var(--ease-standard), color 300ms var(--ease-standard), transform 300ms var(--ease-standard);
}

.drawer-category:hover {
  background: var(--hover-bg);
  color: var(--foreground);
  transform: translateX(1px);
}

.drawer-category:hover .icon-image {
  filter: brightness(0) saturate(100%) invert(12%) sepia(17%) saturate(1252%) hue-rotate(71deg) brightness(94%) contrast(91%);
}

.drawer-category-icon {
  position: relative;
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.6rem;
  background: rgba(27, 94, 32, 0.1);
  color: var(--primary);
}

.drawer-category-icon .icon {
  width: 1.15rem;
  height: 1.15rem;
}

.drawer-all-products {
  display: inline-flex;
  padding: 0.55rem 0.75rem;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
}

.drawer-footer {
  border-top: 1px solid var(--border);
}

.drawer-language {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  background: rgba(230, 235, 226, 0.5);
  padding: 0.65rem 1rem;
  color: var(--foreground);
  font-size: 0.9rem;
  font-weight: 800;
}

.drawer-language-current {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.drawer-language-code {
  border-radius: 999px;
  background: rgba(27, 94, 32, 0.1);
  color: var(--primary);
  padding: 0.15rem 0.5rem;
  font-size: 0.72rem;
}

.drawer-cta {
  width: 100%;
  margin-top: 0.65rem;
  border-radius: 0.9rem;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 34rem;
  overflow: hidden;
}

.hero-media,
.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-media {
  will-change: transform;
  background: var(--foreground);
}

.hero-video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  object-position: 35% center;
  opacity: 0;
  transition: opacity 420ms ease;
}

.hero-video.is-ready {
  opacity: 1;
}

.hero-overlay,
.image-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-overlay {
  background: linear-gradient(to bottom, rgba(26, 43, 26, 0.6), rgba(26, 43, 26, 0.25), rgba(26, 43, 26, 0.5));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  text-align: center;
  will-change: transform, opacity;
}

.hero-title-card {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(4.75rem, 12vw, 7rem);
  place-items: center;
  border: 0;
  border-radius: 2.25rem;
  background: transparent;
  box-shadow: none;
  padding: 0 1.1rem;
  color: #fff;
  font-size: clamp(2.35rem, 8vw, 4.5rem);
  line-height: 1;
}

.hero-title-card::before {
  content: "";
  position: absolute;
  inset: -0.3rem -0.55rem;
  z-index: 0;
  border: 1px solid rgba(245, 246, 242, 0.2);
  border-radius: inherit;
  background: rgba(26, 43, 26, 0.34);
  box-shadow: 0 22px 56px -34px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
}

.hero-story-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(245, 246, 242, 0.24);
  background: transparent;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.42);
  box-shadow: 0 14px 34px -26px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-story-button::before {
  content: "";
  position: absolute;
  inset: -0.2rem;
  z-index: -1;
  background: rgba(26, 43, 26, 0.34);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
}

.hero-story-button:hover {
  border-color: rgba(245, 246, 242, 0.32);
}

.hero-title-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  transform: translateY(4px);
}

.hero-story-button span,
.hero-story-button .icon {
  position: relative;
  z-index: 1;
}

.hero-story-button span {
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

.hero-title-agro {
  color: var(--primary-vivid);
  font-family: var(--font-american-typewriter);
  font-weight: 700;
  font-style: italic;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), 0 0 28px rgba(148, 230, 147, 0.85);
}

.hero-title-brand {
  color: #ff3b2f;
  font-family: var(--font-sans);
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 0 22px rgba(255, 59, 47, 0.45);
}

.hero-subtitle {
  margin: 1.4rem auto 0;
  max-width: 42rem;
  color: #fff;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  line-height: 1.7;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  width: min(100%, 23rem);
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  z-index: 2;
  width: 1.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  border: 2px solid rgba(245, 246, 242, 0.3);
  border-radius: 999px;
  padding-top: 0.35rem;
  transform: translateX(-50%);
}

.scroll-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: rgba(245, 246, 242, 0.6);
  animation: scrollDot 2.6s var(--ease-subtle) infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.stats-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  background: var(--card);
  box-shadow: var(--shadow-xl);
  padding: 1.25rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  color: var(--primary);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
}

.stat-label {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.9rem;
  font-weight: 600;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-two,
.grid-three,
.grid-four,
.grid-gallery,
.contact-grid,
.map-form-grid {
  grid-template-columns: 1fr;
}

.product-card,
.process-card,
.subcategory-card,
.milestone-card,
.contact-card,
.other-card,
.partner-card {
  border: 1px solid rgba(211, 218, 206, 0.75);
  border-radius: var(--radius-2xl);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 360ms var(--ease-standard), box-shadow 360ms var(--ease-standard), transform 360ms var(--ease-standard), background 360ms var(--ease-standard);
}

.product-card:hover,
.process-card:hover,
.subcategory-card:hover,
.milestone-card:hover,
.contact-card:hover,
.other-card:hover,
.partner-card:hover {
  border-color: var(--hover-border);
  box-shadow: var(--hover-shadow);
  transform: translateY(-1px);
}

.image-frame {
  position: relative;
  overflow: hidden;
  background: var(--muted);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-standard), opacity 360ms var(--ease-standard);
}

.product-card:hover .image-frame img,
.process-card:hover .image-frame img,
.subcategory-card:hover .image-frame img,
.gallery-button:hover img {
  transform: scale(1.035);
}

.product-image {
  height: 13rem;
}

.product-overview-image {
  height: 13rem;
}

.process-image,
.subcategory-image {
  height: 12rem;
}

.image-overlay {
  background: linear-gradient(to top, rgba(26, 43, 26, 0.58), rgba(26, 43, 26, 0.08), transparent);
}

.card-body {
  padding: 1.25rem;
}

.card-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.card-icon,
.milestone-icon {
  width: 2.75rem;
  height: 2.75rem;
}

.card-icon .icon,
.milestone-icon .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.product-card h3,
.product-card h2,
.process-card h3,
.subcategory-card h3,
.milestone-card h3,
.contact-card h3 {
  margin: 0;
  color: var(--foreground);
  font-size: 1.2rem;
  line-height: 1.25;
  transition: color 300ms var(--ease-standard);
}

.product-card:hover h3,
.product-card:hover h2,
.other-card:hover span {
  color: var(--hover-text);
}

.card-copy {
  margin: 0.5rem 0 0;
  color: var(--muted-foreground);
  line-height: 1.65;
}

.learn-more {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  color: #9f2424;
  font-size: 0.9rem;
  font-weight: 800;
  transition: gap 320ms var(--ease-standard), color 320ms var(--ease-standard), opacity 320ms var(--ease-standard);
}

.product-card:hover .learn-more {
  gap: 0.55rem;
  color: #8f2020;
}

.process-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}

.story-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.story-image-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

.story-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-badge-card {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.85rem;
  background: rgba(245, 246, 242, 0.9);
  backdrop-filter: blur(12px);
  padding: 0.75rem 1rem;
}

.story-badge-number {
  display: flex;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 1.1rem;
  font-weight: 800;
}

.story-content-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.story-paragraph {
  margin: 0;
  color: var(--muted-foreground);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.85;
}

.gallery-button {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background: var(--muted);
}

.gallery-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-standard);
}

.gallery-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 43, 26, 0);
  transition: background 360ms var(--ease-standard);
}

.gallery-button:hover::after {
  background: rgba(26, 43, 26, 0.1);
}

.partner-card {
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.partner-card img {
  max-height: 4rem;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter 420ms var(--ease-standard), opacity 420ms var(--ease-standard);
}

.partner-card:hover img {
  filter: grayscale(0.25);
  opacity: 0.86;
}

.partner-card span {
  color: var(--muted-foreground);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 56rem);
  margin: 0 auto;
  text-align: center;
}

.cta-content .title-lg {
  color: var(--primary-foreground);
}

.cta-content .lead {
  color: rgba(248, 250, 248, 0.8);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.story-hero,
.category-hero {
  position: relative;
  overflow: hidden;
}

.story-hero {
  height: 50vh;
  min-height: 21rem;
}

.category-hero {
  height: 20rem;
}

.story-hero img,
.category-hero img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  will-change: transform;
}

.story-hero .image-overlay {
  background: linear-gradient(to bottom, rgba(26, 43, 26, 0.4), rgba(26, 43, 26, 0.2), var(--background));
}

.category-hero .image-overlay {
  background: linear-gradient(to top, rgba(26, 43, 26, 0.75), rgba(26, 43, 26, 0.35), rgba(26, 43, 26, 0.2));
}

.hero-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem 0;
  text-align: center;
}

.hero-center .title-xl,
.hero-center .title-lg {
  color: var(--card);
}

.hero-center .lead {
  color: rgba(245, 246, 242, 0.75);
}

.category-hero-icon {
  position: relative;
  display: flex;
  width: 3.5rem;
  height: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(245, 246, 242, 0.9);
  color: var(--primary);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  margin-bottom: 1rem;
}

.category-hero-icon .icon {
  width: 1.85rem;
  height: 1.85rem;
}

.back-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--muted-foreground);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 300ms var(--ease-standard), transform 300ms var(--ease-standard);
}

.back-link:hover {
  color: var(--hover-text);
  transform: translateX(-1px);
}

.about-block {
  max-width: 56rem;
  margin-bottom: 2.5rem;
}

.about-block h2,
.category-section-title {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 2.6vw, 1.55rem);
}

.about-block p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.75;
}

.subcategory-title {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 2;
  color: var(--card);
  font-size: 1.1rem;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.other-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
}

.other-card span {
  font-weight: 700;
  transition: color 300ms var(--ease-standard);
}

.contact-hero {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  padding: 6rem 0 5rem;
  color: var(--primary-foreground);
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v20h2V0h2v20h2V0h2v20h2V0h2v20h2V0h2v22H20v-1.5z' fill='%23fff'/%3E%3C/svg%3E");
}

.contact-hero .container-small {
  position: relative;
}

.contact-hero .title-lg {
  color: var(--primary-foreground);
}

.contact-hero .lead {
  color: rgba(248, 250, 248, 0.8);
}

.contact-strip {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
}

.contact-card {
  padding: 1.25rem;
}

.contact-card .card-icon {
  margin-bottom: 0.8rem;
}

.contact-label {
  margin: 0 0 0.25rem;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-value {
  margin: 0;
  color: var(--foreground);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

a.contact-value:hover {
  color: var(--hover-text);
}

.map-card,
.form-card {
  border: 1px solid rgba(211, 218, 206, 0.75);
  border-radius: var(--radius-2xl);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.map-card {
  height: 18rem;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.form-card {
  padding: 1.25rem;
}

.form-card h2 {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
}

.form-card p {
  margin: 0 0 1.5rem;
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.field {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background: var(--background);
  color: var(--foreground);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 260ms var(--ease-standard), box-shadow 260ms var(--ease-standard), background 260ms var(--ease-standard);
}

textarea.field {
  min-height: 8.5rem;
  resize: vertical;
}

.field:focus {
  border-color: var(--ring);
  box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}

.form-note {
  min-height: 1.2rem;
  color: var(--muted-foreground);
  font-size: 0.8rem;
}

.form-note-info {
  color: var(--muted-foreground);
}

.form-note-success {
  color: var(--primary);
  font-weight: 700;
}

.form-note-error {
  color: var(--accent);
  font-weight: 700;
}

.contact-form .button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

.site-footer {
  margin-top: auto;
  background: var(--primary-dark);
  color: rgba(248, 250, 248, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
}

.footer-logo {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
}

.footer-copy,
.footer-list,
.footer-meta {
  color: rgba(248, 250, 248, 0.6);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-heading {
  margin: 0 0 1.25rem;
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list li,
.footer-meta {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-list a:hover,
.footer-meta a:hover {
  color: rgba(248, 250, 248, 0.92);
}

.footer-list .icon,
.footer-meta .icon {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.22rem;
  color: var(--accent);
}

.button .icon,
.back-link .icon,
.learn-more .icon {
  width: 1.05rem;
  height: 1.05rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(248, 250, 248, 0.1);
  padding: 1.5rem 0;
  color: rgba(248, 250, 248, 0.4);
  font-size: 0.75rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 43, 26, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms var(--ease-standard);
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-image-wrap {
  position: relative;
  width: min(100%, 56rem);
  aspect-ratio: 4 / 3;
  transform: scale(0.975);
  transition: transform 360ms var(--ease-standard);
}

.lightbox.is-open .lightbox-image-wrap {
  transform: scale(1);
}

.lightbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0.65rem;
}

.lightbox-button {
  position: absolute;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(245, 246, 242, 0.16);
  color: var(--card);
  transition: background 300ms var(--ease-standard), transform 300ms var(--ease-standard);
}

.lightbox-button:hover {
  background: rgba(245, 246, 242, 0.26);
  transform: scale(1.015);
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
}

.lightbox-prev {
  left: 0.75rem;
}

.lightbox-next {
  right: 0.75rem;
}

.lightbox-counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  color: rgba(245, 246, 242, 0.7);
  font-size: 0.9rem;
  font-weight: 700;
  transform: translateX(-50%);
}

.reveal {
  opacity: 0;
  transform: translateY(1.1rem);
  transition: opacity 820ms var(--ease-standard), transform 820ms var(--ease-standard), border-color 360ms var(--ease-standard), box-shadow 360ms var(--ease-standard), background 360ms var(--ease-standard), color 320ms var(--ease-standard);
}

.reveal-left {
  transform: translateX(-1.1rem);
}

.reveal-right {
  transform: translateX(1.1rem);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.product-card.reveal.is-visible:hover,
.process-card.reveal.is-visible:hover,
.subcategory-card.reveal.is-visible:hover,
.milestone-card.reveal.is-visible:hover,
.contact-card.reveal.is-visible:hover,
.other-card.reveal.is-visible:hover,
.partner-card.reveal.is-visible:hover {
  transform: translateY(-1px);
}

.fade-up {
  animation: fadeUp 920ms var(--ease-standard) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(1.1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 640px) {
  .container,
  .container-narrow,
  .container-small {
    width: min(100% - 3rem, var(--container));
  }

  .section {
    padding: 4rem 0;
  }

  .language-toggle {
    display: inline-flex;
  }

  .hero-actions,
  .cta-actions {
    width: auto;
    flex-direction: row;
    align-items: center;
  }

  .stats-card {
    padding: 2rem;
  }

  .grid-three,
  .grid-four,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .footer-brand {
    grid-column: span 2;
  }
}

@media (min-width: 768px) {
  .grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-overview-image {
    height: 15rem;
  }

  .partner-card {
    height: 8rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }

  .nav-inner {
    height: 5rem;
  }

  .brand-logo {
    width: 110px;
  }

  .desktop-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .stats-card {
    padding: 3rem;
  }

  .grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .story-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
  }

  .story-hero {
    height: 60vh;
  }

  .category-hero {
    height: 26rem;
  }

  .map-form-grid {
    grid-template-columns: 3fr 2fr;
    gap: 2.5rem;
    align-items: stretch;
  }

  .map-card {
    height: auto;
    min-height: 26rem;
  }

  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: row;
  }
}

@media (min-width: 1280px) {
  .brand-logo {
    width: 124px;
  }

  .nav-inner {
    height: 5.5rem;
  }
}

@media (max-width: 520px) {
  .hero-title-card {
    width: min(100%, 22rem);
    font-size: clamp(2rem, 11vw, 2.6rem);
    border-radius: 1.5rem;
  }

  .hero-title-inner {
    flex-wrap: wrap;
    row-gap: 0.2rem;
  }

  .dropdown-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
