/* Agrisales site.css — build 18. */
:root {
  --green-950: #092014;
  --green-900: #0f2f1c;
  --green-800: #17492a;
  --green-700: #1e5d35;
  --green-600: #267443;
  --green-100: #dff0e4;
  --green-50: #f1f8f2;
  --gold-500: #e5b522;
  --gold-400: #f2cb50;
  --gold-100: #fff5cb;
  --gold-50: #fdf8e1;
  --cream: #f7f5ed;
  --ink: #172019;
  --muted: #647069;
  --line: #dfe7df;
  --white: #ffffff;
  --danger: #a52a2a;
  --shadow-sm: 0 8px 24px rgba(14, 44, 25, 0.08);
  --shadow-lg: 0 24px 70px rgba(4, 27, 13, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --page: min(1180px, calc(100% - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body > * { flex: 0 0 auto; width: 100%; }
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
  color: var(--green-900);
  font-weight: 800;
}
.skip-link:focus { top: 16px; }

.announcement {
  padding: 8px 16px;
  text-align: center;
  color: #fff9df;
  background: var(--green-950);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.02em;
}
.announcement strong { color: var(--gold-400); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(15, 47, 28, 0.1);
  background: rgba(247, 245, 237, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-shell {
  width: var(--page);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green-900);
  text-decoration: none;
}
.brand img { width: auto; height: 50px; object-fit: contain; }
.brand-fallback {
  display: none;
  font-weight: 950;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}
.brand-fallback.show { display: inline; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--green-900);
  font-size: 0.9rem;
  font-weight: 800;
}
.nav-links a:hover, .nav-links a:focus-visible { background: var(--green-100); outline: none; }
.nav-links .nav-cta { background: var(--green-800); color: white; }
.nav-links .nav-cta:hover, .nav-links .nav-cta:focus-visible { background: var(--green-950); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--green-900);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 720px;
  color: white;
  background: var(--green-950);
}
.hero-bg {
  position: absolute;
  z-index: -2;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(242, 203, 80, 0.3), transparent 30%),
    radial-gradient(circle at 12% 85%, rgba(56, 149, 83, 0.33), transparent 32%),
    linear-gradient(120deg, rgba(5, 29, 14, 0.97), rgba(20, 83, 44, 0.9));
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto -8% -180px -8%;
  height: 300px;
  border-radius: 50% 50% 0 0;
  background: var(--cream);
}
.hero-shell {
  width: var(--page);
  margin: 0 auto;
  padding: 84px 0 150px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  align-items: center;
  gap: 70px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--gold-400);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; }
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  line-height: 0.93;
  letter-spacing: -0.065em;
  font-weight: 950;
}
.hero h1 span { color: var(--gold-400); }
.hero-copy {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255,255,255,0.84);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  min-height: 50px;
  padding: 13px 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 3px; }
.button-primary { color: var(--green-950); background: var(--gold-400); box-shadow: 0 10px 30px rgba(229,181,34,0.25); }
.button-primary:hover { background: #ffe17b; }
.button-light { color: white; border: 1px solid rgba(255,255,255,0.35); background: rgba(255,255,255,0.1); }
.button-light:hover { background: rgba(255,255,255,0.18); }
.button-green { color: white; background: var(--green-700); }
.button-green:hover { background: var(--green-900); }
.button-outline { color: var(--green-900); border: 1px solid var(--green-700); background: transparent; }
.button-outline:hover { color: white; background: var(--green-800); }
.button svg { width: 19px; height: 19px; }

.hero-trust {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  color: rgba(255,255,255,0.78);
  font-size: 0.87rem;
  font-weight: 700;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust span::before { content: "✓"; color: var(--gold-400); font-weight: 950; }

.hero-side {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-34px);
}
.hero-tray-floating {
  width: min(450px, 94%);
  margin: 0 auto 12px;
  pointer-events: none;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.hero-tray-floating img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(5, 25, 13, 0.24));
}
.hero-panel {
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.1);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.logo-plate {
  min-height: 165px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: rgba(255,255,255,0.96);
}
.logo-plate img { max-height: 135px; width: auto; object-fit: contain; }
.hero-contact-widget {
  margin-top: 16px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 25px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 14px 32px rgba(5,25,13,0.2);
  color: #1d2a3f;
}
.hero-contact-heading {
  text-align: center;
}
.hero-contact-heading strong {
  display: block;
  color: var(--green-700);
  font-size: 1.35rem;
  font-weight: 950;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
}
.hero-contact-heading span {
  display: block;
  margin-top: 7px;
  color: #6f788a;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.hero-copy-list {
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}
.hero-copy-card {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  border: 1px solid #edf0eb;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(15,43,24,0.08);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.hero-copy-card:hover {
  transform: translateY(-2px);
  border-color: rgba(30,86,49,0.32);
  box-shadow: 0 9px 20px rgba(15,43,24,0.12);
}
.hero-copy-card:active {
  transform: scale(0.985);
}
.hero-copy-card:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
}
.hero-copy-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f8faf5;
  color: var(--green-700);
  transition: background 160ms ease, color 160ms ease;
}
.hero-copy-card:hover .hero-copy-icon {
  color: #fff;
  background: var(--green-700);
}
.hero-copy-icon svg {
  width: 23px;
  height: 23px;
}
.hero-copy-details {
  display: block;
  min-width: 0;
}
.hero-copy-role {
  display: block;
  color: #9aa2b1;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.15;
  text-transform: uppercase;
}
.hero-copy-details strong {
  display: block;
  margin-top: 5px;
  color: #1d2a3f;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.15;
}
.hero-copy-value {
  display: block;
  margin-top: 5px;
  color: #596478;
  font-size: 0.93rem;
  font-weight: 650;
  line-height: 1.2;
}
.hero-copy-action {
  color: #9aa2b1;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 160ms ease;
}
.hero-copy-card:hover .hero-copy-action {
  color: var(--green-700);
}
.hero-location-block {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(29,42,63,0.09);
  text-align: center;
}
.hero-location-heading {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #6f788a;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-location-heading svg {
  width: 16px;
  height: 16px;
  color: var(--green-700);
}
.hero-location-block a {
  display: block;
  margin-top: 8px;
  color: #1d2a3f;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 160ms ease;
}
.hero-location-block a:hover {
  color: var(--green-700);
}
.hero-location-block strong,
.hero-location-block a span {
  display: block;
}
.hero-location-block strong {
  font-size: 0.98rem;
  font-weight: 850;
  text-transform: uppercase;
}
.hero-location-block a span {
  margin-top: 5px;
  font-size: 0.91rem;
  font-weight: 650;
  line-height: 1.35;
}
.copy-toast {
  position: fixed;
  top: max(24px, env(safe-area-inset-top));
  left: 50%;
  z-index: 300;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  background: var(--green-700);
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -150%);
  transition: opacity 220ms ease, transform 280ms cubic-bezier(.175,.885,.32,1.275);
}
.copy-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.section { padding: 92px 0; }
.home-inventory-section { background: var(--gold-50); }
.section-shell { width: var(--page); margin: 0 auto; }
.section-kicker {
  margin: 0 0 12px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.section-title {
  max-width: 800px;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 950;
}
.section-intro { max-width: 720px; margin: 20px 0 0; color: var(--muted); font-size: 1.08rem; }

.division-grid {
  position: relative;
  z-index: 2;
  width: var(--page);
  margin: -90px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.division-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.division-card h2 { margin: 12px 0 0; font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1; letter-spacing: -0.04em; }
.division-card p { margin: 14px 0 0; max-width: 530px; }
.division-card .division-label { font-size: 0.73rem; font-weight: 950; letter-spacing: 0.15em; text-transform: uppercase; }
.division-card .button-row { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; }
.commercial-card { color: white; background: var(--green-900); }
.commercial-card p { color: rgba(255,255,255,0.74); }
.commercial-card .division-label { color: var(--gold-400); }
.commercial-card-with-plant {
  min-height: 300px;
  padding-right: clamp(165px, 16vw, 215px);
  isolation: isolate;
}
.commercial-card-with-plant::before {
  content: "";
  position: absolute;
  right: -75px;
  bottom: -115px;
  z-index: -1;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,181,34,0.2) 0%, rgba(229,181,34,0.07) 48%, transparent 70%);
}
.commercial-card-copy {
  position: relative;
  z-index: 2;
}
.commercial-card-plant {
  position: absolute;
  right: 4px;
  bottom: -30px;
  z-index: 1;
  width: clamp(155px, 15vw, 205px);
  pointer-events: none;
}
.commercial-card-plant-halo {
  position: absolute;
  left: 50%;
  bottom: 35px;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,255,255,0.055);
  transform: translateX(-50%);
  filter: blur(1px);
}
.commercial-card-plant img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(1,17,8,0.38));
}
.home-card { color: var(--green-950); background: white; border: 1px solid var(--line); }
.home-card p { color: var(--muted); }
.home-card .division-label { color: var(--green-700); }
.home-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.home-card-copy {
  min-width: 0;
  flex: 1 1 auto;
}
.price-burst {
  position: relative;
  flex: 0 0 auto;
  margin-top: 4px;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--gold-400);
  transform: rotate(7deg);
  font-weight: 950;
  line-height: 0.95;
  box-shadow: 0 13px 30px rgba(229,181,34,0.25);
}
.price-burst strong { display: block; font-size: 1.65rem; }
.price-burst span { display: block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.04em; }

.commercial-section { padding-top: 110px; }
.commercial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  gap: 50px;
  align-items: stretch;
}
.crop-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.crop-chip {
  padding: 9px 13px;
  border: 1px solid #cadacb;
  border-radius: 999px;
  color: var(--green-800);
  background: white;
  font-size: 0.84rem;
  font-weight: 850;
}
.contact-card-dark {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: var(--radius-lg);
  color: white;
  background: linear-gradient(145deg, var(--green-950), var(--green-700));
  box-shadow: var(--shadow-lg);
}
.contact-card-dark::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -95px;
  bottom: -100px;
  background: rgba(242,203,80,0.15);
  pointer-events: none;
}

.contact-card-mike {
  min-height: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.contact-card-photo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #dfe7e1;
}
.contact-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,25,13,0.68) 0%, rgba(5,25,13,0.08) 48%, transparent 72%);
  pointer-events: none;
}
.contact-card-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  transition: transform 500ms ease;
}
.contact-card-mike:hover .contact-card-photo img { transform: scale(1.025); }
.contact-photo-badge {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 17px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 999px;
  color: var(--green-950);
  background: var(--gold-400);
  box-shadow: 0 8px 22px rgba(5,25,13,0.25);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-card-body {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  padding: 28px 34px 34px;
}
.contact-card-dark .contact-label { color: var(--gold-400); font-size: 0.74rem; font-weight: 950; text-transform: uppercase; letter-spacing: 0.14em; }
.contact-card-dark h3 { margin: 10px 0 0; font-size: 2rem; line-height: 1.05; }
.contact-card-dark .phone-display { display: inline-block; margin-top: 18px; color: white; text-decoration: none; font-size: clamp(1.7rem, 4vw, 2.55rem); font-weight: 950; letter-spacing: -0.04em; }
.contact-card-dark .phone-display:hover { color: var(--gold-400); }
.contact-card-dark p { color: rgba(255,255,255,0.73); }
.contact-actions { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }

.home-inventory-section { background: white; }
.inventory-heading-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; }
.inventory-contact {
  flex: 0 0 auto;
  padding: 15px 18px;
  border: 1px solid var(--green-100);
  border-radius: 18px;
  background: var(--green-50);
}
.inventory-contact span { display: block; color: var(--muted); font-size: 0.72rem; font-weight: 850; text-transform: uppercase; letter-spacing: 0.08em; }
.inventory-contact a { display: block; margin-top: 2px; color: var(--green-900); text-decoration: none; font-size: 1.25rem; font-weight: 950; }
.appointment-notice {
  margin-top: 32px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #f0d375;
  border-radius: 18px;
  color: #5a4300;
  background: var(--gold-100);
}
.appointment-notice svg { flex: 0 0 auto; width: 28px; height: 28px; }
.appointment-notice strong { display: block; }
.appointment-notice span { display: block; font-size: 0.9rem; }
.inventory-toolbar {
  margin-top: 24px;
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.3fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fbfcfa;
}
.field-wrap { position: relative; }
.field-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 20px;
  height: 20px;
  color: #7a877e;
  transform: translateY(-50%);
  pointer-events: none;
}
.inventory-toolbar input,
.inventory-toolbar select {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid #cfdbd1;
  border-radius: 13px;
  color: var(--ink);
  background: white;
  outline: none;
}
.inventory-toolbar input { padding-left: 44px; }
.inventory-toolbar input:focus,
.inventory-toolbar select:focus { border-color: var(--green-600); box-shadow: 0 0 0 4px rgba(38,116,67,0.12); }
.inventory-count { min-width: 110px; text-align: center; color: var(--muted); font-size: 0.86rem; font-weight: 800; }

.inventory-card {
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}
.inventory-table { width: 100%; border-collapse: collapse; background: white; }
.inventory-table th {
  padding: 9px 14px;
  color: #516056;
  background: #f5f8f4;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.inventory-table td { padding: 6px 14px; border-bottom: 1px solid #edf1ed; vertical-align: middle; }
.inventory-table tbody tr:last-child td { border-bottom: 0; }
.inventory-table tbody tr:hover { background: #fbfdfb; }
.plant-cell { display: flex; align-items: center; gap: 13px; min-width: 200px; }
.plant-thumb {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--green-700);
  background: var(--green-100);
}
.plant-thumb img { width: 100%; height: 100%; object-fit: cover; }
.plant-thumb svg { width: 27px; height: 27px; }
.plant-category { display: block; color: var(--green-700); font-size: 0.69rem; font-weight: 950; letter-spacing: 0.08em; text-transform: uppercase; }
.plant-variety { display: block; margin-top: 3px; color: var(--green-950); font-size: 1.03rem; font-weight: 950; }
.plant-description { max-width: 330px; margin-top: 1px; color: var(--muted); font-size: 0.78rem; line-height: 1.35; }
.quantity-number { display: block; color: var(--green-950); font-size: 1.08rem; font-weight: 950; }
.stock-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
}
.stock-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.stock-pill.in-stock { color: #176b38; background: #e5f7ea; }
.stock-pill.limited { color: #8b6500; background: #fff3c2; }
.stock-pill.sold-out { color: #9d3131; background: #fde8e8; }
.price-cell strong { display: block; color: var(--green-950); font-size: 1.12rem; }
.price-cell span { color: var(--muted); font-size: 0.75rem; }
.inventory-row[hidden] { display: none !important; }
.inventory-empty, .inventory-no-results {
  padding: 54px 24px;
  text-align: center;
  color: var(--muted);
  background: white;
}
.inventory-empty svg, .inventory-no-results svg { width: 48px; height: 48px; margin: 0 auto 13px; color: var(--green-600); }
.inventory-empty h3, .inventory-no-results h3 { margin: 0; color: var(--green-950); font-size: 1.35rem; }
.inventory-empty p, .inventory-no-results p { margin: 8px auto 0; max-width: 520px; }
.inventory-no-results[hidden] { display: none; }
.inventory-foot {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.78rem;
}
.inventory-foot strong { color: var(--green-800); }

.steps-grid { margin-top: 38px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { padding: 25px; border: 1px solid var(--line); border-radius: 22px; background: #fbfcfa; }
.step-number { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--green-950); background: var(--gold-400); font-weight: 950; }
.step-card h3 { margin: 17px 0 0; color: var(--green-950); }
.step-card p { margin: 8px 0 0; color: var(--muted); font-size: 0.91rem; }

.gallery-section {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 84% 16%, rgba(242,203,80,0.17), transparent 29%),
    radial-gradient(circle at 8% 82%, rgba(38,116,67,0.34), transparent 31%),
    linear-gradient(145deg, #071b10 0%, var(--green-950) 52%, #0c2d1a 100%);
}
.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
}
.gallery-section .section-shell { position: relative; z-index: 1; }
.gallery-section .section-kicker { color: var(--gold-400); }
.gallery-section .section-title { color: white; }
.gallery-section .section-intro { color: rgba(255,255,255,0.7); }

.gallery-carousel {
  width: 100%;
  min-width: 0;
  margin-top: 36px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 34px;
  background: rgba(255,255,255,0.07);
  box-shadow: 0 30px 90px rgba(0,0,0,0.34);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.gallery-stage {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  min-height: 430px;
  aspect-ratio: 16 / 8.8;
  border-radius: 25px;
  background: #020a05;
  isolation: isolate;
  touch-action: pan-y;
}
.gallery-track { position: absolute; inset: 0; }
.gallery-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #07170d;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.045);
  transition: opacity 455ms cubic-bezier(.22,1,.36,1), transform 630ms cubic-bezier(.22,1,.36,1);
}
.gallery-slide.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.gallery-slide.is-missing { display: none; }
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  transition: transform 4.06s linear;
}
.gallery-carousel:not(.is-paused) .gallery-slide.is-active img { transform: scale(1.035); }
.gallery-slide-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2,14,7,0.66) 0%, rgba(2,14,7,0.2) 48%, transparent 72%),
    linear-gradient(0deg, rgba(2,14,7,0.76) 0%, transparent 45%);
}
.gallery-slide-caption {
  position: absolute;
  z-index: 3;
  left: clamp(24px, 4vw, 58px);
  bottom: clamp(62px, 8vw, 92px);
  max-width: min(630px, calc(100% - 130px));
  text-align: left;
  pointer-events: none;
}
.gallery-slide-kicker {
  display: block;
  color: var(--gold-400);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.gallery-slide-caption strong {
  display: block;
  margin-top: 9px;
  color: white;
  font-size: clamp(1.55rem, 4vw, 3.65rem);
  line-height: 1;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.gallery-slide-caption > span:last-child {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,0.72);
  font-size: 0.84rem;
  font-weight: 700;
}
.gallery-stage-top {
  position: absolute;
  z-index: 6;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  pointer-events: none;
}
.gallery-count-pill,
.gallery-view-button,
.gallery-play-toggle {
  border: 1px solid rgba(255,255,255,0.22);
  color: white;
  background: rgba(3,20,10,0.55);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.gallery-count-pill {
  min-height: 42px;
  padding: 8px 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.gallery-count-pill strong { color: var(--gold-400); font-size: 1rem; }
.gallery-view-button {
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  pointer-events: auto;
}
.gallery-view-button svg { width: 17px; height: 17px; }
.gallery-view-button:hover { background: rgba(255,255,255,0.18); }
.gallery-arrow {
  position: absolute;
  z-index: 7;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 50%;
  color: white;
  background: rgba(3,20,10,0.48);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition: transform 160ms ease, background 160ms ease;
}
.gallery-arrow:hover { background: rgba(255,255,255,0.2); transform: translateY(-50%) scale(1.05); }
.gallery-arrow svg { width: 25px; height: 25px; }
.gallery-arrow-prev { left: 18px; }
.gallery-arrow-next { right: 18px; }
.gallery-stage-bottom {
  position: absolute;
  z-index: 7;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.gallery-progress {
  position: relative;
  flex: 1 1 auto;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
}
.gallery-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-400), #fff2a4);
  transform: scaleX(0);
  transform-origin: left center;
}
.gallery-progress span.is-running { animation: galleryProgress 3.85s linear forwards; }
.gallery-carousel.is-paused .gallery-progress span { animation-play-state: paused; }
@keyframes galleryProgress { to { transform: scaleX(1); } }
.gallery-play-toggle {
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
}
.gallery-play-toggle svg { width: 15px; height: 15px; }
.gallery-play-toggle .gallery-play-icon { display: none; }
.gallery-play-toggle[aria-pressed="true"] .gallery-pause-icon { display: none; }
.gallery-play-toggle[aria-pressed="true"] .gallery-play-icon { display: block; }

.gallery-filmstrip-row {
  min-width: 0;
  margin-top: 14px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 10px;
  align-items: center;
}
.gallery-filmstrip {
  min-width: 0;
  max-width: 100%;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 3px 2px 8px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(242,203,80,0.55) rgba(255,255,255,0.08);
}
.gallery-filmstrip::-webkit-scrollbar { height: 7px; }
.gallery-filmstrip::-webkit-scrollbar-track { border-radius: 999px; background: rgba(255,255,255,0.08); }
.gallery-filmstrip::-webkit-scrollbar-thumb { border-radius: 999px; background: rgba(242,203,80,0.55); }
.gallery-thumb {
  position: relative;
  flex: 0 0 clamp(100px, 12vw, 142px);
  aspect-ratio: 16 / 10;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 15px;
  background: var(--green-800);
  opacity: 0.58;
  scroll-snap-align: center;
  transition: opacity 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.gallery-thumb:hover { opacity: 0.9; transform: translateY(-2px); }
.gallery-thumb.is-active { opacity: 1; border-color: var(--gold-400); box-shadow: 0 0 0 3px rgba(242,203,80,0.13); }
.gallery-thumb.is-missing { display: none; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb span {
  position: absolute;
  right: 6px;
  bottom: 6px;
  min-width: 27px;
  padding: 3px 6px;
  border-radius: 999px;
  color: white;
  background: rgba(0,0,0,0.58);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.gallery-filmstrip-arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  color: white;
  background: rgba(255,255,255,0.07);
}
.gallery-filmstrip-arrow:hover { background: rgba(255,255,255,0.14); }
.gallery-filmstrip-arrow:disabled { opacity: 0.28; cursor: default; }
.gallery-filmstrip-arrow svg { width: 22px; height: 22px; }
.gallery-carousel-footer {
  padding: 12px 6px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,0.58);
  font-size: 0.76rem;
}
.gallery-carousel-footer strong { color: rgba(255,255,255,0.86); }
.gallery-empty {
  padding: 54px 24px;
  text-align: center;
  color: rgba(255,255,255,0.68);
}
.gallery-empty strong { display: block; color: white; font-size: 1.2rem; }
.gallery-empty span { display: block; margin-top: 8px; }
.gallery-empty code { color: var(--gold-400); }

.contact-section { background: #edf4ed; }
.contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 20px; }
.location-card, .contact-division-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-sm); }
.location-card h2, .contact-division-card h2 { margin: 0; color: var(--green-950); font-size: 2rem; letter-spacing: -0.04em; }
.location-card p, .contact-division-card p { color: var(--muted); }
.address-block { margin-top: 28px; padding: 20px; border-radius: 18px; color: white; background: var(--green-900); }
.address-block strong { display: block; font-size: 1.1rem; }
.address-block span { display: block; margin-top: 4px; color: rgba(255,255,255,0.72); }
.address-block a { display: inline-block; margin-top: 13px; color: var(--gold-400); font-weight: 900; }
.contact-list { margin-top: 22px; display: grid; gap: 12px; }
.contact-list-item { padding: 18px; display: flex; align-items: center; justify-content: space-between; gap: 15px; border: 1px solid var(--line); border-radius: 18px; }
.contact-list-item .role { display: block; color: var(--green-700); font-size: 0.72rem; font-weight: 950; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-list-item strong { display: block; margin-top: 2px; color: var(--green-950); }
.contact-list-item .mini-actions { display: flex; gap: 7px; }
.mini-action { padding: 8px 10px; border-radius: 999px; text-decoration: none; color: white; background: var(--green-700); font-size: 0.75rem; font-weight: 900; }
.mini-action.text { color: var(--green-950); background: var(--gold-400); }

.site-footer { margin-top: auto; padding: 35px 0 105px; color: rgba(255,255,255,0.67); background: #06170d; }
.footer-shell { width: var(--page); margin: 0 auto; display: flex; justify-content: space-between; gap: 30px; align-items: center; }
.footer-shell strong { color: white; }
.footer-shell a { color: var(--gold-400); }

.mobile-contact-dock {
  position: fixed;
  z-index: 90;
  left: 50%;
  bottom: calc(10px + env(safe-area-inset-bottom));
  width: min(560px, calc(100% - 20px));
  padding: 7px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 18px;
  background: rgba(9,32,20,0.94);
  box-shadow: 0 18px 50px rgba(0,0,0,0.3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateX(-50%);
}
.mobile-contact-dock a { min-height: 48px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 13px; text-decoration: none; font-size: 0.72rem; font-weight: 800; }
.mobile-contact-dock a strong { font-size: 0.9rem; }
.mobile-contact-dock .dock-commercial { color: white; background: var(--green-700); }
.mobile-contact-dock .dock-home { color: var(--green-950); background: var(--gold-400); }

.gallery-modal {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: none;
  padding: max(18px, env(safe-area-inset-top)) max(18px, env(safe-area-inset-right)) max(18px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
  background: rgba(2,10,5,0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.gallery-modal.open { display: grid; place-items: center; animation: galleryModalFade 220ms ease both; }
@keyframes galleryModalFade { from { opacity: 0; } to { opacity: 1; } }
.gallery-modal-shell {
  width: min(1360px, 100%);
  height: min(920px, calc(100vh - 36px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 12px;
}
.gallery-modal-topbar {
  min-height: 42px;
  padding: 0 74px 0 4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.gallery-modal-heading span {
  display: block;
  color: var(--gold-400);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.gallery-modal-heading strong {
  display: block;
  margin-top: 4px;
  color: white;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.15;
}
.gallery-modal-heading small { display: block; margin-top: 3px; color: rgba(255,255,255,0.58); font-weight: 700; }
.gallery-modal-tools { margin-left: auto; display: flex; align-items: center; gap: 7px; }
.gallery-modal-tools button {
  min-width: 42px;
  height: 42px;
  padding: 0 11px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  color: white;
  background: rgba(255,255,255,0.08);
}
.gallery-modal-tools button:hover { background: rgba(255,255,255,0.16); }
.gallery-modal-tools svg { width: 19px; height: 19px; }
.gallery-modal-tools span { font-size: 0.72rem; font-weight: 900; }
.gallery-modal-stage {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
}
.gallery-modal-image-wrap {
  width: calc(100% - 140px);
  height: 100%;
  min-height: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(0,0,0,0.36);
  touch-action: none;
}
.gallery-modal-image-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
  will-change: transform;
  transform-origin: center center;
}
.modal-close {
  position: fixed;
  z-index: 330;
  top: max(14px, env(safe-area-inset-top));
  right: max(14px, env(safe-area-inset-right));
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 3px solid #050505;
  border-radius: 50%;
  color: #050505;
  background: var(--gold-400);
  box-shadow: 0 12px 35px rgba(0,0,0,0.4);
  font-size: 2.2rem;
  font-weight: 950;
  line-height: 1;
}
.modal-close small {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: max-content;
  padding: 5px 8px;
  border-radius: 7px;
  color: white;
  background: #050505;
  font-size: 0.66rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}
.modal-close:hover small,
.modal-close:focus-visible small { opacity: 1; }
.modal-nav {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  color: white;
  background: rgba(255,255,255,0.09);
  transform: translateY(-50%);
}
.modal-nav:hover { background: rgba(255,255,255,0.17); }
.modal-nav svg { width: 25px; height: 25px; }
.modal-prev { left: 0; }
.modal-next { right: 0; }
.gallery-modal-filmstrip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 5px 76px 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.gallery-modal-filmstrip::-webkit-scrollbar { display: none; }
.gallery-modal-thumb {
  flex: 0 0 86px;
  aspect-ratio: 16 / 10;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 11px;
  background: var(--green-800);
  opacity: 0.45;
}
.gallery-modal-thumb:hover { opacity: 0.85; }
.gallery-modal-thumb.is-active { opacity: 1; border-color: var(--gold-400); }
.gallery-modal-thumb.is-missing { display: none; }
.gallery-modal-thumb img { width: 100%; height: 100%; object-fit: cover; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero-shell { grid-template-columns: 1fr; gap: 40px; padding-top: 70px; }
  .hero-side { max-width: 680px; margin-inline: auto; transform: none; }
  .division-grid { margin-top: -100px; }
  .commercial-layout { grid-template-columns: 1fr; }
  .inventory-heading-row { align-items: flex-start; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  :root { --page: min(100% - 24px, 1180px); }
  .announcement { font-size: 0.74rem; }
  .nav-shell { min-height: 66px; }
  .brand img { height: 42px; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links a { text-align: center; }
  .hero-shell { padding: 60px 0 145px; }
  .hero h1 { font-size: clamp(3.1rem, 15vw, 5rem); }
  .division-grid { grid-template-columns: 1fr; margin-top: -95px; }
  .division-card { padding: 27px; }
  .commercial-card-with-plant { min-height: 285px; padding-right: 180px; }
  .commercial-card-plant { right: 10px; width: 165px; }
  .home-card-top { flex-direction: column; align-items: flex-start; }
  .price-burst { position: static; width: auto; height: auto; display: inline-flex; gap: 5px; margin-top: 4px; padding: 8px 12px; border-radius: 999px; transform: none; }
  .price-burst strong { font-size: 1rem; }
  .section { padding: 72px 0; }
  .gallery-carousel { padding: 11px; border-radius: 27px; }
  .gallery-stage { min-height: 360px; border-radius: 20px; }
  .gallery-slide-caption { max-width: calc(100% - 82px); }
  .gallery-arrow { width: 48px; height: 48px; }
  .gallery-arrow-prev { left: 12px; }
  .gallery-arrow-next { right: 12px; }
  .gallery-filmstrip-row { grid-template-columns: 40px minmax(0, 1fr) 40px; }
  .gallery-filmstrip-arrow { width: 40px; height: 40px; }
  .gallery-modal-shell { height: calc(100vh - 24px); }
  .gallery-modal-topbar { align-items: flex-start; }
  .gallery-modal-image-wrap { width: calc(100% - 116px); }
  .commercial-section { padding-top: 86px; }
  .inventory-heading-row { display: block; }
  .inventory-contact { margin-top: 24px; display: inline-block; }
  .inventory-toolbar { grid-template-columns: 1fr; }
  .inventory-count { padding: 3px 0; }
  .inventory-card { overflow: visible; border: 0; box-shadow: none; background: transparent; }
  .inventory-table, .inventory-table tbody, .inventory-table tr, .inventory-table td { display: block; width: 100%; }
  .inventory-table thead { display: none; }
  .inventory-table tbody { display: grid; gap: 13px; }
  .inventory-table tr { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: var(--shadow-sm); }
  .inventory-table tbody tr:hover { background: white; }
  .inventory-table td {
    padding: 12px 16px;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    border-bottom: 1px solid #edf1ed;
  }
  .inventory-table td::before { content: attr(data-label); color: #68756c; font-size: 0.68rem; font-weight: 950; letter-spacing: 0.07em; text-transform: uppercase; }
  .inventory-table td:first-child { display: block; padding: 16px; }
  .inventory-table td:first-child::before { display: none; }
  .inventory-table td:last-child { border-bottom: 0; }
  .plant-description { max-width: none; }
  .stock-pill { width: fit-content; }
  .inventory-foot { display: block; }
  .inventory-foot span { display: block; margin-top: 5px; }
  .steps-grid { grid-template-columns: 1fr; }
  .contact-actions { grid-template-columns: 1fr 1fr; }
  .footer-shell { display: block; text-align: center; }
  .footer-shell p + p { margin-top: 8px; }
  .mobile-contact-dock { display: grid; }
}

@media (max-width: 520px) {
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .commercial-card-with-plant { min-height: 0; padding-right: 27px; padding-bottom: 180px; }
  .commercial-card-plant { right: 12px; bottom: -20px; width: 150px; }
  .button { width: 100%; }
  .hero-trust { display: grid; gap: 8px; }
  .gallery-carousel { margin-top: 26px; padding: 8px; border-radius: 22px; }
  .gallery-stage { min-height: 300px; aspect-ratio: 4 / 3; border-radius: 17px; }
  .gallery-stage-top { top: 10px; left: 10px; right: 10px; }
  .gallery-view-button { width: 42px; height: 42px; min-height: 42px; }
  .gallery-count-pill { min-height: 38px; }
  .gallery-slide-caption { left: 18px; bottom: 60px; max-width: calc(100% - 36px); }
  .gallery-slide-caption strong { font-size: clamp(1.35rem, 8vw, 2rem); }
  .gallery-slide-caption > span:last-child { display: none; }
  .gallery-arrow { top: auto; bottom: 55px; width: 42px; height: 42px; transform: none; }
  .gallery-arrow:hover { transform: scale(1.04); }
  .gallery-arrow-prev { left: auto; right: 60px; }
  .gallery-arrow-next { right: 12px; }
  .gallery-stage-bottom { left: 12px; right: 12px; bottom: 12px; }
  .gallery-play-toggle { width: 38px; height: 38px; min-height: 38px; }
  .gallery-filmstrip-row { grid-template-columns: 1fr; }
  .gallery-filmstrip-arrow { display: none; }
  .gallery-thumb { flex-basis: 92px; border-radius: 12px; }
  .gallery-carousel-footer { display: block; padding-inline: 3px; }
  .gallery-carousel-footer strong { display: block; margin-top: 3px; }
  .gallery-modal { padding: max(10px, env(safe-area-inset-top)) 8px max(10px, env(safe-area-inset-bottom)); }
  .gallery-modal-shell { height: calc(100vh - 20px); gap: 8px; }
  .gallery-modal-topbar { min-height: 38px; padding: 0 62px 0 4px; display: flex; justify-content: flex-end; }
  .gallery-modal-tools { margin-top: 0; margin-left: auto; gap: 5px; }
  .gallery-modal-tools button { min-width: 38px; height: 38px; padding: 0 9px; }
  .gallery-modal-image-wrap { width: 100%; border-radius: 14px; }
  .gallery-modal-stage .modal-nav { top: auto; bottom: 12px; transform: none; width: 44px; height: 44px; background: rgba(2,14,7,0.64); }
  .gallery-modal-stage .modal-prev { left: 12px; }
  .gallery-modal-stage .modal-next { right: 12px; }
  .gallery-modal-filmstrip { padding: 4px 2px 5px; }
  .gallery-modal-thumb { flex-basis: 72px; }
  .modal-close { width: 52px; height: 52px; top: max(8px, env(safe-area-inset-top)); right: max(8px, env(safe-area-inset-right)); }
  .hero-tray-floating { width: min(360px, 92%); margin-bottom: 8px; }
  .hero-panel { padding: 12px; }
  .logo-plate { min-height: 130px; }
  .logo-plate img { max-height: 105px; }
  .hero-contact-widget { padding: 15px; border-radius: 21px; }
  .hero-copy-card { grid-template-columns: 46px minmax(0, 1fr) auto; gap: 10px; padding: 12px; }
  .hero-copy-icon { width: 46px; height: 46px; }
  .hero-copy-icon svg { width: 21px; height: 21px; }
  .hero-copy-action { font-size: 0.64rem; }
  .division-card .button-row { display: grid; grid-template-columns: 1fr 1fr; }
  .division-card .button { width: 100%; padding-inline: 12px; }
  .contact-actions { grid-template-columns: 1fr 1fr; }
  .contact-card-dark { padding: 26px; }
  .contact-card-mike,
  .contact-card-ty { padding: 0; }
  .contact-card-body { padding: 24px 26px 28px; }
  .contact-photo-badge { left: 16px; bottom: 14px; }
  .appointment-notice { align-items: flex-start; }
  .contact-list-item { align-items: flex-start; flex-direction: column; }
  .mini-actions { width: 100%; }
  .mini-action { flex: 1; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gallery-slide img { transform: none !important; }
  .gallery-progress span { animation: none !important; transform: scaleX(1); }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* --- Shared image fallbacks (v20260806-4) --- */
.gold-dot { color: var(--gold-400); }
.logo-fallback { display: none; color: var(--green-800); font-size: 2rem; font-weight: 950; letter-spacing: -0.05em; }
.logo-fallback.show { display: inline; }

/* --- Gallery v2 (v20260806-5) --- */
.gallery-count-pill svg { width: 16px; height: 16px; }
.gallery-slide.enter-right { opacity: 0; transform: scale(1.03) translateX(52px); }
.gallery-slide.enter-left { opacity: 0; transform: scale(1.03) translateX(-52px); }

/* --- Inventory table v2 + plant photo lightbox (v20260806-7) --- */
.inventory-table td + td,
.inventory-table th + th { border-left: 1px solid #eef2ee; }
.inventory-table tbody tr:nth-child(even) { background: #fbfcf9; }
.col-photos { width: 132px; }
.variety-name { display: inline-block; color: var(--green-950); font-size: 0.95rem; font-weight: 900; letter-spacing: -0.015em; }
.featured-chip { display: inline-block; margin-left: 7px; padding: 3px 8px; border: 1px solid #ead17b; border-radius: 999px; color: #5b4500; background: var(--gold-100); font-size: 0.62rem; font-weight: 950; text-transform: uppercase; letter-spacing: 0.06em; vertical-align: 2px; }
.type-pill { display: inline-block; padding: 4px 9px; border-radius: 999px; color: var(--green-900); background: var(--green-100); font-size: 0.65rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; }
.availability-note { max-width: 280px; color: var(--green-950); font-size: 0.85rem; font-weight: 750; line-height: 1.35; }
.photo-strip { position: relative; display: flex; align-items: center; gap: 6px; }
.photo-chip { position: relative; width: 34px; height: 34px; flex: 0 0 auto; overflow: hidden; display: grid; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 9px; color: var(--green-700); background: var(--green-100); cursor: pointer; }
.photo-chip img { width: 100%; height: 100%; object-fit: cover; }
.photo-chip:hover { border-color: var(--green-600); }
.photo-chip:focus-visible { outline: 3px solid var(--green-600); outline-offset: 2px; }
.photo-strip .photo-chip:nth-child(n+4) { display: none; }
.photo-strip[data-overflow]::after {
  content: attr(data-overflow);
  position: absolute;
  right: -4px;
  bottom: -4px;
  padding: 2px 6px;
  border-radius: 999px;
  color: white;
  background: var(--green-800);
  font-size: 0.6rem;
  font-weight: 950;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
  pointer-events: none;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background: rgba(3, 15, 8, 0.93);
}
.photo-lightbox.open { display: flex; }
.photo-lightbox[hidden] { display: none; }
.photo-lightbox figure { margin: 0; max-width: min(1100px, 92vw); text-align: center; }
.photo-lightbox img { max-width: 100%; max-height: 78vh; border-radius: 18px; box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5); }
.photo-lightbox figcaption { margin-top: 13px; color: rgba(255, 255, 255, 0.82); font-size: 0.86rem; font-weight: 800; }
.photo-lightbox-nav {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-50%);
  cursor: pointer;
}
.photo-lightbox-nav:hover { background: rgba(255, 255, 255, 0.22); }
.photo-lightbox-nav.prev { left: 20px; }
.photo-lightbox-nav.next { right: 20px; }
.photo-lightbox-nav svg { width: 24px; height: 24px; }
.photo-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.photo-lightbox-close:hover { background: rgba(255, 255, 255, 0.22); }
@media (max-width: 780px) {
  .availability-note { max-width: none; }
  .inventory-table td + td,
  .inventory-table th + th { border-left: 0; }
  .photo-chip { width: 44px; height: 44px; }
  .photo-lightbox { padding: 14px; }
  .photo-lightbox-nav.prev { left: 8px; }
  .photo-lightbox-nav.next { right: 8px; }
}

/* --- Home garden redesign: Ty profile card + mini steps (build 11) --- */
.home-garden-hero {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}
.contact-card-ty {
  min-height: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.contact-card-ty .contact-card-photo img { object-position: 50% 36%; }
.contact-card-ty:hover .contact-card-photo img { transform: scale(1.025); }
.contact-card-ty .contact-photo-badge { left: auto; right: 20px; }
.ty-price-line {
  margin-top: 18px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  border-radius: 12px;
  color: var(--green-950);
  background: var(--gold-400);
  font-size: 0.8rem;
  font-weight: 850;
}
.ty-price-line strong { font-size: 1.35rem; letter-spacing: -0.03em; }
.home-garden-brief { display: grid; gap: 14px; align-content: start; }
.home-garden-brief .appointment-notice { margin-top: 0; }
.mini-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  counter-reset: ministep;
}
.mini-steps li {
  position: relative;
  padding: 14px 16px 14px 60px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  counter-increment: ministep;
}
.mini-steps li::before {
  content: counter(ministep);
  position: absolute;
  left: 14px;
  top: 50%;
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green-700);
  transform: translateY(-50%);
  font-weight: 950;
}
.mini-steps strong { display: block; color: var(--green-950); font-size: 0.92rem; }
.mini-steps span { display: block; margin-top: 2px; color: var(--muted); font-size: 0.8rem; }
@media (max-width: 980px) {
  .home-garden-hero { grid-template-columns: 1fr; }
}

/* --- Seasonal availability chart (build 16) --- */
.season-wrap { overflow-x: auto; }
.season-table { width: 100%; border-collapse: collapse; min-width: 880px; }
.season-table thead th {
  padding: 11px 5px;
  color: white;
  background: var(--green-800);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-align: center;
}
.season-table thead .season-item-head { text-align: left; padding-left: 16px; }
.season-table thead .now { background: var(--green-600); }
.season-table td { border: 1px solid #e2e9e2; }
.season-item { width: 320px; min-width: 280px; padding: 11px 15px 12px; background: #f4f8f0; vertical-align: top; }
.season-name strong { color: var(--green-950); font-size: 0.96rem; font-weight: 900; letter-spacing: -0.01em; }
.season-desc { margin-top: 2px; color: var(--muted); font-size: 0.76rem; line-height: 1.4; }
.season-note {
  margin-top: 7px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: #6a4c00;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}
.season-note svg { flex: 0 0 auto; width: 13px; height: 13px; margin-top: 2px; fill: #e5b522; }
.season-item .photo-strip { margin-top: 9px; }
.m { min-width: 42px; height: 46px; background: #fbfbf7; }
.m.on { background: #7cc08f; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4); text-align: center; vertical-align: middle; }
.crop-ico {
  display: inline-block;
  background-color: #ffffff;
  background-image: url('crop-icons.webp?v=1');
  background-repeat: no-repeat;
  background-size: 500% 300%;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
}
.m .crop-ico { width: 26px; height: 26px; vertical-align: middle; }
.crop-ico-name { width: 21px; height: 21px; margin-right: 6px; vertical-align: -5px; }
.ci-tomato { background-position: 0% 0%; }
.ci-pepper { background-position: 25% 0%; }
.ci-squash { background-position: 50% 0%; }
.ci-onion { background-position: 75% 0%; }
.ci-cucumber { background-position: 100% 0%; }
.ci-pickle { background-position: 0% 50%; }
.ci-watermelon { background-position: 25% 50%; }
.ci-green-squash { background-position: 50% 50%; }
.ci-yellow-squash { background-position: 75% 50%; }
.ci-eggplant { background-position: 100% 50%; }
.ci-tomatillo { background-position: 0% 100%; }
.ci-strawberry { background-position: 25% 100%; }
.ci-broccoli { background-position: 50% 100%; }
.m.now { background-image: linear-gradient(rgba(38, 116, 63, 0.09), rgba(38, 116, 63, 0.09)); }
.m.on.now { background: #5fb076; }
.month-mini { display: none; }
.season-legend {
  margin-top: 13px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}
.season-legend .swatch { display: inline-block; width: 21px; height: 14px; border: 1px solid #dfe6df; border-radius: 4px; background: #fbfbf7; }
.season-legend .swatch.on { background: #7cc08f; border-color: #6db381; }
.season-legend .swatch-note { margin-left: 8px; }
@media (max-width: 780px) {
  .season-table { min-width: 0; }
  .season-table thead { display: none; }
  .season-table, .season-table tbody, .season-table tr, .season-table td { display: block; width: 100%; }
  .season-row { overflow: hidden; margin-bottom: 12px; border: 1px solid var(--line); border-radius: 15px; background: white; }
  .season-row:last-child { margin-bottom: 0; }
  .season-item { width: auto; min-width: 0; padding: 13px 14px 12px; background: white; }
  .season-table td { border: 0; }
  .season-table td.m { display: none; }
  .month-mini { margin-top: 10px; display: grid; grid-template-columns: repeat(12, 1fr); gap: 3px; }
  .month-mini span {
    display: grid;
    place-items: center;
    height: 27px;
    border-radius: 6px;
    color: #94a096;
    background: #f1f4f0;
    font-size: 0.6rem;
    font-weight: 900;
  }
  .month-mini span.on { color: white; background: #58ab72; }
  .crop-ico-name { width: 21px; height: 21px; }
  .season-legend .swatch-note { margin-left: 0; }
}
