:root {
  --bg: #ebe7df;
  --bg-strong: #f7f4ec;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --surface-dark: #111915;
  --surface-dark-soft: #17211c;
  --ink: #131915;
  --muted: #5e665f;
  --line: rgba(23, 34, 28, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --green: #203a2b;
  --green-soft: #335544;
  --gold: #ad8351;
  --earth: #d2b48f;
  --shadow: 0 24px 60px rgba(17, 25, 21, 0.12);
  --shadow-strong: 0 24px 80px rgba(8, 14, 11, 0.32);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1240px, calc(100% - 36px));
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(173, 131, 81, 0.14), transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(51, 85, 68, 0.16), transparent 20%),
    linear-gradient(180deg, #f2efe8 0%, #ebe7df 40%, #e5e0d7 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(32, 58, 43, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 58, 43, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  opacity: 0.45;
  z-index: 0;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

p {
  margin: 0;
  line-height: 1.7;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.site-frame {
  position: relative;
  z-index: 1;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 18px;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
  padding: 16px 20px;
  background: rgba(13, 19, 16, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(12, 16, 14, 0.28);
  backdrop-filter: blur(18px);
}

.header-actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(8, 14, 11, 0.18);
}

.brand-logo {
  display: block;
  width: auto;
  height: 58px;
}

.site-footer .brand-logo-shell {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 28px rgba(8, 14, 11, 0.16);
}

.site-footer .brand-logo {
  height: 52px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #325240 0%, #9a7747 100%);
  color: #fff8ef;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #f7f5ef;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-kicker {
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.67rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.language-button {
  min-width: 46px;
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.language-button:hover,
.language-button.is-active {
  background: linear-gradient(135deg, #f4ede0 0%, #dcc49b 100%);
  color: #102015;
}

.site-nav a {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.96rem;
  font-weight: 600;
  border-radius: 999px;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  background: linear-gradient(135deg, #f4ede0 0%, #dcc49b 100%);
  color: #102015 !important;
  box-shadow: 0 10px 20px rgba(173, 131, 81, 0.16);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #f4f1ea;
  transition: transform var(--transition), opacity var(--transition);
}

.hero,
.page-hero {
  padding: 44px 0 0;
}

.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.media-card,
.feature-card,
.copy-panel,
.value-panel,
.stat-card,
.crop-card,
.equipment-card,
.process-card,
.preview-tile,
.cta-band,
.contact-panel,
.contact-card,
.map-card,
.brochure-panel,
.tech-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-copy {
  padding: 42px;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  max-width: 11ch;
}

.page-hero-simple .hero-copy h1 {
  max-width: 12ch;
}

.page-lede {
  margin-top: 22px;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.kicker,
.media-label,
.footer-title,
.eyebrow-dark {
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
}

.kicker {
  color: var(--green-soft);
}

.eyebrow-dark {
  color: rgba(255, 255, 255, 0.68);
}

.hero-actions,
.cta-actions,
.section-link-row,
.brochure-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

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

.button-primary {
  background: linear-gradient(135deg, #203a2b 0%, #385a47 100%);
  color: #f8f4eb;
  box-shadow: 0 18px 30px rgba(32, 58, 43, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(32, 58, 43, 0.1);
}

.button-outline {
  background: transparent;
  color: #f7f5ef;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--green);
  font-weight: 700;
}

.text-link.inverse {
  color: rgba(255, 255, 255, 0.88);
}

.text-link::after {
  content: "→";
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-trust span,
.tech-list span,
.gallery-chip,
.tech-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-trust span {
  background: rgba(32, 58, 43, 0.06);
  color: var(--green);
}

.hero-visuals {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 18px;
}

.hero-stack {
  display: grid;
  gap: 18px;
}

.media-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
}

.media-card.large {
  min-height: 460px;
}

.media-card img,
.preview-tile img,
.mosaic-card img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04) brightness(0.96);
}

.media-card::after,
.preview-tile::after,
.gallery-card::after,
.mosaic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 11, 9, 0.02) 0%, rgba(8, 14, 11, 0.6) 100%);
  pointer-events: none;
}

.tone-soft::after {
  background: linear-gradient(180deg, rgba(9, 16, 13, 0.08) 0%, rgba(9, 16, 13, 0.62) 100%);
}

.tone-cool::after {
  background: linear-gradient(180deg, rgba(18, 30, 26, 0.06) 0%, rgba(10, 16, 14, 0.74) 100%);
}

.tone-warm::after {
  background: linear-gradient(180deg, rgba(46, 31, 14, 0.06) 0%, rgba(16, 12, 9, 0.74) 100%);
}

.tone-deep::after {
  background: linear-gradient(180deg, rgba(4, 8, 6, 0.18) 0%, rgba(4, 8, 6, 0.74) 100%);
}

.media-copy,
.preview-copy {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  color: #f7f5ef;
}

.media-copy strong,
.preview-copy strong {
  font-size: 1rem;
  line-height: 1.35;
}

.media-copy.compact strong {
  font-size: 0.98rem;
}

.media-label {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.74);
}

.stats-strip {
  padding: 22px 0 0;
}

.stats-grid,
.feature-grid,
.equipment-grid,
.preview-grid,
.process-grid,
.crop-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

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

.stat-card {
  padding: 24px 22px;
  border-radius: var(--radius-lg);
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: var(--green);
}

.stat-card p,
.feature-card p,
.crop-card p,
.copy-panel p,
.value-panel p,
.equipment-card p,
.process-card p,
.preview-copy p,
.gallery-copy p,
.contact-card span,
.map-card p,
.form-note,
.tech-panel p,
.brochure-panel p,
.footer-brand p,
.footer-grid span {
  color: var(--muted);
}

.section {
  padding: 82px 0 0;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 26px;
}

.section-heading h2,
.copy-panel h2,
.tech-panel h2,
.cta-band h2,
.brochure-panel h2,
.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  max-width: 13ch;
}

.section-heading.narrow h2 {
  max-width: 14ch;
}

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

.feature-card {
  padding: 30px;
}

.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(32, 58, 43, 0.08);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
}

.feature-card h3,
.crop-card span,
.equipment-card h3,
.process-card h3,
.tech-panel h2,
.map-card h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.split-grid.reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.copy-panel,
.value-panel,
.contact-panel,
.contact-card,
.map-card,
.brochure-panel,
.tech-panel {
  padding: 32px;
}

.copy-panel p + p,
.tech-panel p + p {
  margin-top: 16px;
}

.value-panel {
  display: grid;
  gap: 18px;
}

.value-panel article {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.value-panel article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.value-panel strong,
.bullet-list li::marker,
.contact-card strong {
  color: var(--green);
}

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

.crop-grid.detailed {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.crop-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
}

.crop-card span {
  display: block;
}

.crop-card::before,
.equipment-card::before,
.process-card::before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, #284835 0%, #ad8351 100%);
}

.dark-section {
  color: #f4f1e9;
}

.dark-section .container {
  padding: 32px;
  border-radius: calc(var(--radius-xl) + 8px);
  background:
    radial-gradient(circle at 80% 12%, rgba(173, 131, 81, 0.16), transparent 22%),
    linear-gradient(145deg, #101814 0%, #1b271f 100%);
  box-shadow: var(--shadow-strong);
}

.dark-copy,
.dark-copy p,
.dark-copy .bullet-list li,
.dark-section .section-heading h2,
.dark-section .kicker,
.dark-section .preview-copy p {
  color: #f4f1e9;
}

.dark-copy .kicker,
.dark-section .kicker {
  color: rgba(255, 255, 255, 0.68);
}

.bullet-list {
  margin: 20px 0 0;
  padding-left: 22px;
}

.bullet-list li + li {
  margin-top: 10px;
}

.equipment-showcase {
  padding: 36px;
  border-radius: calc(var(--radius-xl) + 8px);
  background: linear-gradient(180deg, #122019 0%, #18251d 100%);
  box-shadow: var(--shadow-strong);
}

.equipment-showcase .section-heading h2,
.equipment-showcase .kicker {
  color: #f6f3eb;
}

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

.equipment-card {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  color: #f7f5ef;
  box-shadow: none;
}

.equipment-card p {
  color: rgba(255, 255, 255, 0.72);
}

.equipment-card.emphasis {
  background: linear-gradient(160deg, rgba(173, 131, 81, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.section-link-row {
  margin-top: 24px;
}

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

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

.preview-tile {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.preview-tile.nursery-tile img {
  object-position: center 38%;
  filter: saturate(0.9) contrast(1.03) brightness(0.96);
}

.preview-tile.greenhouse-demo-tile img,
.gallery-card.greenhouse img {
  object-position: center 34%;
  filter: saturate(0.8) contrast(1.03) brightness(0.85);
}

.cta-band,
.brochure-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
}

.cta-band {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78) 0%, rgba(242, 235, 223, 0.92) 100%);
}

.page-hero-simple .media-card {
  min-height: 420px;
}

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

.process-card {
  padding: 28px 24px;
}

.process-card strong {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 800;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
}

.mosaic-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: var(--radius-lg);
}

.mosaic-card.wide {
  grid-column: span 2;
}

.equipment-hero .page-hero-grid {
  align-items: stretch;
}

.tech-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 80% 12%, rgba(173, 131, 81, 0.2), transparent 28%),
    linear-gradient(145deg, #101814 0%, #18241d 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
  color: #f5f1e8;
}

.tech-badge,
.gallery-chip {
  background: rgba(255, 255, 255, 0.1);
  color: #f4f0e7;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.document-view {
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 239, 228, 0.98) 100%);
}

.document-view img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  background: #ffffff;
  border-radius: calc(var(--radius-lg) - 4px);
  box-shadow: 0 20px 38px rgba(13, 19, 16, 0.12);
}

.document-view::after {
  display: none;
}

.document-dark {
  background: linear-gradient(160deg, rgba(18, 32, 25, 0.96) 0%, rgba(27, 39, 31, 0.98) 100%);
}

.document-dark img {
  background: rgba(255, 255, 255, 0.98);
}

.spec-grid,
.reference-gallery,
.document-grid {
  display: grid;
  gap: 18px;
}

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

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

.reference-card,
.document-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.reference-image {
  min-height: 420px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(249, 246, 239, 0.98) 0%, rgba(241, 235, 223, 0.98) 100%);
  border-bottom: 1px solid var(--line);
}

.reference-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  background: #ffffff;
  border-radius: calc(var(--radius-lg) - 4px);
  box-shadow: 0 18px 34px rgba(13, 19, 16, 0.1);
}

.reference-copy,
.document-card {
  padding: 28px;
}

.reference-copy h3,
.document-card h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.reference-copy p,
.document-card p {
  color: var(--muted);
}

.document-card .button {
  margin-top: 20px;
}

.brochure-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82) 0%, rgba(243, 236, 225, 0.94) 100%);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.filter-button:hover,
.filter-button.active {
  background: var(--green);
  color: #f7f4ec;
}

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

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-align: left;
  box-shadow: var(--shadow);
  transition: transform var(--transition), opacity var(--transition);
}

.gallery-card[hidden] {
  display: none;
}

.gallery-card:hover {
  transform: translateY(-4px);
}

.gallery-chip,
.gallery-copy {
  position: absolute;
  z-index: 1;
}

.gallery-chip {
  top: 18px;
  left: 18px;
}

.gallery-copy {
  right: 18px;
  bottom: 18px;
  left: 18px;
  color: #f7f4ec;
}

.gallery-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(5, 9, 7, 0.9);
  z-index: 80;
}

.lightbox-shell {
  width: min(1100px, 100%);
  max-height: calc(100vh - 56px);
  display: grid;
  gap: 16px;
}

.lightbox-image {
  max-height: calc(100vh - 170px);
  border-radius: 20px;
  object-fit: contain;
  background: #0f1612;
}

.lightbox-copy {
  color: #f7f5ef;
}

.lightbox-title {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.72);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #f7f5ef;
  font-size: 1.8rem;
  cursor: pointer;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 24px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.contact-form .full-span {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(23, 34, 28, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(32, 58, 43, 0.35);
  box-shadow: 0 0 0 4px rgba(32, 58, 43, 0.08);
}

.turnstile-shell {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(23, 34, 28, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.turnstile-widget {
  min-height: 66px;
}

.turnstile-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.form-status {
  grid-column: 1 / -1;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-status.is-success {
  background: rgba(67, 116, 78, 0.12);
  color: #234c2f;
  border: 1px solid rgba(67, 116, 78, 0.18);
}

.form-status.is-error {
  background: rgba(145, 63, 48, 0.1);
  color: #7a2f22;
  border: 1px solid rgba(145, 63, 48, 0.16);
}

.button.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

.form-note {
  grid-column: 1 / -1;
  font-size: 0.93rem;
}

.contact-side {
  display: grid;
  gap: 18px;
}

.panel-card p {
  display: grid;
  gap: 4px;
}

.panel-card p + p {
  margin-top: 12px;
}

.map-card {
  min-height: 220px;
  background:
    radial-gradient(circle at 82% 20%, rgba(173, 131, 81, 0.12), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.76) 0%, rgba(244, 237, 228, 0.92) 100%);
}

.site-footer {
  padding: 82px 0 28px;
}

.footer-grid {
  grid-template-columns: 1.4fr 0.8fr 0.9fr 0.9fr;
  padding: 28px 0 0;
  border-top: 1px solid rgba(23, 34, 28, 0.12);
}

.footer-brand p {
  max-width: 42ch;
  margin-top: 14px;
}

.footer-title {
  color: var(--green);
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 10px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .gallery-card,
  .site-nav a {
    transition: none;
  }
}

@media (max-width: 1120px) {
  .site-nav,
  .stats-grid,
  .feature-grid,
  .equipment-grid,
  .preview-grid,
  .process-grid,
  .crop-grid,
  .gallery-grid,
  .spec-grid,
  .reference-gallery,
  .document-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .contact-grid,
  .mosaic-grid,
  .hero-visuals {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .section-heading h2,
  .copy-panel h2,
  .tech-panel h2,
  .cta-band h2,
  .brochure-panel h2,
  .contact-panel h2 {
    max-width: none;
  }

  .hero-visuals {
    gap: 18px;
  }

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

  .cta-band,
  .brochure-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding-top: 12px;
  }

  .header-shell {
    position: relative;
    border-radius: 28px;
    align-items: center;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: auto;
    min-width: min(360px, calc(100vw - 20px));
    display: none;
    padding: 16px;
    background: rgba(13, 19, 16, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(12, 16, 14, 0.32);
  }

  body.nav-open .site-nav {
    display: grid;
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav a {
    width: 100%;
  }

  .language-switcher {
    order: -1;
  }

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

@media (max-width: 720px) {
  :root {
    --container: min(100% - 20px, 1240px);
  }

  .header-shell,
  .hero-copy,
  .copy-panel,
  .value-panel,
  .feature-card,
  .stat-card,
  .crop-card,
  .equipment-card,
  .process-card,
  .contact-panel,
  .contact-card,
  .map-card,
  .cta-band,
  .brochure-panel,
  .tech-panel,
  .dark-section .container,
  .equipment-showcase {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-copy,
  .copy-panel,
  .value-panel,
  .feature-card,
  .crop-card,
  .equipment-card,
  .process-card,
  .contact-panel,
  .contact-card,
  .map-card,
  .cta-band,
  .brochure-panel,
  .tech-panel {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 11vw, 3.3rem);
  }

  .header-shell {
    gap: 14px;
  }

  .brand-logo-shell {
    padding: 5px 8px;
    border-radius: 18px;
  }

  .brand-logo {
    height: 48px;
  }

  .site-footer .brand-logo {
    height: 44px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switcher {
    padding: 5px;
  }

  .language-button {
    min-width: 40px;
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.76rem;
  }

  .stats-grid,
  .feature-grid,
  .equipment-grid,
  .preview-grid,
  .process-grid,
  .crop-grid,
  .gallery-grid,
  .spec-grid,
  .reference-gallery,
  .document-grid,
  .footer-grid,
  .hero-stack {
    grid-template-columns: 1fr;
  }

  .mosaic-card.wide {
    grid-column: auto;
  }

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

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
  }

  .reference-image {
    min-height: 320px;
  }
}
