* {
  box-sizing: border-box;
}

:root {
  font-synthesis: none;
  --bg: #f4f1eb;
  --paper: #fffdf7;
  --ink: #171715;
  --muted: #6f6b63;
  --line: rgba(23, 23, 21, 0.14);
  --green: #5f7f3a;
  --green-dark: #151512;
  --leaf: #5f7f3a;
  --gold: #a88452;
  --soil: #151512;
  --dark: #151512;
  --shadow: 0 28px 90px rgba(20, 20, 18, 0.18);
  --max: 1220px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Roboto Flex", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.contact-shell-page main {
  background:
    radial-gradient(circle at 12% 18%, rgba(95, 127, 58, 0.12), transparent 30%),
    radial-gradient(circle at 84% 8%, rgba(168, 132, 82, 0.1), transparent 28%),
    linear-gradient(180deg, #fbfaf5 0%, #f4f8ef 58%, #fbfaf5 100%);
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 66px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(21, 21, 18, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.transparent-header-page .site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.transparent-header-page .site-header.is-scrolled,
.transparent-header-page.nav-open .site-header {
  background: rgba(21, 21, 18, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  font-size: 13px;
  color: #fff;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  color: var(--green-dark);
  background: #fff;
  border-radius: 50%;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-text small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.brand-subtitle {
  margin-top: 2px;
  opacity: 0.78;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 600;
}

.site-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
  border-color: rgba(105, 143, 111, 0.78);
  background: var(--green);
}

.header-side {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}

.language-switcher {
  position: relative;
}

.language-switcher {
  display: flex;
  gap: 6px;
}

.language-switcher button {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  background: transparent;
  border-radius: 2px;
  padding: 8px 11px;
  cursor: pointer;
}

.language-switcher button.is-active {
  color: var(--green-dark);
  background: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: min(62svh, 590px);
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  overflow: hidden;
  padding: 118px clamp(18px, 5vw, 72px) 118px;
  color: #fff;
  background: var(--dark);
}

.hero-with-bg {
  min-height: 100svh;
  background:
    linear-gradient(90deg, rgba(8, 10, 8, 0.76) 0%, rgba(12, 15, 12, 0.56) 38%, rgba(13, 16, 13, 0.18) 72%, rgba(13, 16, 13, 0.38) 100%),
    linear-gradient(0deg, rgba(8, 10, 8, 0.54), rgba(8, 10, 8, 0.04) 45%, rgba(8, 10, 8, 0.52)),
    url("../media/greenhouse/hero.jpg") center 52% / cover no-repeat;
}

.hero-with-bg .hero-copy,
.hero-with-bg .hero-title {
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.45);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40vw;
  height: 40vh;
  background: linear-gradient(135deg, transparent, rgba(168, 132, 82, 0.16));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  width: auto;
  max-width: 570px;
  color: rgba(255, 255, 255, 0.72);
}

.hero-copy p {
  margin: 0 0 58px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.27;
}

.hero-title {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-width: 860px;
  text-align: center;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  font-weight: 800;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  margin: 0;
  transform: translateX(-50%);
}

.mouse-icon {
  position: relative;
  display: grid;
  width: 42px;
  height: 70px;
  place-items: start center;
  padding-top: 0;
  border: 2px solid rgba(255, 255, 255, 0.46);
  border-radius: 24px;
}

.mouse-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -34px;
  width: 2px;
  height: 42px;
  background: rgba(255, 255, 255, 0.42);
  transform: translateX(-50%);
}

.mouse-icon i {
  width: 8px;
  height: 8px;
  margin-top: 14px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  border-radius: 50%;
  animation: scrollDot 1.45s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 0.35; }
  45% { opacity: 1; }
  100% { transform: translateY(28px); opacity: 0; }
}

.overline,
.hero-badge,
.card-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-family: "Roboto Flex", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 850;
  line-height: 1.06;
  letter-spacing: 0;
  text-transform: none;
}

.hero-title h1 {
  max-width: 760px;
  margin: 0 auto 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5.6vw, 76px);
  font-weight: 700;
  line-height: 0.98;
}

h1 span {
  color: inherit;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
}

.hero-lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(19px, 2vw, 26px);
  margin: 0 auto 18px;
}

.hero-support {
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.45vw, 22px);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 15px 30px;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.button-green {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.hero-outline {
  min-width: 210px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(18, 18, 15, 0.22);
}

.button-dark {
  color: #fff;
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.button-light {
  color: var(--green-dark);
  background: #fff;
  border-color: #fff;
}

.button-ghost {
  color: inherit;
  background: transparent;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 720px;
  margin: 32px auto 0;
}

.hero-stats div {
  padding: 0 30px;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1.2vw, 19px);
}

.hero-panorama {
  position: relative;
  padding: 0 clamp(18px, 5vw, 72px) 76px !important;
  background: var(--dark);
  overflow: hidden;
}

.hero-panorama img {
  width: min(1380px, 100%);
  height: clamp(300px, 34vw, 460px);
  margin: 0 auto;
  object-fit: cover;
  object-position: center 55%;
  border-radius: 0;
  box-shadow: none;
}

.project-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
}

main > section:not(.hero) {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 4vw, 56px);
}

.section-head,
.split,
.model-grid,
.feature-grid,
.gallery-grid,
.portfolio-hero,
.contact-page,
.site-footer,
.seo-section,
.lead-cta,
.process-grid,
.contact-strip {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 520px;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.split img,
.portfolio-hero img,
.contact-copy img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-list,
.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.intro-list li,
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.intro-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 5px rgba(131, 168, 86, 0.18);
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.model-card,
.feature-card,
.process-card,
.lead-form,
.contact-mini-form,
.contact-cards a,
.contact-cards p,
.gallery-filters,
.contact-info a,
.contact-info p {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(36, 50, 30, 0.06);
}

.model-card {
  overflow: hidden;
}

.model-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.model-body {
  padding: 30px;
}

.model-body h2,
.model-body h3 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(24px, 1.75vw, 30px);
  line-height: 1.12;
  font-weight: 850;
  letter-spacing: 0;
}

.model-body p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.model-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.model-meta span,
.gallery-filters button {
  padding: 8px 12px;
  color: var(--green-dark);
  background: #edf5e7;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.dark-band {
  color: #fff;
  background: var(--green-dark);
}

.dark-band .section-head p,
.dark-band p,
.dark-band li {
  color: rgba(255, 255, 255, 0.75);
}

.dark-band .feature-card {
  color: var(--ink);
}

.dark-band .feature-card h3 {
  color: var(--ink);
}

.dark-band .feature-card p {
  color: var(--muted);
}

.models-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(95, 127, 58, 0.12), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(168, 132, 82, 0.14), transparent 30%),
    linear-gradient(180deg, #fbfaf6 0%, #f3efe7 100%);
}

.models-section .section-head p {
  color: var(--muted);
}

.kit-section {
  background:
    radial-gradient(circle at 14% 14%, rgba(145, 184, 111, 0.28), transparent 34%),
    radial-gradient(circle at 88% 26%, rgba(95, 127, 58, 0.18), transparent 36%),
    linear-gradient(180deg, #f6fbf0 0%, #edf6e6 54%, #f7f8f1 100%);
}

.installation-video-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  background:
    radial-gradient(circle at 14% 14%, rgba(145, 184, 111, 0.28), transparent 34%),
    radial-gradient(circle at 88% 26%, rgba(95, 127, 58, 0.18), transparent 36%),
    linear-gradient(180deg, #f6fbf0 0%, #edf6e6 54%, #f7f8f1 100%);
}

.feature-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.process-card {
  padding: 24px;
}

.feature-card strong,
.process-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
}

.media-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.media-band img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 8px;
}

.reliability-section {
  background: #f6f3ed;
}

.reliability-head {
  width: min(var(--max), 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.reliability-head h2 {
  max-width: 760px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.2vw, 64px);
  font-weight: 700;
  line-height: 1.02;
}

.reliability-grid {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.reliability-card {
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(23, 23, 21, 0.1);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(30, 28, 22, 0.08);
}

.reliability-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 20px;
}

.reliability-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.reliability-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.video-proof {
  margin-top: 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
}

.video-proof-copy {
  width: min(440px, 100%);
  justify-self: end;
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0b120c;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.portfolio-hero,
.contact-page {
  display: block;
  max-width: 980px;
  padding-top: clamp(96px, 11vw, 150px);
  padding-bottom: clamp(86px, 10vw, 140px);
}

.contact-copy {
  max-width: 100%;
}

.contact-copy > p:not(.overline) {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 23px);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(34px, 5vw, 58px);
}

.gallery-filters {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  margin-bottom: 26px;
}

.gallery-filters button {
  cursor: pointer;
}

.gallery-filters button.is-active {
  color: #fff;
  background: var(--green);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #dbe7d5;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(11, 18, 12, 0.9);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 86vw);
  max-height: 84vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox button {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 0;
  color: var(--green-dark);
  background: #fff;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
}

.lightbox-close {
  top: 22px;
  right: 22px;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.lead-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  color: #fff;
  background: var(--green-dark);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 52px);
}

.lead-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.inquiry-section {
  color: #fff;
  background: radial-gradient(circle at 62% 18%, rgba(168, 132, 82, 0.16), transparent 30%), var(--soil);
}

.inquiry-shell {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.9fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.inquiry-copy h2 {
  max-width: 670px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.6vw, 68px);
  font-weight: 700;
  line-height: 0.98;
}

.inquiry-copy p:not(.overline) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.trust-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: #fff;
  font-size: 19px;
}

.inquiry-form {
  display: grid;
  gap: 0;
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 24px;
}

.inquiry-form label {
  color: #fff;
  font-size: 18px;
}

.inquiry-form input {
  min-height: 70px;
  margin-top: 12px;
  border: 0;
  border-radius: 18px;
  padding: 18px 22px;
  font-size: 20px;
}

.inquiry-form .button {
  width: 100%;
  min-height: 70px;
  margin-top: 12px;
  border-radius: 4px;
}

.inquiry-form p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.contact-info {
  display: grid;
  gap: 12px;
}

.contact-info a,
.contact-info p,
.contact-cards a,
.contact-cards p {
  display: grid;
  min-height: 92px;
  align-content: center;
  padding: 22px 24px;
}

.contact-info span,
.contact-cards span,
.company-details span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-cards strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.company-details {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 26px;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(244, 250, 239, 0.72)),
    radial-gradient(circle at 100% 0%, rgba(95, 127, 58, 0.12), transparent 34%);
  border: 1px solid rgba(95, 127, 58, 0.14);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(36, 50, 30, 0.08);
}

.company-details p {
  margin: 0;
}

.company-details strong {
  color: var(--ink);
}

.map-panel {
  display: grid;
  gap: 22px;
  margin-top: 28px;
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(247, 250, 243, 0.78)),
    radial-gradient(circle at 92% 8%, rgba(95, 127, 58, 0.12), transparent 32%);
  border: 1px solid rgba(95, 127, 58, 0.14);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(36, 50, 30, 0.08);
}

.map-panel h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
}

.map-panel iframe {
  width: 100%;
  min-height: clamp(320px, 42vw, 480px);
  border: 0;
  border-radius: 8px;
  filter: saturate(0.92) contrast(0.98);
}

.lead-form,
.contact-mini-form {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 3vw, 38px);
}

.contact-page .lead-form {
  position: sticky;
  top: 110px;
  border-color: rgba(95, 127, 58, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 243, 0.92)),
    radial-gradient(circle at 100% 0%, rgba(95, 127, 58, 0.12), transparent 32%);
  box-shadow: 0 28px 80px rgba(36, 50, 30, 0.1);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
}

fieldset {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

legend {
  padding: 0 8px;
  font-weight: 900;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.35;
}

.consent input {
  width: auto;
  margin-top: 3px;
}

.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  background: var(--green);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.phone-icon {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr;
  gap: 28px;
  padding: 54px max(clamp(18px, 4vw, 56px), calc((100vw - var(--max)) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 18% 8%, rgba(95, 127, 58, 0.26), transparent 30%),
    radial-gradient(circle at 82% 16%, rgba(168, 132, 82, 0.18), transparent 34%),
    linear-gradient(135deg, #11130f 0%, #171a14 48%, #0d0f0c 100%);
}

.site-footer .brand-mark {
  color: var(--green-dark);
}

.site-footer p,
.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin: 8px 0;
}

.site-footer h3 {
  color: #fff;
  font-size: 16px;
}

.seo-section {
  color: var(--muted);
}

.table-wrap {
  width: min(var(--max), 100%);
  margin: 0 auto 18px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.business-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.business-table th,
.business-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.business-table th {
  color: var(--green-dark);
  background: #edf5e7;
  font-size: 13px;
  text-transform: uppercase;
}

.business-table tr:last-child td {
  border-bottom: 0;
}

.source-note {
  width: min(var(--max), 100%);
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-side {
    display: none;
  }

  .site-nav.is-open {
    position: fixed;
    left: 0;
    right: 0;
    top: 73px;
    display: grid;
    padding: 18px;
    background: var(--green-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .split,
  .hero,
  .portfolio-hero,
  .contact-page,
  .lead-cta,
  .inquiry-shell,
  .installation-video-section,
  .video-proof {
    grid-template-columns: 1fr;
  }

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

  .video-proof-copy {
    width: min(var(--max), 100%);
    justify-self: start;
  }

  .feature-grid,
  .process-grid,
  .reliability-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-band,
  .model-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 100svh;
    padding-top: 112px;
    padding-bottom: 104px;
  }

  .hero-title {
    justify-self: start;
  }

  .hero-stats,
  .feature-grid,
  .process-grid,
  .reliability-grid,
  .gallery-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .media-band img {
    height: 240px;
  }
}
