:root {
  --g: #1d8a35;
  --g-l: #25a844;
  --g-d: #146428;
  --g-soft: rgba(29, 138, 53, .1);
  --ink: #142018;
  --muted: #4a6a52;
  --bg: #ffffff;
  --bg-alt: #f0f8f2;
  --surface: #ffffff;
  --line: rgba(29, 138, 53, .16);
  --hero-1: #132e1c;
  --hero-2: #1a3d26;
  --hero-3: #1f4d2e;
  --amber: #f3b13d;
  --fh: "Space Grotesk", system-ui, sans-serif;
  --fb: "Inter", system-ui, sans-serif;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, .08);
  --shadow-md: 0 16px 44px rgba(0, 0, 0, .16);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, .24);
  --r: 8px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--fb);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 138, 53, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 138, 53, .07) 1px, transparent 1px);
  background-size: 64px 56px;
  pointer-events: none;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--g);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--fh);
  line-height: 1.08;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  color: #fff;
  font-size: 5rem;
  font-weight: 700;
}

h2 {
  color: var(--ink);
  font-size: 3rem;
  font-weight: 700;
}

h3 {
  font-size: 1.28rem;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 22px;
  border: 0;
  border-radius: var(--r);
  font-weight: 700;
  font-size: .94rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--g);
  color: #fff;
  box-shadow: 0 8px 26px rgba(29, 138, 53, .28);
}

.btn-primary:hover {
  background: var(--g-l);
  box-shadow: 0 12px 34px rgba(29, 138, 53, .36);
}

.btn-ghost {
  border: 2px solid rgba(255, 255, 255, .56);
  color: #fff;
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

.btn-outline {
  border: 2px solid var(--g);
  color: var(--g);
  background: #fff;
}

.btn-outline:hover {
  background: var(--g);
  color: #fff;
}

.btn-full {
  width: 100%;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--hero-1), var(--hero-2) 60%, var(--hero-3));
  box-shadow: 0 1px 0 rgba(0, 0, 0, .25);
}

.site-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 138, 53, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 138, 53, .08) 1px, transparent 1px);
  background-size: 64px 56px;
  pointer-events: none;
}

.nav-container {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  width: 206px;
  height: 44px;
}

.nav-logo img {
  width: 100%;
  max-height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, .78);
  font-size: .88rem;
  font-weight: 650;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--g-l);
  transition: width .25s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links .nav-cta {
  padding: 9px 18px;
  border-radius: var(--r);
  color: var(--g-d);
  background: #fff;
}

.nav-links .nav-cta::after {
  display: none;
}

.nav-links .nav-cta:hover {
  color: #fff;
  background: var(--g-l);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: 0;
  background: transparent;
}

.hamburger span {
  width: 24px;
  height: 2px;
  display: block;
  border-radius: 4px;
  background: rgba(255, 255, 255, .9);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  position: relative;
  min-height: auto;
  padding-top: 68px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--hero-1), var(--hero-2) 52%, var(--hero-3));
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 138, 53, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 138, 53, .08) 1px, transparent 1px);
  background-size: 64px 56px;
  opacity: .88;
}

.hero-logo-band {
  position: relative;
  z-index: 2;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px max(24px, calc((100vw - 1180px) / 2 + 24px));
  background: #fff;
  border-bottom: 3px solid var(--g);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .12);
}

.hero-logo-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 138, 53, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 138, 53, .06) 1px, transparent 1px);
  background-size: 64px 56px;
  pointer-events: none;
}

.hero-logo-band > * {
  position: relative;
  z-index: 1;
}

.hero-logo-band img {
  width: min(380px, 44vw);
  object-fit: contain;
}

.hero-band-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero-band-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--g-d);
  background: rgba(255, 255, 255, .84);
  font-weight: 750;
  box-shadow: var(--shadow-sm);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  min-height: 620px;
  margin: 0 auto;
  padding: 56px 0 132px;
  display: grid;
  grid-template-columns: 1fr 400px;
  align-items: center;
  gap: 48px;
}

.hero-copy p {
  width: min(650px, 100%);
  margin-top: 24px;
  color: rgba(255, 255, 255, .72);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(to top, rgba(7, 14, 9, .82), transparent);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-card {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--r);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-md);
}

.price-card span {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin-top: 2px;
  color: var(--g);
  font-family: var(--fh);
  font-size: 2.35rem;
  line-height: 1;
}

.price-card small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-weight: 650;
}

.fact-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(16px);
}

.fact-bar div {
  min-height: 96px;
  padding: 18px 14px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.fact-bar div:last-child {
  border-right: 0;
}

.fact-bar strong {
  display: block;
  font-family: var(--fh);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.fact-bar span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .68);
  font-size: .82rem;
  font-weight: 700;
}

.intro-section,
.conditions-section,
.future-section {
  background: var(--bg-alt);
}

.intro-grid,
.specs-grid,
.conditions-grid,
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.intro-grid p,
.spec-copy p,
.conditions-grid p,
.contact-copy p {
  margin-top: 18px;
}

.feature-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature-item {
  min-height: 132px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.feature-item i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: var(--r);
  color: var(--g);
  background: var(--g-soft);
  font-size: 1.1rem;
}

.feature-item span {
  display: block;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}

.gallery-section {
  background: #fff;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 14px;
}

.gallery-card {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: var(--shadow-sm);
}

.gallery-card::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--r);
  color: #fff;
  background: rgba(20, 32, 24, .75);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}

.gallery-card:hover::after,
.gallery-card:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s var(--ease);
}

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

.gallery-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.specs-section {
  background: #fff;
}

.specs-grid {
  align-items: center;
}

.spec-copy {
  max-width: 500px;
}

.spec-copy .btn {
  margin-top: 28px;
}

.spec-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--line);
  box-shadow: var(--shadow-md);
}

.spec-table div {
  min-height: 104px;
  padding: 21px;
  background: #fff;
}

.spec-table span {
  display: block;
  color: var(--muted);
  font-size: .83rem;
  font-weight: 700;
}

.spec-table strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--fh);
  font-size: 1.12rem;
  line-height: 1.25;
}

.dark-section {
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--hero-1), var(--hero-2));
}

.dark-section::before {
  background-image:
    linear-gradient(rgba(29, 138, 53, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 138, 53, .08) 1px, transparent 1px);
}

.section-header-light h2 {
  color: #fff;
}

.section-header-light p {
  margin: 16px auto 0;
  color: rgba(255, 255, 255, .68);
}

.section-header-light .section-label {
  color: var(--g-l);
}

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

.pricing-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .18);
}

.pricing-card-featured {
  border-color: rgba(37, 168, 68, .62);
  background: rgba(29, 138, 53, .18);
}

.pricing-card h3 {
  color: #fff;
}

.pricing-card .price {
  margin-top: 16px;
  color: var(--g-l);
  font-family: var(--fh);
  font-size: 2.55rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-card .price span {
  font-size: 1rem;
  color: rgba(255, 255, 255, .66);
}

.pricing-card p {
  margin-top: 18px;
  color: rgba(255, 255, 255, .72);
}

.pricing-card ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  display: flex;
  gap: 9px;
  color: rgba(255, 255, 255, .82);
  font-size: .94rem;
}

.pricing-card li i {
  color: var(--g-l);
  margin-top: 5px;
}

.calculator {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 220px 220px;
  align-items: end;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r);
  background: rgba(255, 255, 255, .06);
}

.calculator h3 {
  color: #fff;
}

.calculator p {
  margin-top: 7px;
  color: rgba(255, 255, 255, .62);
}

.calculator label {
  color: rgba(255, 255, 255, .82);
  font-size: .86rem;
  font-weight: 700;
}

.calculator select,
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border .2s var(--ease), box-shadow .2s var(--ease);
}

.quote-form textarea {
  resize: vertical;
}

.calculator select:focus,
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--g);
  box-shadow: 0 0 0 4px rgba(29, 138, 53, .14);
}

.calc-result {
  padding: 14px 16px;
  border-radius: var(--r);
  background: #fff;
}

.calc-result span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.calc-result strong {
  display: block;
  color: var(--g);
  font-family: var(--fh);
  font-size: 1.55rem;
  line-height: 1.1;
}

.condition-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.condition-item {
  min-height: 146px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.condition-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--fh);
  font-size: 1.06rem;
}

.condition-item span {
  color: var(--muted);
  font-size: .94rem;
}

.builder-section {
  background: #fff;
}

.builder-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 56px;
  align-items: center;
}

.builder-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg-alt);
  box-shadow: var(--shadow-md);
}

.builder-card img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.builder-since {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--g-d);
  font-family: var(--fh);
  font-size: 1.08rem;
  font-weight: 800;
  text-align: center;
}

.builder-copy p {
  margin-top: 18px;
}

.builder-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.builder-points div {
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg-alt);
}

.builder-points i {
  color: var(--g);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.builder-points span {
  display: block;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.35;
}

.contact-section {
  background: #fff;
}

.contact-grid {
  grid-template-columns: .86fr 1.14fr;
  align-items: center;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-cards a,
.contact-cards div {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg-alt);
}

.contact-cards i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--r);
  color: #fff;
  background: var(--g);
}

.contact-cards span {
  display: grid;
  color: var(--muted);
  font-size: .86rem;
}

.contact-cards strong {
  color: var(--ink);
  font-size: .98rem;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg-alt);
  box-shadow: var(--shadow-md);
}

.quote-form label {
  color: var(--ink);
  font-size: .88rem;
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.hidden-field {
  display: none;
}

.form-success {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 3px 12px;
  align-items: center;
  padding: 16px;
  border-radius: var(--r);
  color: var(--g-d);
  background: rgba(29, 138, 53, .12);
}

.form-success i {
  grid-row: span 2;
  font-size: 1.8rem;
}

.form-success strong,
.form-success span {
  display: block;
}

.future-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.future-card p {
  max-width: 720px;
  margin-top: 10px;
}

.footer {
  padding-top: 64px;
  color: rgba(255, 255, 255, .72);
  background: linear-gradient(135deg, #08120b, #102215);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .7fr .9fr 1fr;
  gap: 44px;
}

.footer-logo {
  width: 230px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer p {
  max-width: 360px;
  color: rgba(255, 255, 255, .65);
}

.footer h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 1rem;
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .68);
  font-size: .92rem;
}

.footer a:hover {
  color: var(--g-l);
}

.footer-bottom {
  margin-top: 46px;
  padding: 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 34px;
  background: rgba(5, 11, 7, .88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  width: min(980px, 100%);
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--r);
  color: #fff;
  background: rgba(255, 255, 255, .1);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--r);
  color: #fff;
  background: var(--g);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 1060px) {
  h1 {
    font-size: 3.8rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  .hero-inner {
    grid-template-columns: 1fr 360px;
    gap: 36px;
  }

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

  .pricing-card {
    min-height: auto;
  }

  .calculator {
    grid-template-columns: 1fr 210px;
  }

  .calc-result {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    height: calc(100vh - 68px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px;
    background: linear-gradient(135deg, var(--hero-1), var(--hero-2));
    transform: translateX(100%);
    transition: transform .28s var(--ease);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    display: block;
    padding: 15px 0;
    font-size: 1.08rem;
  }

  .nav-links .nav-cta {
    margin-top: 12px;
    text-align: center;
  }

  .hero-logo-band {
    align-items: flex-start;
    flex-direction: column;
    min-height: 172px;
  }

  .hero-logo-band img {
    width: min(380px, 100%);
  }

  .hero-band-actions {
    justify-content: flex-start;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 54px 0 138px;
  }

  .hero-media {
    aspect-ratio: 16 / 11;
  }

  .fact-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-grid,
  .specs-grid,
  .conditions-grid,
  .builder-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-panel,
  .condition-list,
  .builder-points {
    grid-template-columns: 1fr;
  }

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

  .future-card {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 620px) {
  .container,
  .nav-container,
  .hero-inner {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 68px 0;
  }

  h1 {
    font-size: 2.42rem;
  }

  h2 {
    font-size: 2rem;
  }

  .nav-logo {
    width: 180px;
  }

  .hero-logo-band {
    gap: 14px;
    padding: 18px 16px;
  }

  .hero-logo-band img {
    width: min(320px, 100%);
  }

  .hero-band-actions {
    width: 100%;
  }

  .hero-band-actions a {
    width: 100%;
    justify-content: center;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-inner {
    padding: 40px 0 116px;
  }

  .hero-copy p {
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero-media {
    aspect-ratio: 4 / 5;
  }

  .fact-bar {
    position: relative;
    margin-top: -96px;
  }

  .fact-bar strong {
    font-size: 1.55rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .gallery-card-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .spec-table,
  .calculator,
  .form-row {
    grid-template-columns: 1fr;
  }

  .quote-form,
  .future-card {
    padding: 22px;
  }

  .price-card strong {
    font-size: 2rem;
  }
}
