@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* NuGen Casitas logo color system */
  --nugen-blue: #042045;
  --nugen-blue-rgb: 4, 32, 69;
  --nugen-green: #127F38;
  --nugen-green-rgb: 18, 127, 56;
  --nugen-green-hover: #0E6630;
  --nugen-blue-accent: #0B4F8A;
  --nugen-blue-accent-rgb: 11, 79, 138;
  --nugen-blue-accent-hover: #083C6A;
  --nugen-light-bg: #F5F9F8;

  --primary: var(--nugen-blue);
  --primary-rgb: var(--nugen-blue-rgb);
  --secondary: var(--nugen-green);
  --secondary-rgb: var(--nugen-green-rgb);
  --secondary-hover: var(--nugen-green-hover);
  --secondary-light: var(--nugen-light-bg);
  --premium-gold: var(--nugen-blue-accent);
  --premium-gold-rgb: var(--nugen-blue-accent-rgb);
  --premium-gold-soft: var(--nugen-light-bg);
  --accent: var(--nugen-blue-accent);
  --accent-rgb: var(--nugen-blue-accent-rgb);
  --accent-hover: var(--nugen-blue-accent-hover);
  --accent-light: var(--nugen-light-bg);
  
  --ink: var(--nugen-blue);
  --ink-light: #445066;
  --wash: var(--nugen-light-bg);
  --wash-dark: #E8F0EE;
  --white: #FFFFFF;
  --line: rgba(var(--nugen-blue-rgb), 0.10);
  --line-strong: rgba(var(--nugen-blue-rgb), 0.18);
  
  /* Layout */
  --radius: 12px;
  --radius-sm: 6px;
  --radius-header: 8px;
  --radius-card: 12px;
  --radius-section: 14px;
  --radius-media: 12px;
  --max: 1200px;
  --gutter: clamp(20px, 4vw, 56px); /* consistent side margins site-wide */
  --shadow-sm: 0 4px 20px rgba(var(--nugen-blue-rgb), 0.03);
  --shadow-md: 0 10px 40px rgba(var(--nugen-blue-rgb), 0.06);
  --shadow-lg: 0 20px 60px rgba(var(--nugen-blue-rgb), 0.10);
  --transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

:root[data-theme="dark"] {
  --primary: #EAF3FF;
  --primary-rgb: 234, 243, 255;
  --secondary: #127F38;
  --secondary-rgb: 18, 127, 56;
  --secondary-hover: #0E6630;
  --secondary-light: rgba(18, 127, 56, 0.18);
  --premium-gold: #0B4F8A;
  --premium-gold-rgb: 11, 79, 138;
  --premium-gold-soft: rgba(11, 79, 138, 0.20);
  --accent: #7EB7E6;
  --accent-rgb: 126, 183, 230;
  --accent-hover: #A9D4F5;
  --accent-light: rgba(11, 79, 138, 0.22);
  --ink: #F5F9F8;
  --ink-light: #C9D6E2;
  --wash: #071421;
  --wash-dark: #031027;
  --white: #0B1728;
  --line: rgba(234, 243, 255, 0.12);
  --line-strong: rgba(234, 243, 255, 0.22);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.32);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.42);
}

/* Custom overlay scrollbar
   Hidden by default; appears when the mouse is near the right edge.
   Uses CSS transforms for the thumb to avoid layout reflow.           */
.c-scrollbar {
  position: fixed;
  right: 6px;
  top: 0;
  height: 100%;
  width: 10px;
  z-index: 9999;
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}

.c-scrollbar.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.c-scrollbar__track {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
  border-radius: 4px;
  background: rgba(15, 60, 52, 0.1);
  cursor: pointer;
}

.c-scrollbar__thumb {
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 4px;
  background: var(--nugen-green);
  opacity: 0.45;
  cursor: grab;
  transition: opacity 150ms ease, background-color 150ms ease;
  min-height: 36px;
  will-change: transform;
}

.c-scrollbar__thumb:hover {
  opacity: 0.85;
  background: var(--accent);
}

.c-scrollbar.is-dragging .c-scrollbar__thumb {
  opacity: 1;
  background: var(--accent);
  cursor: grabbing;
}

/* Dark mode */
:root[data-theme="dark"] .c-scrollbar__track {
  background: rgba(220, 239, 231, 0.12);
}

:root[data-theme="dark"] .c-scrollbar__thumb {
  background: #EAF3FF;
  opacity: 0.4;
}

:root[data-theme="dark"] .c-scrollbar__thumb:hover,
:root[data-theme="dark"] .c-scrollbar.is-dragging .c-scrollbar__thumb {
  background: var(--accent);
  opacity: 0.9;
}

/* Base Reset & Core Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  scrollbar-width: none; /* Firefox */
}

html::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

body {
  background-color: var(--white);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.15;
}

/* Consistent type scale - defined sizes so every heading level matches
   site-wide instead of falling back to inconsistent browser defaults.
   More specific component rules (hero, .section-head, cards) still win. */
h1 { font-size: clamp(36px, 5.2vw, 56px); line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 4vw, 42px); letter-spacing: -0.015em; }
h3 { font-size: clamp(20px, 2.2vw, 24px); }
h4 { font-size: 16px; line-height: 1.3; }
h5 { font-size: 14px; }
h6 { font-size: 13px; }

p {
  color: var(--ink-light);
  font-weight: 400;
}

/* Reusable uppercase mini-label (replaces ad-hoc inline-styled labels) */
.u-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

/* Layout Utilities */
.container {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section--wash {
  background-color: var(--wash);
}

.section--wash-dark {
  background-color: var(--wash-dark);
}

.eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-head {
  max-width: 800px;
  margin-bottom: 60px;
}

.section-head h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
}

.section-head p {
  font-size: 18px;
  max-width: 650px;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.button--primary {
  background-color: var(--nugen-green);
  color: #FFFFFF;
  box-shadow: 0 8px 30px rgba(var(--nugen-green-rgb), 0.16);
}

.button--primary:hover {
  transform: translateY(-2px);
  background-color: var(--nugen-green-hover);
  box-shadow: 0 12px 35px rgba(var(--nugen-green-rgb), 0.24);
}

:root[data-theme="dark"] .button--primary {
  background-color: var(--nugen-green);
  color: #FFFFFF;
  border-color: rgba(var(--nugen-green-rgb), 0.30);
}

:root[data-theme="dark"] .button--primary:hover {
  background-color: #0E6630;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.32);
}

.button--accent {
  background-color: var(--accent);
  color: #FFFFFF;
  box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.16);
}

.button--accent:hover {
  transform: translateY(-2px);
  background-color: var(--accent-hover);
  box-shadow: 0 12px 35px rgba(var(--accent-rgb), 0.25);
}

.button--outline {
  background-color: #FFFFFF;
  border-color: rgba(var(--nugen-blue-rgb), 0.38);
  color: var(--nugen-blue);
}

.button--outline:hover {
  background-color: var(--nugen-light-bg);
  border-color: var(--nugen-blue-accent);
  color: var(--nugen-blue-accent);
  transform: translateY(-1px);
}

.button--ghost {
  background-color: transparent;
  color: var(--primary);
}

.button--ghost:hover {
  background-color: rgba(15, 60, 52, 0.04);
}

/* Top Strip Info Bar */

/* Language Switcher - lives in the glass navbar now (light background) */
.nav-controls-mount {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.nav-lang-mount {
  display: inline-flex;
}

.nav-slider {
  position: relative;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  height: 32px;
  padding: 3px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
  overflow: hidden;
}

.lang-switcher {
  width: 68px;
}

.lang-btn {
  position: relative;
  z-index: 3;
  height: 24px;
  padding: 0 7px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--ink-light);
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: color 180ms ease;
}

.lang-btn.active {
  color: var(--primary);
}

.nav-slider-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  border-radius: 7px;
  background: var(--accent-light);
  box-shadow: 0 4px 12px rgba(15, 60, 52, 0.12);
  transition: transform 220ms ease, background-color 220ms ease;
  z-index: 1;
}

.lang-switcher.is-es .nav-slider-thumb {
  transform: translateX(100%);
}



/* Header & Sticky Nav */
.site-header {
  position: fixed;
  top: 8px;
  left: 8px;
  right: 8px;
  margin: 0 auto;
  max-width: none;
  z-index: 100;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-header);
  box-shadow: 0 8px 28px rgba(15, 60, 52, 0.13);
  transition: top 260ms ease, opacity 220ms ease, box-shadow 220ms ease;
  will-change: top, opacity;
}

.site-header.is-hidden {
  top: -120px;
  opacity: 0;
  pointer-events: none;
}

/* Glass on a pseudo-element so the header itself does NOT establish a
   containing block (backdrop-filter would trap the fixed mobile menu). */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.46);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  backdrop-filter: blur(22px) saturate(180%);
  z-index: -1;
}

:root[data-theme="dark"] .site-header {
  border-color: rgba(220, 239, 231, 0.16);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.34);
}

:root[data-theme="dark"] .site-header::before {
  background: rgba(10, 18, 16, 0.74);
}

:root[data-theme="dark"] .nav-slider {
  background: rgba(21, 31, 28, 0.82);
  box-shadow: inset 0 1px 0 rgba(220, 239, 231, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }

}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 62px;
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 clamp(14px, 2.4vw, 34px);
  box-sizing: border-box;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* Light/dark header logo swap.
   Light logo has a white background (blends with the light glass header);
   dark logo has a black background (blends with the dark glass header). */
.brand-logo--dark {
  display: none;
}

:root[data-theme="dark"] .brand-logo--light {
  display: none;
}

:root[data-theme="dark"] .brand-logo--dark {
  display: inline-block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-light);
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
}

.site-nav a:hover,
.site-nav a.active,
body[data-page="home"] .site-nav a[href="/"],
body[data-page="home"] .site-nav a[href="index.html"],
body[data-page="models"] .site-nav a[href="/models"],
body[data-page="models"] .site-nav a[href="models.html"],
body[data-page="gallery"] .site-nav a[href="/gallery"],
body[data-page="gallery"] .site-nav a[href="gallery.html"],
body[data-page="about"] .site-nav a[href="/about"],
body[data-page="about"] .site-nav a[href="about.html"],
body[data-page="financing"] .site-nav a[href="/financing"],
body[data-page="financing"] .site-nav a[href="financing.html"],
body[data-page="faq"] .site-nav a[href="/faq"],
body[data-page="faq"] .site-nav a[href="faq.html"],
body[data-page="contact"] .site-nav a[href="/contact"],
body[data-page="contact"] .site-nav a[href="contact.html"] {
  color: var(--primary);
  background-color: rgba(var(--accent-rgb), 0.08);
}

html[data-theme="dark"] .site-nav a:hover,
html[data-theme="dark"] .site-nav a.active,
html[data-theme="dark"] body[data-page="home"] .site-nav a[href="/"],
html[data-theme="dark"] body[data-page="home"] .site-nav a[href="index.html"],
html[data-theme="dark"] body[data-page="models"] .site-nav a[href="/models"],
html[data-theme="dark"] body[data-page="models"] .site-nav a[href="models.html"],
html[data-theme="dark"] body[data-page="gallery"] .site-nav a[href="/gallery"],
html[data-theme="dark"] body[data-page="gallery"] .site-nav a[href="gallery.html"],
html[data-theme="dark"] body[data-page="about"] .site-nav a[href="/about"],
html[data-theme="dark"] body[data-page="about"] .site-nav a[href="about.html"],
html[data-theme="dark"] body[data-page="financing"] .site-nav a[href="/financing"],
html[data-theme="dark"] body[data-page="financing"] .site-nav a[href="financing.html"],
html[data-theme="dark"] body[data-page="faq"] .site-nav a[href="/faq"],
html[data-theme="dark"] body[data-page="faq"] .site-nav a[href="faq.html"],
html[data-theme="dark"] body[data-page="contact"] .site-nav a[href="/contact"],
html[data-theme="dark"] body[data-page="contact"] .site-nav a[href="contact.html"] {
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.18);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--primary);
  position: absolute;
  left: 10px;
  top: 21px;
  transition: var(--transition);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--primary);
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

.menu-toggle[aria-expanded="true"] span {
  background-color: transparent;
}
.menu-toggle[aria-expanded="true"] span::before {
  transform: rotate(45deg);
  top: 0;
}
.menu-toggle[aria-expanded="true"] span::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Home Hero Section */
.hero {
  position: relative;
  background-color: var(--wash);
  padding: 120px 0 90px;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: calc(82vh - 80px);
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.06) 0%, rgba(255,255,255,0) 70%);
  z-index: 1;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__content h1 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero__content h1 span {
  color: var(--accent);
}

.hero__content p {
  font-size: 19px;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero__features {
  display: flex;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.hero__feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.hero__feat-item::before {
  content: "\2713";
  color: var(--accent);
  font-weight: 800;
}

.hero__visual {
  position: relative;
}

.hero__image-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  transform: rotate(1deg);
  transition: var(--transition);
}

.hero__image-wrapper:hover {
  transform: rotate(0deg) scale(1.01);
}

.hero__badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--primary);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--premium-gold);
}

.hero__badge strong {
  display: block;
  font-size: 20px;
  font-family: 'Outfit', sans-serif;
  color: var(--premium-gold);
}

.hero__badge span {
  font-size: 13px;
  opacity: 0.8;
}

/* Quick Info Strip */
.quick-strip {
  background-color: transparent;
  padding: 0 16px;
  position: relative;
  z-index: 10;
  margin-top: -65px; /* Pulls the bar up to float and overlap the hero bottom boundary */
}

.quick-strip__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  background: rgba(252, 250, 246, 0.85); /* Canvas-colored semi-transparent glass */
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(15, 60, 52, 0.08); /* Forest green hairline border */
  border-radius: 16px;
  padding: 35px 40px;
  box-shadow: 0 20px 45px rgba(15, 60, 52, 0.06);
}

.quick-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  cursor: default;
}

.quick-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--accent-light);
  border: 1px solid rgba(var(--accent-rgb), 0.24);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-icon-svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-item:hover .quick-item__icon {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(15, 60, 52, 0.15);
}

.quick-item:hover .quick-icon-svg {
  color: #FFFFFF;
}

.quick-item__text h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.quick-item__text p {
  font-size: 14px;
}

/* Expandable Grid / Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 60, 52, 0.15);
}

.feature-card__number {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 20px;
  display: inline-block;
  opacity: 0.8;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
}

/* About page visual advantage map */
.section--why-graphic {
  scroll-margin-top: 120px;
  background:
    linear-gradient(180deg, rgba(250, 249, 246, 0) 0%, rgba(250, 249, 246, 0.72) 100%);
}

.why-graphic__head {
  text-align: center;
  margin: 0 auto 44px;
}

.why-graphic {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px) minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 22px;
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
}

.why-graphic::before {
  content: "";
  position: absolute;
  inset: 42px 14%;
  border: 1px solid rgba(15, 60, 52, 0.08);
  border-radius: 8px;
  pointer-events: none;
}

.why-graphic__center {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  height: 420px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(15, 60, 52, 0.12);
  box-shadow: var(--shadow-lg);
  background: var(--primary);
}

.why-graphic__center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

.why-graphic__center::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 26, 24, 0) 42%, rgba(17, 26, 24, 0.72) 100%);
  pointer-events: none;
}

.why-graphic__center-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 74px;
  z-index: 1;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}

.why-graphic__use-row {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.why-graphic__use-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.why-graphic__node {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: auto auto;
  gap: 4px 16px;
  align-content: center;
  min-height: 178px;
  padding: 22px;
  border: 1px solid rgba(15, 60, 52, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.why-graphic__node::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  border-radius: 6px;
  pointer-events: none;
}

.why-graphic__icon {
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent);
}

.why-graphic__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-graphic__node strong {
  align-self: end;
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  font-size: 20px;
  line-height: 1.1;
}

.why-graphic__node > span:last-child {
  align-self: start;
  color: var(--ink-light);
  font-size: 13px;
  font-weight: 700;
}

.why-graphic__node--speed,
.why-graphic__node--flex {
  transform: translateX(18px);
}

.why-graphic__node--design,
.why-graphic__node--guide {
  transform: translateX(-18px);
}

.why-legacy-grid[hidden] {
  display: none !important;
}

html[data-theme="dark"] main .section--why-graphic {
  background:
    radial-gradient(circle at 50% 20%, rgba(var(--accent-rgb), 0.08), transparent 34%),
    linear-gradient(180deg, #031027 0%, #0B1728 100%);
}

html[data-theme="dark"] main .why-graphic::before {
  border-color: rgba(var(--accent-rgb), 0.14);
}

html[data-theme="dark"] main .why-graphic__node {
  background:
    linear-gradient(145deg, rgba(18, 39, 31, 0.96), rgba(10, 24, 19, 0.98));
  border-color: rgba(var(--accent-rgb), 0.26);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] main .why-graphic__node::after {
  border-color: rgba(var(--accent-rgb), 0.18);
}

html[data-theme="dark"] main .why-graphic__icon {
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent-hover);
  box-shadow: inset 0 0 0 1px rgba(var(--accent-rgb), 0.18);
}

html[data-theme="dark"] main .why-graphic__node strong {
  color: var(--nugen-light-bg);
}

html[data-theme="dark"] main .why-graphic__node > span:last-child {
  color: rgba(247, 243, 234, 0.68);
}

html[data-theme="dark"] main .why-graphic__center {
  border-color: rgba(var(--accent-rgb), 0.28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
}

html[data-theme="dark"] main .why-graphic__center::after {
  background:
    linear-gradient(180deg, rgba(4, 14, 11, 0.06) 20%, rgba(4, 14, 11, 0.88) 100%),
    linear-gradient(90deg, rgba(4, 14, 11, 0.36), transparent 42%, rgba(4, 14, 11, 0.30));
}

html[data-theme="dark"] main .why-graphic__center-label {
  color: var(--nugen-light-bg);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

html[data-theme="dark"] main .why-graphic__use-row span {
  background: rgba(7, 20, 16, 0.58);
  border-color: rgba(247, 243, 234, 0.28);
  color: var(--nugen-light-bg);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* Modular Home Catalog cards */
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.product-card {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 60, 52, 0.18);
}

.product-card__gallery {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.product-card__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: var(--transition);
}

.product-card:hover .product-card__gallery img {
  transform: scale(1.05);
}

.product-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--primary);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card__body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card__header {
  margin-bottom: 16px;
}

.product-card__header h3 {
  font-size: 24px;
  margin-bottom: 4px;
}

.product-card__specs-row {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--ink-light);
  margin-bottom: 16px;
  font-weight: 500;
}

.product-card__specs-row span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-card__specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 24px;
}

.product-card__spec-item {
  background-color: var(--wash);
  padding: 12px;
  text-align: center;
}

.product-card__spec-item span {
  display: block;
  font-size: 11px;
  color: var(--ink-light);
  text-transform: uppercase;
  margin-bottom: 2px;
  font-weight: 600;
}

.product-card__spec-item strong {
  font-size: 14px;
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
}

.product-card__desc {
  font-size: 15px;
  color: var(--ink-light);
  margin-bottom: 24px;
  line-height: 1.5;
}

.product-card__footer {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

/* Process Timelines style */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  position: relative;
  margin-top: 40px;
}

.process-step {
  background-color: var(--white);
  padding: 26px;
  border-radius: var(--radius-card);
  border: 1px solid var(--line-strong);
  position: relative;
  box-shadow: 0 12px 28px rgba(15, 60, 52, 0.055);
  overflow: hidden;
}

.process-step__number {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background-color: var(--accent-light);
  border: 1px solid rgba(var(--accent-rgb), 0.24);
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.process-step h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
}

/* Testimonial Staging Gallery Grid */
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-content__visual img {
  width: 100%;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.split-content__text h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 20px;
}

.split-content__text p {
  font-size: 16px;
  margin-bottom: 24px;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 14px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--ink-light);
  font-weight: 500;
}

.checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
  font-size: 16px;
}

/* Models page quick nav */
.model-nav {
  position: sticky;
  top: 80px;
  z-index: 80;
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.model-nav__inner {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  overflow-x: auto;
  white-space: nowrap;
}

.model-nav a {
  padding: 8px 20px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  background-color: var(--white);
}

.model-nav a:hover,
.model-nav a.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Model Detail Sections */
.model-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 140px;
}

.model-detail:last-child {
  border-bottom: none;
}

.model-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: start;
}

.model-showcase {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.model-showcase__main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  height: 400px;
}

.model-showcase__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.model-showcase__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.model-showcase__thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  height: 110px;
  transition: var(--transition);
}

.model-showcase__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.model-showcase__thumb:hover,
.model-showcase__thumb.active {
  border-color: var(--accent);
}

.model-info h2 {
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 8px;
}

.model-info__headline {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}

.model-info__desc {
  font-size: 16px;
  margin-bottom: 30px;
}

.model-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.model-specs-table tr {
  border-bottom: 1px solid var(--line);
}

.model-specs-table tr:last-child {
  border-bottom: none;
}

.model-specs-table td {
  padding: 14px 20px;
  font-size: 14px;
}

.model-specs-table td:first-child {
  font-weight: 700;
  color: var(--primary);
  width: 40%;
  background-color: var(--wash);
}

.model-specs-table td:last-child {
  font-weight: 500;
  color: var(--ink);
  background-color: var(--white);
}

.model-features-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.model-features-chips span {
  background-color: var(--accent-light);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
}

/* Interactive Add-ons Configurator styles */
.builder-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.builder-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.builder-group {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.builder-group h2 {
  font-size: 22px;
  margin-bottom: 10px;
  border-bottom: 2px solid var(--accent-light);
  padding-bottom: 10px;
}

.builder-group__subtitle {
  font-size: 14px;
  color: var(--ink-light);
  margin-bottom: 24px;
}

/* Model Radio Selector Grid */
.builder-model-selector {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.builder-model-option {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.builder-model-option:hover {
  border-color: rgba(15, 60, 52, 0.3);
  background-color: var(--wash);
}

.builder-model-option.active {
  border-color: var(--primary);
  background-color: rgba(var(--accent-rgb), 0.08);
}

.builder-model-option__info h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.builder-model-option__info p {
  font-size: 13px;
}

.builder-model-option__radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.builder-model-option.active .builder-model-option__radio {
  border-color: var(--primary);
}

.builder-model-option.active .builder-model-option__radio::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--primary);
  border-radius: 50%;
}

/* Add-ons list selector styling */
.addons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.addon-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  padding-right: 20px;
  transition: var(--transition);
}

.addon-card:hover {
  border-color: rgba(15, 60, 52, 0.3);
}

.addon-card.active {
  background-color: rgba(var(--accent-rgb), 0.08);
  border-color: var(--primary);
}

.addon-card__visual {
  height: 90px;
  overflow: hidden;
}

.addon-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.addon-card__info {
  padding: 16px 20px;
}

.addon-card__info h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.addon-card__info p {
  font-size: 13px;
}

.addon-card__check {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 2px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.addon-card.active .addon-card__check {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
}

.addon-card.active .addon-card__check::after {
  content: "\2713";
  font-weight: 800;
  font-size: 14px;
}

/* Configurator summary sidebar panel */
.builder-sidebar {
  position: sticky;
  top: 140px;
  background-color: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.builder-sidebar h2 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-strong);
}

.summary-details {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
}

.summary-row--model {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.summary-row--addon {
  color: var(--ink-light);
  padding-left: 10px;
  border-left: 2px solid var(--accent);
}

.summary-row--empty {
  color: var(--ink-light);
  font-style: italic;
}

.summary-total {
  border-top: 1px solid var(--line-strong);
  padding-top: 16px;
  margin-bottom: 24px;
}

.summary-total h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.summary-total p {
  font-size: 13px;
}

/* Contact/Inquiry forms */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-info h2 {
  font-size: 36px;
}

.contact-info__intro {
  font-size: 17px;
}

.contact-lines {
  display: grid;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item__icon {
  min-width: 76px;
  width: auto;
  height: 44px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  background-color: var(--accent-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.contact-item__text h3 {
  font-size: 15px;
  margin-bottom: 2px;
}

.contact-item__text p,
.contact-item__text a {
  font-size: 15px;
  color: var(--ink-light);
}

.contact-item__text a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.form-panel {
  background-color: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-panel h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.form-panel__subtitle {
  font-size: 14px;
  color: var(--ink-light);
  margin-bottom: 28px;
}

.lead-form {
  display: grid;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field--full {
  grid-column: span 2;
}

.field label {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.field input,
.field select,
.field textarea {
  background-color: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  min-height: 48px;
  padding: 0 16px;
  font-size: 15px;
  transition: var(--transition);
}

.field textarea {
  min-height: 120px;
  padding: 12px 16px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 60, 52, 0.08);
}

.form-status {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

/* FAQ Accordion */
body[data-page="faq"] main > .section:not(.cta-band) {
  background: var(--wash);
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 850px;
  margin: 0 auto;
}

.faq-list details {
  background-color: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(15, 60, 52, 0.08);
  transition: var(--transition);
}

.faq-list details[open] {
  border-color: var(--accent);
  box-shadow: 0 18px 48px rgba(15, 60, 52, 0.12);
}

.faq-list summary {
  padding: 24px 30px;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: var(--transition);
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--accent);
  transition: var(--transition);
}

.faq-list details[open] summary::after {
  content: "-";
  transform: translateY(-50%) rotate(180deg);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  padding: 0 30px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-light);
}

:root[data-theme="dark"] body[data-page="faq"] main > .section:not(.cta-band) {
  background: #031027;
}

:root[data-theme="dark"] .faq-list details {
  background: #0B1728;
  border-color: rgba(220, 239, 231, 0.2);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

:root[data-theme="dark"] .faq-list details[open] {
  border-color: rgba(var(--accent-rgb), 0.72);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.38);
}

:root[data-theme="dark"] .faq-list summary {
  color: #EAF3FF;
}

:root[data-theme="dark"] .faq-list p {
  color: #C9D6E2;
}

.hero--compact {
  overflow-x: hidden;
}

.hero--compact h1,
.hero--compact p,
.faq-list summary,
.faq-list p {
  overflow-wrap: anywhere;
}

/* Financing Page Details */
.financing-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.financing-card {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.financing-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.financing-card p {
  font-size: 14px;
}

/* Call to Action Band Section */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, #03162F 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.05) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(30px, 5vw, 44px);
  margin-bottom: 16px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 36px;
}

/* Footer style */
.site-footer {
  background:
    radial-gradient(circle at 8% 0%, rgba(var(--accent-rgb), 0.10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--nugen-light-bg) 100%);
  color: var(--nugen-blue);
  padding: clamp(48px, 6vw, 72px) 0 0;
  border-top: 1px solid rgba(7, 29, 53, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.site-footer h3 {
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 16px;
}

.site-footer h4 {
  color: var(--secondary);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.site-footer p {
  color: #4a5d69;
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-links span {
  color: var(--nugen-blue);
  font-size: 14px;
  transition: var(--transition);
}

.footer-links span {
  color: #4a5d69;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(7, 29, 53, 0.10);
  background: rgba(7, 29, 53, 0.025);
  color: #536573;
  padding: 30px 0;
  font-size: 13px;
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

html[data-theme="dark"] .site-footer,
html[data-theme="dark"] body[data-page="home"] .site-footer.wire-footer {
  background:
    radial-gradient(circle at 8% 0%, rgba(var(--accent-rgb), 0.16), transparent 34%),
    linear-gradient(180deg, #0B1728 0%, #031027 100%);
  color: rgba(247, 243, 234, 0.78);
  border-top-color: rgba(247, 243, 234, 0.12);
  box-shadow: inset 0 1px 0 rgba(247, 243, 234, 0.06);
}

html[data-theme="dark"] .site-footer h3 {
  color: var(--nugen-light-bg);
}

html[data-theme="dark"] .site-footer h4,
html[data-theme="dark"] body[data-page="home"] .site-footer h4 {
  color: var(--accent);
}

html[data-theme="dark"] .site-footer p,
html[data-theme="dark"] .footer-links a,
html[data-theme="dark"] body[data-page="home"] .site-footer p,
html[data-theme="dark"] body[data-page="home"] .footer-links a,
html[data-theme="dark"] body[data-page="home"] .footer-bottom {
  color: rgba(247, 243, 234, 0.72);
}

html[data-theme="dark"] .footer-links a:hover,
html[data-theme="dark"] body[data-page="home"] .footer-links a:hover {
  color: var(--accent);
}

html[data-theme="dark"] .footer-bottom {
  border-top-color: rgba(247, 243, 234, 0.10);
  background: rgba(247, 243, 234, 0.035);
  color: rgba(247, 243, 234, 0.62);
}

html[data-theme="dark"] .wire-footer__social a {
  border-color: rgba(var(--accent-rgb), 0.42);
  color: var(--accent);
}

/* Floating WhatsApp Widget */
.whatsapp-widget {
  display: none !important;
}

.whatsapp-widget:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
}

.whatsapp-widget svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}


/* Animations */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* Responsive Breakpoints & Mobile First adjustments */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero__content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__features {
    justify-content: center;
  }
  .hero__image-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
  .split-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-graphic {
    grid-template-columns: 1fr 1fr;
  }
  .why-graphic::before {
    inset: 36px 8%;
  }
  .why-graphic__center {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 360px;
    order: -1;
  }
  .why-graphic__node--speed,
  .why-graphic__node--flex,
  .why-graphic__node--design,
  .why-graphic__node--guide {
    transform: none;
  }
  .model-grid, .contact-grid, .builder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .builder-sidebar {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(var(--max), calc(100% - 32px));
  }

  .section {
    padding: 60px 0;
  }

  .hero--compact {
    padding: 112px 0 48px !important;
  }

  .hero--compact h1 {
    font-size: clamp(32px, 9vw, 44px) !important;
    line-height: 1.08;
  }

  .hero--compact p {
    font-size: 16px !important;
    line-height: 1.65;
  }

  .site-header.is-hidden {
    top: -120px;
    opacity: 0;
    pointer-events: none;
  }
  .site-nav {
    display: none; /* Hide default nav, shown via mobile overlay */
  }
  .menu-toggle {
    display: block;
  }
  .brand-logo {
    height: 42px;
  }
  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 88px;
    left: 8px;
    right: 8px;
    bottom: 14px;
    background: rgba(255, 255, 255, 0.97);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    backdrop-filter: blur(22px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-header);
    box-shadow: 0 16px 48px rgba(15, 60, 52, 0.22);
    padding: 28px 20px;
    gap: 12px;
    z-index: 95;
    animation: slideDown 250ms ease-out forwards;
  }
  .site-nav.is-open a {
    font-size: 20px;
    width: 100%;
    text-align: center;
    padding: 12px;
  }
  .why-graphic__head {
    margin-bottom: 28px;
  }
  .why-graphic {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .why-graphic::before {
    display: none;
  }
  .why-graphic__center {
    height: 330px;
  }
  .why-graphic__center-label,
  .why-graphic__use-row {
    right: 88px;
  }
  .why-graphic__center-label {
    bottom: 112px;
    font-size: 18px;
  }
  .why-graphic__node {
    min-height: 116px;
    padding: 18px;
    grid-template-columns: 48px 1fr;
  }
  .why-graphic__icon {
    width: 46px;
    height: 46px;
  }
  .why-graphic__icon svg {
    width: 24px;
    height: 24px;
  }
  .why-graphic__node strong {
    font-size: 18px;
  }
  .why-graphic__use-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .header-actions .button {
    display: none; /* Hide pricing request button in mobile header */
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom__inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .faq-list {
    gap: 14px;
  }
  .faq-list h2 {
    font-size: 22px !important;
  }
  .faq-list summary {
    padding: 20px 52px 20px 18px;
    font-size: 16px;
    line-height: 1.35;
  }
  .faq-list summary::after {
    right: 20px;
  }
  .faq-list p {
    padding: 0 18px 20px;
    font-size: 14px;
  }
  .field--full {
    grid-column: span 1;
  }
  .addon-card {
    grid-template-columns: 1fr auto;
    padding: 16px;
  }
  .addon-card__visual {
    display: none;
  }
  .whatsapp-widget {
    bottom: 20px;
    right: 20px;
  }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Full-Screen Video Hero Background */
.hero--video-bg {
  position: relative;
  min-height: 85vh;
  padding: 180px 0 120px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--primary); /* Fallback deep forest green */
}

/* Beautiful bottom gradient mask that seamlessly fades video into the background */
.hero--video-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px; /* Tall, premium vertical fade */
  background: linear-gradient(to bottom, transparent 0%, rgba(252, 250, 246, 0.4) 40%, var(--background) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero__video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 300ms ease, transform 300ms ease;
  will-change: opacity, transform;
}

.hero__video-next {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px) scale(1.015);
  transition:
    opacity 900ms cubic-bezier(0.22, 0.7, 0.22, 1),
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
  visibility: hidden;
  pointer-events: none;
  will-change: opacity, transform;
}

.hero__video-next.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.hero__video-transition {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px) scale(1.02);
  transition:
    opacity 520ms ease,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  visibility: hidden;
  pointer-events: none;
  will-change: opacity, transform;
}

.hero__video-transition.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.hero__video-transition.is-settling {
  opacity: 0;
  transform: translateY(-8px) scale(1.01);
  visibility: visible;
  transition-duration: 520ms;
  transition-timing-function: ease-out;
}

.hero__video-bg.is-crossfading-out {
  opacity: 0.12;
  transform: translateY(-4px) scale(1.006);
  transition:
    opacity 900ms cubic-bezier(0.22, 0.7, 0.22, 1),
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__video-bg.is-swapping-out {
  opacity: 0;
  transform: translateY(-16px);
  transition-duration: 250ms;
  transition-timing-function: ease-in;
}

.hero__video-bg.is-swapping-in {
  transition-duration: 300ms;
  transition-timing-function: ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .hero__video-bg,
  .hero__video-next,
  .hero__video-transition {
    transition: none !important;
  }
}

.hero__overlay {
  display: none;
}

.hero__content-wrapper {
  position: relative;
  z-index: 4;
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin-left: auto;
  margin-right: auto;
}

.hero__text-panel {
  max-width: 820px;
  text-align: left;
}

.hero__text-panel h1 {
  font-size: clamp(36px, 5.2vw, 60px);
  line-height: 1.08;
  margin-bottom: 24px;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.hero__text-panel p {
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   Bento Grid & E-commerce Product Page Layout (models.html)
   ========================================================================== */

/* Bento Grid Layout for Models Page */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 40px auto 60px;
}

.bento-card {
  position: relative;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  background-color: var(--primary);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.bento-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bento-card:hover .bento-card__bg {
  transform: scale(1.04);
}

.bento-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.18) 62%, rgba(0, 0, 0, 0.68) 100%);
}

.bento-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 36px;
  z-index: 3;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bento-card__badge {
  align-self: flex-start;
  background-color: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.bento-card__title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}

.bento-card__subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.bento-card__cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.bento-card:hover .bento-card__cta {
  gap: 12px;
}

/* E-commerce Single Product View Layout */
#models-detail-viewer {
  padding-bottom: 60px;
}

body[data-page="models"].is-model-detail-active #models-detail-viewer {
  padding-bottom: 24px;
}

body[data-page="models"].is-model-detail-active #model-inquiry {
  padding-top: 44px;
  scroll-margin-top: 128px;
}

body[data-page="models"].is-model-detail-active #model-inquiry .split-content {
  align-items: start;
}

body[data-page="models"].is-model-detail-active #model-inquiry .split-content__text {
  padding-top: 8px;
}

.back-nav-bar {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.3s ease;
}

.back-button:hover {
  color: var(--accent);
}

.product-detail-view {
  display: none;
}

.product-detail-view.active {
  display: block;
}

.single-product-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: start;
}

.gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  height: 480px;
  position: relative;
  background: var(--wash);
  margin-bottom: 16px;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.gallery-main img[src*="floorplan-2-5d"] {
  object-fit: contain;
  background: var(--wash);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-thumb-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  height: 95px;
  transition: all 0.3s ease;
  background-color: var(--wash);
}

.gallery-thumb-item--variation,
.gallery-thumb-item--supporting {
  display: none;
}

.gallery-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb-item:hover,
.gallery-thumb-item.active {
  border-color: var(--accent);
  box-shadow: 0 4px 10px rgba(var(--accent-rgb), 0.15);
}

.product-info h2 {
  font-size: clamp(32px, 4vw, 42px);
  margin: 0 0 10px 0;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.product-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
}

.product-specs-summary {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-light);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-light);
  margin-bottom: 30px;
}

/* Interactive Tabs Component */
.product-tabs {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  margin-bottom: 36px;
  box-shadow: var(--shadow-sm);
}

.tab-headers {
  display: flex;
  background: var(--wash);
  border-bottom: 1px solid var(--line);
}

.tab-button {
  flex: 1;
  padding: 16px 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: var(--ink-light);
  border: none;
  background: transparent;
  cursor: pointer;
  border-right: 1px solid var(--line);
  transition: all 0.3s ease;
}

.tab-button:last-child {
  border-right: none;
}

.tab-button:hover {
  background-color: rgba(var(--accent-rgb), 0.05);
  color: var(--primary);
}

.tab-button.active {
  background: var(--white);
  color: var(--primary);
  border-bottom: 3px solid var(--accent);
}

.tab-panels {
  padding: 24px;
}

.tab-panel-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-panel-content.active {
  display: block;
}

.tab-panel-content ul {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tab-panel-content li {
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.5;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .bento-card {
    height: 340px;
  }
  .single-product-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gallery-main {
    height: 380px;
  }
  .gallery-thumb-item {
    height: 75px;
  }
}

/* Product Configurator Module */
.product-configurator {
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}

.config-price-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px dashed var(--line);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.config-price-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink-light);
}

.config-price-value {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  max-width: 62%;
  text-align: right;
  line-height: 1.1;
}

.config-request-pricing {
  width: 100%;
  justify-content: center;
  margin-bottom: 22px;
}

.config-group {
  margin-bottom: 20px;
}

.config-group:last-child {
  margin-bottom: 0;
}

.config-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

/* Config Grid Buttons/Pills */
.config-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.config-option-pill {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.config-option-pill:hover {
  border-color: var(--accent);
  background-color: rgba(var(--accent-rgb), 0.03);
}

.config-option-pill.active {
  border-color: var(--accent);
  background-color: rgba(var(--accent-rgb), 0.08);
  box-shadow: 0 2px 6px rgba(var(--accent-rgb), 0.10);
}

.config-option-pill--quote .config-option-sub {
  color: var(--secondary);
  font-weight: 800;
}

.config-option-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.config-option-sub {
  font-size: 11px;
  color: var(--ink-light);
  margin-top: 2px;
}

/* Color Swatches List */
.config-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.config-swatch-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  transition: all 0.25s ease;
  user-select: none;
}

.config-swatch-item:hover {
  border-color: var(--accent);
}

.config-swatch-item.active {
  border-color: var(--accent);
  background: rgba(var(--accent-rgb), 0.05);
}

.config-swatch-color {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: inline-block;
}

/* Checkbox/Upgrade row */
.config-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.config-checkbox-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.config-checkbox-label:hover {
  border-color: var(--accent);
}

.config-checkbox-label.active {
  border-color: var(--accent);
  background-color: rgba(var(--accent-rgb), 0.06);
}

.config-checkbox-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.config-checkbox-left input {
  accent-color: var(--accent);
  cursor: pointer;
}

.config-checkbox-price {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}

@media (max-width: 576px) {
  .config-options-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   BorderGlow Component Styles - Adapted for Vanilla HTML/CSS/JS
   ========================================================================== */
.border-glow-card {
  --edge-proximity: 0;
  --cursor-angle: 45deg;
  --edge-sensitivity: 30;
  --color-sensitivity: calc(var(--edge-sensitivity) + 20);
  --border-radius: var(--radius, 12px);
  --glow-padding: 40px;
  --cone-spread: 25;
  --fill-opacity: 0.15;

  position: relative;
  border-radius: var(--border-radius) !important;
  isolation: isolate;
  transform: translate3d(0, 0, 0.01px);
  display: grid;
  border: 1px solid var(--line) !important;
  background: var(--card-bg, var(--nugen-green));
  overflow: visible !important;
  box-shadow: var(--shadow-sm);
}

.border-glow-card::before,
.border-glow-card::after,
.border-glow-card > .edge-light {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transition: opacity 0.25s ease-out;
  z-index: -1;
}

.border-glow-card:not(:hover):not(.sweep-active)::before,
.border-glow-card:not(:hover):not(.sweep-active)::after,
.border-glow-card:not(:hover):not(.sweep-active) > .edge-light {
  opacity: 0;
  transition: opacity 0.75s ease-in-out;
}

/* colored mesh-gradient border */
.border-glow-card::before {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--card-bg, var(--nugen-green)) 0 100%) padding-box,
    linear-gradient(rgb(255 255 255 / 0%) 0% 100%) border-box,
    var(--gradient-one, radial-gradient(at 80% 55%, var(--accent) 0px, transparent 50%)) border-box,
    var(--gradient-two, radial-gradient(at 69% 34%, var(--nugen-green) 0px, transparent 50%)) border-box,
    var(--gradient-three, radial-gradient(at 8% 6%, var(--nugen-blue-accent) 0px, transparent 50%)) border-box,
    var(--gradient-four, radial-gradient(at 41% 38%, var(--nugen-green) 0px, transparent 50%)) border-box,
    var(--gradient-five, radial-gradient(at 86% 85%, var(--nugen-green-hover) 0px, transparent 50%)) border-box,
    var(--gradient-six, radial-gradient(at 82% 18%, var(--accent) 0px, transparent 50%)) border-box,
    var(--gradient-seven, radial-gradient(at 51% 4%, var(--nugen-blue-accent) 0px, transparent 50%)) border-box,
    var(--gradient-base, linear-gradient(var(--accent) 0 100%)) border-box;

  opacity: calc((var(--edge-proximity) - var(--color-sensitivity)) / (100 - var(--color-sensitivity)));

  mask-image:
    conic-gradient(
      from var(--cursor-angle) at center,
      black calc(var(--cone-spread) * 1%),
      transparent calc((var(--cone-spread) + 15) * 1%),
      transparent calc((100 - var(--cone-spread) - 15) * 1%),
      black calc((100 - var(--cone-spread)) * 1%)
    );
  -webkit-mask-image:
    conic-gradient(
      from var(--cursor-angle) at center,
      black calc(var(--cone-spread) * 1%),
      transparent calc((var(--cone-spread) + 15) * 1%),
      transparent calc((100 - var(--cone-spread) - 15) * 1%),
      black calc((100 - var(--cone-spread)) * 1%)
    );
}

/* colored mesh-gradient background fill near edges */
.border-glow-card::after {
  border: 1px solid transparent;
  background:
    var(--gradient-one, radial-gradient(at 80% 55%, var(--accent) 0px, transparent 50%)) padding-box,
    var(--gradient-two, radial-gradient(at 69% 34%, var(--nugen-green) 0px, transparent 50%)) padding-box,
    var(--gradient-three, radial-gradient(at 8% 6%, var(--nugen-blue-accent) 0px, transparent 50%)) padding-box,
    var(--gradient-four, radial-gradient(at 41% 38%, var(--nugen-green) 0px, transparent 50%)) padding-box,
    var(--gradient-five, radial-gradient(at 86% 85%, var(--nugen-green-hover) 0px, transparent 50%)) padding-box,
    var(--gradient-six, radial-gradient(at 82% 18%, var(--accent) 0px, transparent 50%)) padding-box,
    var(--gradient-seven, radial-gradient(at 51% 4%, var(--nugen-blue-accent) 0px, transparent 50%)) padding-box,
    var(--gradient-base, linear-gradient(var(--accent) 0 100%)) padding-box;

  mask-image:
    linear-gradient(to bottom, black, black),
    radial-gradient(ellipse at 50% 50%, black 40%, transparent 65%),
    radial-gradient(ellipse at 66% 66%, black 5%, transparent 40%),
    radial-gradient(ellipse at 33% 33%, black 5%, transparent 40%),
    radial-gradient(ellipse at 66% 33%, black 5%, transparent 40%),
    radial-gradient(ellipse at 33% 66%, black 5%, transparent 40%),
    conic-gradient(from var(--cursor-angle) at center, transparent 5%, black 15%, black 85%, transparent 95%);
  -webkit-mask-image:
    linear-gradient(to bottom, black, black),
    radial-gradient(ellipse at 50% 50%, black 40%, transparent 65%),
    radial-gradient(ellipse at 66% 66%, black 5%, transparent 40%),
    radial-gradient(ellipse at 33% 33%, black 5%, transparent 40%),
    radial-gradient(ellipse at 66% 33%, black 5%, transparent 40%),
    radial-gradient(ellipse at 33% 66%, black 5%, transparent 40%),
    conic-gradient(from var(--cursor-angle) at center, transparent 5%, black 15%, black 85%, transparent 95%);

  mask-composite: subtract, add, add, add, add, add;
  -webkit-mask-composite: source-out, destination-over, destination-over, destination-over, destination-over, destination-over;
  opacity: calc(var(--fill-opacity, 0.15) * (var(--edge-proximity) - var(--color-sensitivity)) / (100 - var(--color-sensitivity)));
  mix-blend-mode: soft-light;
}

/* outer glow layer */
.border-glow-card > .edge-light {
  inset: calc(var(--glow-padding) * -1);
  pointer-events: none;
  z-index: 1;

  mask-image:
    conic-gradient(
      from var(--cursor-angle) at center, black 2.5%, transparent 10%, transparent 90%, black 97.5%
    );
  -webkit-mask-image:
    conic-gradient(
      from var(--cursor-angle) at center, black 2.5%, transparent 10%, transparent 90%, black 97.5%
    );
  mix-blend-mode: plus-lighter;
}

.border-glow-card > .edge-light::before {
  content: "";
  position: absolute;
  inset: var(--glow-padding);
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px var(--glow-color, hsl(203deg 86% 38% / 100%)),
    inset 0 0 1px 0 var(--glow-color-60, hsl(203deg 86% 38% / 60%)),
    inset 0 0 3px 0 var(--glow-color-50, hsl(203deg 86% 38% / 50%)),
    inset 0 0 6px 0 var(--glow-color-40, hsl(203deg 86% 38% / 40%)),
    inset 0 0 15px 0 var(--glow-color-30, hsl(203deg 86% 38% / 30%)),
    inset 0 0 25px 2px var(--glow-color-20, hsl(203deg 86% 38% / 20%)),
    inset 0 0 50px 2px var(--glow-color-10, hsl(203deg 86% 38% / 10%)),
    0 0 1px 0 var(--glow-color-60, hsl(203deg 86% 38% / 60%)),
    0 0 3px 0 var(--glow-color-50, hsl(203deg 86% 38% / 50%)),
    0 0 6px 0 var(--glow-color-40, hsl(203deg 86% 38% / 40%)),
    0 0 15px 0 var(--glow-color-30, hsl(203deg 86% 38% / 30%)),
    0 0 25px 2px var(--glow-color-20, hsl(203deg 86% 38% / 20%)),
    0 0 50px 2px var(--glow-color-10, hsl(203deg 86% 38% / 10%));
}

.border-glow-inner {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  z-index: 1;
}

.bento-card .border-glow-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}



/* ============================================================
   BORDER-GLOW MERGE OVERRIDES (Claude Code, 2026-05-27)
   Extends Antigravity's .border-glow-card system to light cards
   (process steps, feature cards, container panel) and refines the
   glow to sit on the edge + OUTSIDE only - never washing over text.
   ============================================================ */

/* Light-surface cards keep their white background under the glow */
.process-step.border-glow-card,
.feature-card.border-glow-card,
.form-panel.border-glow-card {
  --card-bg: var(--white);
}

/* Disable the inner soft-light fill so it never tints/blurs content */
.border-glow-card::after { display: none !important; }

/* Outward-only halo - remove the inset shadows that bled over content */
.border-glow-card > .edge-light::before {
  box-shadow:
    0 0 1px  0  var(--glow-color,    hsl(203deg 86% 38% / 100%)),
    0 0 3px  0  var(--glow-color-60, hsl(203deg 86% 38% / 60%)),
    0 0 6px  0  var(--glow-color-50, hsl(203deg 86% 38% / 50%)),
    0 0 12px 0  var(--glow-color-40, hsl(203deg 86% 38% / 40%)),
    0 0 22px 1px var(--glow-color-30, hsl(203deg 86% 38% / 30%)),
    0 0 38px 2px var(--glow-color-20, hsl(203deg 86% 38% / 20%)),
    0 0 60px 4px var(--glow-color-10, hsl(203deg 86% 38% / 10%)) !important;
}

/* ============================================================
   STRUCTURE BENTO GRID - 2x2 staggered (zigzag) frame detail images
   ============================================================ */
.structure-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-bottom: 52px; /* room for GSAP parallax to shift images down */
}
.structure-bento img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: block;
  background: var(--white);
  will-change: transform; /* hint browser for GPU compositing */
}
/* zigzag + parallax are GSAP-owned - no CSS transform here */
@media (max-width: 768px) {
  .structure-bento { gap: 12px; padding-bottom: 0; }
}

/* Included in Every Model Panel */
.inclusions-graphic-card img[src*="nugen-inclusions-standard"],
.inclusions-graphic-card > .checklist,
.inclusions-graphic-card .border-glow-inner > .checklist {
  display: none !important;
}

.inclusions-graphic-card {
  padding: 14px !important;
  overflow: hidden !important;
}

.inclusion-sections {
  display: grid;
  gap: 18px;
}

.inclusion-section {
  background: rgba(248, 247, 241, 0.94);
  border: 1px solid rgba(15, 60, 52, 0.12);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 10px 22px rgba(15, 60, 52, 0.06);
  will-change: transform, opacity;
}

.inclusion-section__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.inclusion-section__mark {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent);
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.inclusion-section__header h4 {
  margin: 0;
  color: var(--primary);
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.inclusion-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.inclusion-pill-grid span,
.inclusion-promise-grid span {
  min-width: 0;
  border: 1px solid rgba(15, 60, 52, 0.1);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.25;
  padding: 11px 16px;
}

.standard-feature-list {
  display: grid;
  gap: 0;
}

.standard-feature-list div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 13px 0;
  border-top: 1px solid rgba(15, 60, 52, 0.1);
}

.standard-feature-list div:first-child {
  border-top: 0;
  padding-top: 0;
}

.standard-feature-list div:last-child {
  padding-bottom: 0;
}

.standard-feature-list strong {
  color: var(--primary);
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-transform: uppercase;
}

.standard-feature-list span {
  color: var(--ink-light);
  font-size: 13px;
  line-height: 1.4;
}

.inclusion-section--promise {
  background: linear-gradient(135deg, rgba(15, 60, 52, 0.96), rgba(8, 43, 37, 0.96));
}

.inclusion-section--promise .inclusion-section__mark {
  background: var(--accent);
  color: #FFFFFF;
}

.inclusion-section--promise .inclusion-section__header h4 {
  color: var(--white);
}

.inclusion-promise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.inclusion-promise-grid span {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 13px 15px;
}

.inclusion-promise-grid strong {
  display: block;
  color: var(--accent);
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 5px;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .standard-feature-list div {
    grid-template-columns: 1fr;
  }

  .inclusions-graphic-card {
    padding: 16px !important;
  }

  .inclusion-section {
    padding: 16px 16px;
  }

  .inclusion-pill-grid span,
  .inclusion-promise-grid span {
    font-size: 11px;
    padding: 7px 8px;
  }
}

@media (min-width: 900px) {
  .inclusion-pill-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .standard-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
  }

  .standard-feature-list div:nth-child(2) {
    border-top: 0;
    padding-top: 0;
  }

  .inclusion-promise-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .inclusion-promise-grid span {
    padding: 8px;
  }
}

.inclusions-panel {
  background: var(--wash);
  border: 1px solid var(--line);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.inclusions-panel__title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 14px;
}
.inclusions-panel__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  margin: 0;
}
@media (max-width: 480px) {
  .inclusions-panel__list { grid-template-columns: 1fr; }
}

/* Sticky Left Visual Column */
.product-visuals-column {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  align-self: start;
}
@media (max-width: 991px) {
  .product-visuals-column {
    position: static;
    display: contents;
  }

  .model-showcase {
    order: 1;
  }

  .product-info {
    order: 2;
  }

  .inclusions-graphic-card {
    order: 3;
  }
}

/* FAQ contrast hardening for the navbar theme toggle */
body[data-page="faq"] main > .section:not(.cta-band) {
  background-color: var(--nugen-light-bg) !important;
}

body[data-page="faq"] .faq-list details {
  background-color: #FFFFFF !important;
  border-color: rgba(15, 60, 52, 0.2) !important;
  opacity: 1 !important;
  transform: none !important;
  translate: none !important;
}

body[data-page="faq"] .faq-list details[open] {
  border-color: var(--accent) !important;
}

body[data-page="faq"] .faq-list summary {
  color: var(--nugen-blue) !important;
}

body[data-page="faq"] .faq-list p {
  color: #445066 !important;
}

body[data-page="faq"] .faq-list h2,
body[data-page="faq"] .faq-list summary,
body[data-page="faq"] .faq-list p {
  opacity: 1 !important;
  transform: none !important;
  translate: none !important;
}

html[data-theme="dark"] body[data-page="faq"] main > .section:not(.cta-band) {
  background-color: #031027 !important;
}

html[data-theme="dark"] body[data-page="faq"] .faq-list details {
  background-color: #0B1728 !important;
  border-color: rgba(220, 239, 231, 0.24) !important;
}

html[data-theme="dark"] body[data-page="faq"] .faq-list details[open] {
  border-color: rgba(var(--accent-rgb), 0.8) !important;
}

html[data-theme="dark"] body[data-page="faq"] .faq-list summary {
  color: #EAF3FF !important;
}

html[data-theme="dark"] body[data-page="faq"] .faq-list p {
  color: #C9D6E2 !important;
}

/* ============================================================
   PREMIUM MODELS CATALOG REFRESH (models.html)
   ============================================================ */
body[data-page="models"] .hero--compact {
  display: none;
}

body[data-page="models"] {
  background: var(--nugen-light-bg);
}

body[data-page="models"] .site-header {
  border-color: rgba(16, 44, 36, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

body[data-page="models"] .site-nav a[href="/models"] {
  color: var(--nugen-blue);
  background: rgba(var(--accent-rgb), 0.13);
}

body[data-page="models"] .site-nav a[href="/models"]::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent-hover);
}

html[data-theme="dark"] body[data-page="models"] .site-nav a[href="/models"] {
  color: var(--accent-hover);
  background: rgba(var(--accent-rgb), 0.18);
}

body[data-page="models"] #models-catalog.models-catalog-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 150px 0 54px;
  background:
    radial-gradient(circle at 15% 8%, rgba(var(--accent-rgb), 0.16), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(16, 44, 36, 0.08), transparent 32%),
    radial-gradient(circle at 52% 100%, rgba(198, 143, 67, 0.08), transparent 28%),
    linear-gradient(180deg, var(--nugen-light-bg) 0%, var(--nugen-light-bg) 58%, var(--nugen-light-bg) 100%);
}

body[data-page="models"] #models-catalog.models-catalog-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(16, 44, 36, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 44, 36, 0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 78%, transparent 100%);
  pointer-events: none;
}

body[data-page="models"] .models-catalog-header {
  max-width: 1040px;
  margin: 0 auto 44px;
  text-align: center;
}

body[data-page="models"] .models-catalog-header h1,
body[data-page="models"] .models-catalog-header h2 {
  margin: 0;
  color: var(--nugen-blue);
  font-family: 'Outfit', sans-serif;
  font-size: clamp(40px, 5.4vw, 64px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: 0;
}

body[data-page="models"] .models-catalog-header p {
  max-width: 680px;
  margin: 18px auto 0;
  color: rgba(16, 44, 36, 0.68);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
}

body[data-page="models"] .bento-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
  margin: 0 auto;
}

body[data-page="models"] #models-catalog .container {
  width: min(1500px, calc(100% - 56px));
}

body[data-page="models"] .bento-card {
  height: 520px;
  --border-radius: 16px;
  --card-bg: #0B1728;
  border-radius: 16px !important;
  border: 1px solid rgba(16, 44, 36, 0.10) !important;
  background: #0B1728;
  box-shadow: 0 18px 45px rgba(16, 44, 36, 0.12) !important;
  outline: none;
  --glow-color: hsl(203deg 86% 38% / 100%);
  --glow-color-60: hsl(203deg 86% 38% / 54%);
  --glow-color-50: hsl(203deg 86% 38% / 42%);
  --glow-color-40: hsl(203deg 86% 38% / 34%);
  --glow-color-30: hsl(203deg 86% 38% / 24%);
  --glow-color-20: hsl(203deg 86% 38% / 16%);
  --glow-color-10: hsl(203deg 86% 38% / 8%);
}

body[data-page="models"] .bento-card:hover,
body[data-page="models"] .bento-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(var(--accent-rgb), 0.56) !important;
  box-shadow: 0 26px 62px rgba(16, 44, 36, 0.18), 0 0 0 1px rgba(var(--accent-rgb), 0.18) !important;
}

body[data-page="models"] .bento-card:focus-visible {
  box-shadow: 0 26px 62px rgba(16, 44, 36, 0.18), 0 0 0 3px rgba(var(--accent-rgb), 0.5) !important;
}

body[data-page="models"] .bento-card:hover .bento-card__bg {
  transform: scale(1.04);
}

body[data-page="models"] .bento-card__bg img {
  filter: saturate(1.04) contrast(1.03);
}

body[data-page="models"] .bento-card__overlay {
  background: linear-gradient(
    to top,
    rgba(5, 20, 16, 0.82) 0%,
    rgba(5, 20, 16, 0.48) 42%,
    rgba(5, 20, 16, 0.10) 100%
  );
}

body[data-page="models"] .bento-card__content {
  top: 0;
  bottom: auto;
  height: 100%;
  padding: 30px;
  gap: 12px;
  color: var(--nugen-light-bg);
  justify-content: flex-end;
}

body[data-page="models"] .bento-card__badge {
  margin-bottom: auto;
  padding: 10px 18px;
  background: var(--accent-hover);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(var(--accent-rgb), 0.28);
  font-size: 11px;
  letter-spacing: 0.06em;
}

body[data-page="models"] .bento-card__title {
  max-width: 560px;
  color: #FFFFFF;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.02;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
}

body[data-page="models"] .bento-card__subtitle {
  display: none;
}

body[data-page="models"] .bento-card__description {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.48;
}

body[data-page="models"] .bento-card__specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

body[data-page="models"] .bento-card__specs > span {
  min-width: 0;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

body[data-page="models"] .spec-label {
  display: block;
  margin-bottom: 4px;
  color: var(--accent-hover);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="models"] .bento-card__specs strong {
  display: block;
  overflow-wrap: anywhere;
  color: rgba(250, 252, 248, 0.9);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.15;
}

body[data-page="models"] .bento-card__dimensions {
  display: none;
}

body[data-page="models"] .bento-card__cta {
  align-self: flex-start;
  justify-content: center;
  min-height: 40px;
  margin-top: 4px;
  padding: 10px 16px;
  border: 1px solid rgba(var(--accent-rgb), 0.5);
  border-radius: 10px;
  color: var(--accent-hover);
  font-size: 13px;
  letter-spacing: 0.02em;
}

body[data-page="models"] .bento-card__cta span + span {
  display: inline;
}

body[data-page="models"] .bento-card:hover .bento-card__cta,
body[data-page="models"] .bento-card:focus-visible .bento-card__cta {
  gap: 8px;
  transform: translateY(-2px);
  background: var(--accent-hover);
  color: var(--nugen-blue);
  border-color: var(--accent-hover);
}

html[data-theme="dark"] body[data-page="models"] {
  background: #031027;
}

html[data-theme="dark"] body[data-page="models"] #models-catalog.models-catalog-shell {
  background:
    radial-gradient(circle at 16% 14%, rgba(var(--accent-rgb), 0.16), transparent 30%),
    radial-gradient(circle at 84% 28%, rgba(69, 139, 125, 0.16), transparent 34%),
    radial-gradient(circle at 54% 92%, rgba(198, 143, 67, 0.1), transparent 28%),
    linear-gradient(145deg, #031027 0%, #0B1728 48%, #031027 100%);
}

html[data-theme="dark"] body[data-page="models"] #models-catalog.models-catalog-shell::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
}

html[data-theme="dark"] body[data-page="models"] .models-catalog-header h1,
html[data-theme="dark"] body[data-page="models"] .models-catalog-header h2 {
  color: var(--nugen-light-bg);
}

html[data-theme="dark"] body[data-page="models"] .models-catalog-header p {
  color: rgba(226, 237, 231, 0.78);
}

html[data-theme="dark"] body[data-page="models"] .bento-card {
  border-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36) !important;
}

html[data-theme="dark"] body[data-page="models"] .bento-card:hover,
html[data-theme="dark"] body[data-page="models"] .bento-card:focus-visible {
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(var(--accent-rgb), 0.18) !important;
}

html[data-theme="dark"] body[data-page="models"] .bento-card__overlay {
  background:
    linear-gradient(180deg, rgba(6, 18, 14, 0.1) 0%, rgba(6, 18, 14, 0.24) 34%, rgba(5, 13, 11, 0.76) 70%, rgba(5, 12, 10, 0.96) 100%),
    linear-gradient(90deg, rgba(5, 13, 11, 0.72) 0%, rgba(5, 13, 11, 0.14) 52%, rgba(5, 13, 11, 0.42) 100%);
}

@media (max-width: 991px) {
  body[data-page="models"] .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  body[data-page="models"] .bento-card {
    height: 500px;
  }

  body[data-page="models"] .bento-card__content {
    padding: 24px;
  }

  body[data-page="models"] .bento-card__specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body[data-page="models"] #models-catalog.models-catalog-shell {
    padding: 124px 0 72px;
  }

  body[data-page="models"] #models-catalog .container {
    width: min(1500px, calc(100% - 32px));
  }

  body[data-page="models"] .models-catalog-header {
    margin-bottom: 30px;
    text-align: left;
  }

  body[data-page="models"] .bento-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body[data-page="models"] .bento-card {
    height: 480px;
    border-radius: 20px !important;
  }

  body[data-page="models"] .bento-card__content {
    padding: 22px;
  }

  body[data-page="models"] .bento-card__title {
    font-size: clamp(28px, 8vw, 34px);
  }

  body[data-page="models"] .bento-card__description {
    font-size: 14px;
  }

  body[data-page="models"] .bento-card__specs > span {
    padding: 10px 11px;
  }
}

/* ============================================================
   DARK MODE CONTENT POLISH - PAGE CONTENT ONLY, NAVBAR UNTOUCHED
   ============================================================ */
:root[data-theme="dark"] {
  --dark-bg: #031027;
  --dark-surface: #0B1728;
  --dark-surface-2: #0F2238;
  --cream: var(--nugen-light-bg);
  --muted-cream: rgba(var(--nugen-blue-rgb), 0.06);
  --gold: var(--accent);
  --gold-bright: var(--accent-hover);
}

html[data-theme="dark"] body {
  background:
    radial-gradient(circle at 20% 10%, rgba(var(--accent-rgb), 0.10), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(77, 128, 96, 0.12), transparent 32%),
    #031027;
  color: var(--nugen-light-bg);
}

html[data-theme="dark"] main {
  background:
    radial-gradient(circle at 20% 10%, rgba(var(--accent-rgb), 0.10), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(77, 128, 96, 0.12), transparent 32%),
    #031027;
  color: var(--nugen-light-bg);
}

html[data-theme="dark"] main .section {
  background:
    linear-gradient(180deg, rgba(7, 20, 16, 0.96), rgba(9, 24, 19, 0.98)),
    #031027;
}

html[data-theme="dark"] main .section--wash,
html[data-theme="dark"] main .section:nth-of-type(even):not(.cta-band) {
  background:
    radial-gradient(circle at 12% 16%, rgba(var(--accent-rgb), 0.07), transparent 26%),
    linear-gradient(180deg, #0B1728 0%, #031027 100%);
}

html[data-theme="dark"] main .section--wash-dark,
html[data-theme="dark"] main .cta-band {
  background:
    radial-gradient(circle at 78% 14%, rgba(77, 128, 96, 0.16), transparent 30%),
    linear-gradient(145deg, #0F2238 0%, #031027 100%);
}

html[data-theme="dark"] main h1,
html[data-theme="dark"] main h2,
html[data-theme="dark"] main h3,
html[data-theme="dark"] main h4,
html[data-theme="dark"] main h5,
html[data-theme="dark"] main h6,
html[data-theme="dark"] main .section-head h2,
html[data-theme="dark"] main .split-content__text h2 {
  color: var(--nugen-light-bg);
}

html[data-theme="dark"] main p,
html[data-theme="dark"] main .section-head p,
html[data-theme="dark"] main .split-content__text p,
html[data-theme="dark"] main .checklist li,
html[data-theme="dark"] main .contact-info__intro,
html[data-theme="dark"] main .contact-item__text p,
html[data-theme="dark"] main .contact-item__text a,
html[data-theme="dark"] main .form-panel__subtitle,
html[data-theme="dark"] main .builder-group__subtitle,
html[data-theme="dark"] main .summary-row--empty,
html[data-theme="dark"] main .summary-row--addon {
  color: rgba(247, 243, 234, 0.72);
}

html[data-theme="dark"] main strong,
html[data-theme="dark"] main .eyebrow,
html[data-theme="dark"] main .checklist li::before,
html[data-theme="dark"] main .faq-list summary::after {
  color: var(--accent);
}

html[data-theme="dark"] main .hero {
  background-color: #031027;
}

html[data-theme="dark"] main .hero::before {
  inset: 0;
  top: 0;
  right: 0;
  width: auto;
  height: auto;
  background:
    linear-gradient(
      90deg,
      rgba(4, 14, 11, 0.92) 0%,
      rgba(4, 14, 11, 0.78) 38%,
      rgba(4, 14, 11, 0.38) 70%,
      rgba(4, 14, 11, 0.18) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(4, 14, 11, 0.28) 0%,
      rgba(4, 14, 11, 0.10) 45%,
      rgba(4, 14, 11, 0.78) 100%
    );
  z-index: 3;
}

html[data-theme="dark"] main .hero--video-bg::after {
  background: linear-gradient(to bottom, transparent 0%, rgba(7, 20, 16, 0.08) 42%, rgba(7, 20, 16, 0.52) 100%);
  z-index: 3;
}

html[data-theme="dark"] main .hero--video-bg::before {
  background:
    linear-gradient(
      90deg,
      rgba(4, 14, 11, 0.66) 0%,
      rgba(4, 14, 11, 0.50) 34%,
      rgba(4, 14, 11, 0.18) 66%,
      rgba(4, 14, 11, 0.04) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(4, 14, 11, 0.10) 0%,
      rgba(4, 14, 11, 0.02) 45%,
      rgba(4, 14, 11, 0.42) 100%
    );
}

html[data-theme="dark"] main .hero__grid,
html[data-theme="dark"] main .hero__content-wrapper,
html[data-theme="dark"] main .hero__content,
html[data-theme="dark"] main .hero__text-panel {
  position: relative;
  z-index: 4;
}

html[data-theme="dark"] main .hero__content h1,
html[data-theme="dark"] main .hero__text-panel h1,
html[data-theme="dark"] main .hero h1 {
  color: var(--nugen-light-bg);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
}

html[data-theme="dark"] main .hero__content h1 span,
html[data-theme="dark"] main .hero__text-panel h1 span,
html[data-theme="dark"] main .hero .eyebrow {
  color: var(--accent);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.50);
}

html[data-theme="dark"] main .hero__content p,
html[data-theme="dark"] main .hero__text-panel p,
html[data-theme="dark"] main .hero p {
  max-width: 680px;
  color: rgba(247, 243, 234, 0.86);
  line-height: 1.65;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.48);
}

html[data-theme="dark"] main .hero--compact h1,
html[data-theme="dark"] main .hero--compact p,
html[data-theme="dark"] main .hero--compact .container {
  opacity: 1 !important;
  transform: none !important;
  translate: none !important;
}

html[data-theme="dark"] main .hero--compact .container {
  position: relative;
  z-index: 4;
}

html[data-theme="dark"] main .hero--compact h1 {
  color: var(--nugen-light-bg) !important;
}

html[data-theme="dark"] main .hero--compact p {
  color: rgba(234, 243, 255, 0.86) !important;
}

html[data-theme="dark"] main [style*="color: var(--primary)"] {
  color: var(--nugen-light-bg) !important;
}

html[data-theme="dark"] main [style*="color: var(--ink-light)"] {
  color: rgba(234, 243, 255, 0.72) !important;
}

html[data-theme="dark"] main .button--primary,
html[data-theme="dark"] main .hero .button--primary,
html[data-theme="dark"] main .cta-band .button--primary,
html[data-theme="dark"] main .form-panel .button--primary {
  background: var(--nugen-green);
  color: var(--nugen-light-bg);
  border-color: rgba(116, 184, 232, 0.24);
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
}

html[data-theme="dark"] main .button--accent,
html[data-theme="dark"] main .button--secondary,
html[data-theme="dark"] main .hero .button--accent {
  background: var(--accent);
  color: #031027;
  border-color: var(--accent);
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(var(--accent-rgb), 0.25);
}

html[data-theme="dark"] main .button--primary:hover {
  transform: translateY(-2px);
  background: #0E6630;
  color: #FFFFFF;
  border-color: rgba(116, 184, 232, 0.36);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] main .button--accent:hover {
  transform: translateY(-2px);
  background: var(--accent-hover);
  color: #031027;
  box-shadow: 0 18px 44px rgba(var(--accent-rgb), 0.32);
}

html[data-theme="dark"] main .button--outline,
html[data-theme="dark"] main .button--ghost {
  background: rgba(var(--accent-rgb), 0.08) !important;
  color: var(--accent) !important;
  border-color: rgba(var(--accent-rgb), 0.40) !important;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

html[data-theme="dark"] main .button--outline:hover,
html[data-theme="dark"] main .button--ghost:hover {
  transform: translateY(-2px);
  background: rgba(var(--accent-rgb), 0.16) !important;
  border-color: rgba(var(--accent-rgb), 0.62) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] main .hero__features {
  gap: 32px;
  border-top-color: rgba(234, 243, 255, 0.18) !important;
}

html[data-theme="dark"] main .hero__feat-item {
  color: rgba(234, 243, 255, 0.86) !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

html[data-theme="dark"] main .hero__feat-item::before {
  color: var(--accent);
}

html[data-theme="dark"] main .quick-strip__inner,
html[data-theme="dark"] main .hero-feature-card {
  background: rgba(13, 28, 22, 0.88);
  border: 1px solid rgba(247, 243, 234, 0.10);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

html[data-theme="dark"] main .quick-item__text h3,
html[data-theme="dark"] main .hero-feature-card h3 {
  color: var(--nugen-light-bg);
}

html[data-theme="dark"] main .quick-item__text p,
html[data-theme="dark"] main .hero-feature-card p {
  color: rgba(247, 243, 234, 0.68);
}

html[data-theme="dark"] main .quick-item__icon,
html[data-theme="dark"] main .contact-item__icon,
html[data-theme="dark"] main .process-step__number,
html[data-theme="dark"] main .feature-card__number {
  background: rgba(var(--accent-rgb), 0.14);
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  color: var(--accent);
}

html[data-theme="dark"] main .quick-icon-svg {
  color: var(--accent);
}

html[data-theme="dark"] main .feature-card,
html[data-theme="dark"] main .process-step,
html[data-theme="dark"] main .product-card,
html[data-theme="dark"] main .form-panel,
html[data-theme="dark"] main .builder-group,
html[data-theme="dark"] main .builder-sidebar,
html[data-theme="dark"] main .product-configurator,
html[data-theme="dark"] main .inclusions-panel,
html[data-theme="dark"] main .inclusions-graphic-card,
html[data-theme="dark"] main .inclusion-section,
html[data-theme="dark"] main .faq-list details,
html[data-theme="dark"] main .model-nav a,
html[data-theme="dark"] main .gallery-main,
html[data-theme="dark"] main .gallery-thumb-item {
  background: rgba(13, 28, 22, 0.86);
  border-color: rgba(247, 243, 234, 0.10);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] main .feature-card:hover,
html[data-theme="dark"] main .process-step:hover,
html[data-theme="dark"] main .product-card:hover,
html[data-theme="dark"] main .builder-model-option:hover,
html[data-theme="dark"] main .addon-card:hover,
html[data-theme="dark"] main .config-option-pill:hover,
html[data-theme="dark"] main .config-swatch-item:hover,
html[data-theme="dark"] main .config-checkbox-label:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb), 0.36);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

html[data-theme="dark"] main .feature-card h3,
html[data-theme="dark"] main .process-step h3,
html[data-theme="dark"] main .product-card__header h3,
html[data-theme="dark"] main .form-panel h3,
html[data-theme="dark"] main .builder-group h2,
html[data-theme="dark"] main .builder-sidebar h2,
html[data-theme="dark"] main .contact-info h2,
html[data-theme="dark"] main .contact-item__text h3,
html[data-theme="dark"] main .summary-total h3,
html[data-theme="dark"] main .product-info h2,
html[data-theme="dark"] main .config-label,
html[data-theme="dark"] main .inclusion-section__header h4,
html[data-theme="dark"] main .inclusions-panel__title {
  color: var(--nugen-light-bg);
}

html[data-theme="dark"] main .feature-card p,
html[data-theme="dark"] main .process-step p,
html[data-theme="dark"] main .product-card__desc,
html[data-theme="dark"] main .product-card__specs-row,
html[data-theme="dark"] main .builder-model-option__info p,
html[data-theme="dark"] main .addon-card__info p,
html[data-theme="dark"] main .summary-total p,
html[data-theme="dark"] main .product-specs-summary,
html[data-theme="dark"] main .config-option-sub,
html[data-theme="dark"] main .form-status {
  color: rgba(247, 243, 234, 0.72);
}

html[data-theme="dark"] main .product-card {
  border-radius: 16px;
  overflow: hidden;
}

html[data-theme="dark"] main .product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--accent-rgb), 0.36);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

html[data-theme="dark"] main .product-card__gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(4, 14, 11, 0.88) 0%,
      rgba(4, 14, 11, 0.55) 45%,
      rgba(4, 14, 11, 0.12) 100%
    );
  pointer-events: none;
}

html[data-theme="dark"] main .product-card__tag {
  background: var(--accent);
  color: var(--nugen-blue);
}

html[data-theme="dark"] main .product-card__specs-grid {
  background-color: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.10);
}

html[data-theme="dark"] main .product-card__spec-item,
html[data-theme="dark"] main .bento-card__specs > span,
html[data-theme="dark"] main .config-option-pill,
html[data-theme="dark"] main .config-swatch-item,
html[data-theme="dark"] main .config-checkbox-label,
html[data-theme="dark"] main .builder-model-option,
html[data-theme="dark"] main .addon-card,
html[data-theme="dark"] main .inclusion-pill-grid span,
html[data-theme="dark"] main .inclusion-promise-grid span {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.10);
  color: rgba(247, 243, 234, 0.82);
}

html[data-theme="dark"] main .product-card__spec-item strong,
html[data-theme="dark"] main .product-card__specs-grid strong,
html[data-theme="dark"] main .bento-card__specs strong,
html[data-theme="dark"] main .summary-row--model,
html[data-theme="dark"] main .config-price-value,
html[data-theme="dark"] main .config-option-name,
html[data-theme="dark"] main .config-checkbox-price,
html[data-theme="dark"] main .builder-model-option__info h3,
html[data-theme="dark"] main .addon-card__info h3 {
  color: var(--nugen-light-bg);
  font-weight: 700;
}

html[data-theme="dark"] main .product-card__spec-item span,
html[data-theme="dark"] main .spec-label {
  color: var(--accent);
}

html[data-theme="dark"] body[data-page="models"] #models-catalog.models-catalog-shell {
  background:
    radial-gradient(circle at 20% 10%, rgba(var(--accent-rgb), 0.10), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(77, 128, 96, 0.12), transparent 32%),
    #031027;
}

html[data-theme="dark"] body[data-page="models"] .bento-card {
  background: #0B1728;
  border-color: rgba(234, 243, 255, 0.10) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28) !important;
}

html[data-theme="dark"] body[data-page="models"] .bento-card:hover,
html[data-theme="dark"] body[data-page="models"] .bento-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(var(--accent-rgb), 0.36) !important;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42) !important;
}

html[data-theme="dark"] body[data-page="models"] .bento-card__overlay {
  background:
    linear-gradient(
      to top,
      rgba(4, 14, 11, 0.88) 0%,
      rgba(4, 14, 11, 0.55) 45%,
      rgba(4, 14, 11, 0.12) 100%
    );
}

html[data-theme="dark"] body[data-page="models"] .bento-card__title {
  color: var(--nugen-light-bg);
}

html[data-theme="dark"] body[data-page="models"] .bento-card__description,
html[data-theme="dark"] body[data-page="models"] .bento-card__specs strong {
  color: rgba(247, 243, 234, 0.74);
}

html[data-theme="dark"] body[data-page="models"] .bento-card__badge {
  background: var(--accent);
  color: #031027;
}

html[data-theme="dark"] body[data-page="models"] .bento-card__cta {
  color: var(--accent);
  border-color: rgba(var(--accent-rgb), 0.50);
}

html[data-theme="dark"] body[data-page="models"] .bento-card:hover .bento-card__cta,
html[data-theme="dark"] body[data-page="models"] .bento-card:focus-visible .bento-card__cta {
  background: var(--accent);
  color: var(--nugen-blue);
  border-color: var(--accent);
}

/* Models catalog compact overlay pass: keep the imagery dominant. */
body[data-page="models"] .bento-card {
  height: 500px;
}

body[data-page="models"] .bento-card__overlay {
  background:
    linear-gradient(
      to top,
      rgba(5, 20, 16, 0.78) 0%,
      rgba(5, 20, 16, 0.34) 42%,
      rgba(5, 20, 16, 0.04) 100%
    );
}

body[data-page="models"] .bento-card__content {
  padding: 26px;
  gap: 8px;
  justify-content: flex-end;
}

body[data-page="models"] .bento-card__badge {
  padding: 8px 15px;
  font-size: 10px;
  box-shadow: 0 8px 18px rgba(var(--accent-rgb), 0.24);
}

body[data-page="models"] .bento-card__title {
  max-width: 660px;
  font-size: clamp(24px, 2.55vw, 34px);
  line-height: 1.04;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.50);
}

body[data-page="models"] .bento-card__description {
  max-width: 560px;
  font-size: 13px;
  line-height: 1.36;
}

body[data-page="models"] .bento-card__specs {
  width: min(100%, 620px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin-top: 4px;
}

body[data-page="models"] .bento-card__specs > span {
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(8, 20, 16, 0.46);
  border-color: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

body[data-page="models"] .spec-label {
  margin-bottom: 2px;
  font-size: 8px;
  letter-spacing: 0.07em;
}

body[data-page="models"] .bento-card__specs strong {
  font-size: 11px;
  line-height: 1.05;
}

body[data-page="models"] .bento-card__cta {
  min-height: 34px;
  padding: 8px 13px;
  font-size: 12px;
}

html[data-theme="dark"] body[data-page="models"] .bento-card__overlay {
  background:
    linear-gradient(
      180deg,
      rgba(6, 18, 14, 0.02) 0%,
      rgba(6, 18, 14, 0.14) 38%,
      rgba(5, 13, 11, 0.58) 76%,
      rgba(5, 12, 10, 0.84) 100%
    ),
    linear-gradient(
      90deg,
      rgba(5, 13, 11, 0.44) 0%,
      rgba(5, 13, 11, 0.08) 56%,
      rgba(5, 13, 11, 0.18) 100%
    );
}

html[data-theme="dark"] body[data-page="models"] .bento-card__specs > span {
  background: rgba(8, 20, 16, 0.48);
  border-color: rgba(247, 243, 234, 0.11);
}

@media (max-width: 991px) {
  body[data-page="models"] .bento-card {
    height: 460px;
  }

  body[data-page="models"] .bento-card__title {
    max-width: 100%;
    font-size: clamp(22px, 4vw, 30px);
  }

  body[data-page="models"] .bento-card__specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 420px);
  }
}

@media (max-width: 720px) {
  body[data-page="models"] .bento-card {
    height: 430px;
  }

  body[data-page="models"] .bento-card__content {
    padding: 20px;
  }

  body[data-page="models"] .bento-card__title {
    font-size: clamp(24px, 7vw, 30px);
  }

  body[data-page="models"] .bento-card__description {
    font-size: 12px;
  }

  body[data-page="models"] .bento-card__specs > span {
    padding: 7px 9px;
  }
}

html[data-theme="dark"] main .field label {
  color: var(--nugen-light-bg);
}

html[data-theme="dark"] main .field input,
html[data-theme="dark"] main .field select,
html[data-theme="dark"] main .field textarea {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--nugen-light-bg);
}

html[data-theme="dark"] main .field input::placeholder,
html[data-theme="dark"] main .field textarea::placeholder {
  color: rgba(247, 243, 234, 0.48);
}

html[data-theme="dark"] main .field input:focus,
html[data-theme="dark"] main .field select:focus,
html[data-theme="dark"] main .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.16);
}

html[data-theme="dark"] main .faq-list details {
  background: rgba(13, 28, 22, 0.90) !important;
  border-color: rgba(234, 243, 255, 0.12) !important;
}

html[data-theme="dark"] main .faq-list details[open] {
  border-color: rgba(var(--accent-rgb), 0.72) !important;
}

html[data-theme="dark"] main .faq-list summary {
  color: var(--nugen-light-bg) !important;
}

html[data-theme="dark"] main .faq-list p {
  color: rgba(234, 243, 255, 0.72) !important;
}

html[data-theme="dark"] main .model-nav {
  background: rgba(7, 20, 16, 0.88);
  border-bottom-color: rgba(247, 243, 234, 0.10);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

html[data-theme="dark"] main .model-nav a:hover,
html[data-theme="dark"] main .model-nav a.active,
html[data-theme="dark"] main .builder-model-option.active,
html[data-theme="dark"] main .addon-card.active,
html[data-theme="dark"] main .config-option-pill.active,
html[data-theme="dark"] main .config-swatch-item.active,
html[data-theme="dark"] main .config-checkbox-label.active {
  background: rgba(var(--accent-rgb), 0.14);
  border-color: rgba(var(--accent-rgb), 0.44);
  color: var(--nugen-light-bg);
}

html[data-theme="dark"] main .builder-model-option.active .builder-model-option__radio,
html[data-theme="dark"] main .addon-card.active .addon-card__check {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--nugen-blue);
}

html[data-theme="dark"] main .hero h1 span {
  color: inherit !important;
  text-shadow: inherit;
}

html[data-theme="dark"] main .hero h1 span[data-tr*="accent"],
html[data-theme="dark"] main .hero h1 span[style*="accent"] {
  color: var(--accent) !important;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.50);
}

@media (max-width: 768px) {
  html[data-theme="dark"] main .hero__content-wrapper.container {
    width: min(var(--max), calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
  }

  html[data-theme="dark"] main .hero__text-panel {
    width: 100%;
  }
}

/* ============================================================
   HOMEPAGE SHOWROOM - media grid (photos + map + location card)
   ============================================================ */
.showroom-appt-note {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
}

/* One large featured showroom image (right column) */
.showroom-feature {
  margin: 0;
  border-radius: var(--radius-media);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  background: var(--wash);
}

.showroom-feature img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Clean full-width map / location bar below the two-column intro */
.showroom-locbar {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  margin-top: 44px;
  border-radius: var(--radius-card);
  border: 1px solid var(--line-strong);
  box-shadow: 0 12px 30px rgba(15, 60, 52, 0.055);
  overflow: hidden;
  background: var(--white);
}

.showroom-locbar__map {
  position: relative;
  min-height: 240px;
  background: var(--wash);
}

.showroom-locbar__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

html[data-theme="dark"] .showroom-locbar__map iframe {
  filter: invert(0.92) hue-rotate(180deg) brightness(0.95) contrast(0.92);
}

.showroom-locbar__info {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
}

.showroom-locbar__pin {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: rgba(var(--accent-rgb), 0.14);
  color: var(--accent);
}

.showroom-locbar__pin svg { width: 24px; height: 24px; }

.showroom-locbar__text { flex: 1 1 auto; min-width: 0; }

.showroom-locbar__text h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 4px;
}

.showroom-locbar__text p {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
}

.showroom-locbar__note {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid rgba(var(--accent-rgb), 0.30);
  padding: 4px 10px;
  border-radius: 6px;
}

.showroom-locbar__cta {
  flex: none;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .showroom-locbar { grid-template-columns: 1fr; }
  .showroom-locbar__info { flex-wrap: wrap; }
  .showroom-locbar__cta { width: 100%; text-align: center; }
}

/* ============================================================
   HOMEPAGE "WHAT IS" - single card, video left / explainer right
   ============================================================ */
.whatis-card {
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-section);
  box-shadow: var(--shadow-md);
  padding: 32px;
}

.whatis-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas:
    "video intro"
    "video points"
    "video mini";
  grid-template-rows: auto auto 1fr;
  gap: 22px 36px;
  align-items: start;
}

.whatis-grid__video { grid-area: video; align-self: stretch; }
.whatis-grid__intro { grid-area: intro; }
.whatis-points { grid-area: points; }
.not-container-mini { grid-area: mini; }

/* Wide cinematic video card - fills the right column height on desktop */
.whatis-video-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: var(--radius-media);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  background: var(--wash);
}

/* Absolutely positioned so the video's native (portrait) size does NOT
   drive the card height - the card matches the right column instead. */
.whatis-video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Intro text */
.whatis-grid__intro h2 {
  font-size: clamp(26px, 3vw, 36px);
  color: var(--primary);
  margin: 0 0 14px;
}

.whatis-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 10px;
}

.whatis-sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-light);
  margin: 0;
}

/* Icon bullet rows */
.whatis-points {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.whatis-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
}

.whatis-points__icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(var(--accent-rgb), 0.14);
  color: var(--accent);
}

.whatis-points__icon svg { width: 20px; height: 20px; }

/* Nested "Not a Shipping Container" mini-card */
.not-container-mini {
  background: var(--wash);
  border: 1px solid var(--line);
  border-left: 3px solid var(--premium-gold);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  padding: 20px 22px;
}

.not-container-mini h3 {
  color: var(--primary);
  font-size: 17px;
  margin: 0 0 8px;
}

.not-container-mini p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-light);
  margin: 0 0 14px;
}

.not-container-mini__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
  margin: 0;
}

.not-container-mini__list li { font-size: 14px; }

html[data-theme="dark"] .not-container-mini {
  background: rgba(255, 255, 255, 0.03);
}

/* Simple Process - single-row 5-step timeline */
.process-timeline--5 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 38px;
}

.process-timeline--5 .process-step {
  flex: 1 1 200px;
  max-width: 260px;
  min-height: 220px;
}

.process-timeline--5 .process-step,
.process-timeline--5 .process-step .border-glow-inner {
  display: flex;
  flex-direction: column;
}

.process-timeline--5 .process-step .border-glow-inner {
  flex: 1;
  min-height: 100%;
}

.process-timeline--5 .process-step.border-glow-card::before,
.process-timeline--5 .process-step > .edge-light {
  display: none !important;
}

.process-timeline--5 .process-step p {
  margin-top: auto;
}

@media (min-width: 1040px) {
  .process-timeline--5 .process-step { max-width: none; }
}

@media (max-width: 560px) {
  .process-timeline--5 .process-step {
    flex-basis: 100%;
    max-width: 420px;
  }
}

/* Showroom - left column "what to expect" list */
.showroom-expect {
  margin: 22px 0 0;
  gap: 12px;
}
.showroom-expect li { font-size: 15px; }

@media (max-width: 860px) {
  .whatis-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "intro"
      "video"
      "points"
      "mini";
    gap: 22px;
  }
  .whatis-grid__video { align-self: stretch; }
  .whatis-video-card {
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 768px) {
  .whatis-card { padding: 22px; }
  .not-container-mini__list { grid-template-columns: 1fr; }
}

/* ============================================================
   GLOBAL ARCHITECTURAL NAVBAR
   ============================================================ */
.site-header {
  top: 0;
  left: 0;
  right: 0;
  border: 0;
  border-bottom: 1px solid rgba(7, 29, 53, 0.14);
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(7, 29, 53, 0.06);
}

.site-header::before {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
}

:root[data-theme="dark"] .site-header::before {
  background: rgba(9, 18, 28, 0.92);
}

.header-inner {
  height: 76px;
  max-width: none;
  padding-inline: clamp(20px, 3.4vw, 56px);
}

.brand-logo {
  height: 54px;
}

.site-nav {
  gap: clamp(12px, 1.6vw, 26px);
}

.site-nav a {
  border-radius: 0;
  color: var(--nugen-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  padding: 28px 0 24px;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a.active,
body[data-page="home"] .site-nav a[href="/"],
body[data-page="home"] .site-nav a[href="index.html"],
body[data-page="models"] .site-nav a[href="/models"],
body[data-page="models"] .site-nav a[href="models.html"],
body[data-page="gallery"] .site-nav a[href="/gallery"],
body[data-page="gallery"] .site-nav a[href="gallery.html"],
body[data-page="about"] .site-nav a[href="/about"],
body[data-page="about"] .site-nav a[href="about.html"],
body[data-page="financing"] .site-nav a[href="/financing"],
body[data-page="financing"] .site-nav a[href="financing.html"],
body[data-page="faq"] .site-nav a[href="/faq"],
body[data-page="faq"] .site-nav a[href="faq.html"],
body[data-page="contact"] .site-nav a[href="/contact"],
body[data-page="contact"] .site-nav a[href="contact.html"] {
  background: transparent;
  color: var(--secondary);
}

.site-nav a.active::after,
body[data-page="home"] .site-nav a[href="/"]::after,
body[data-page="models"] .site-nav a[href="/models"]::after,
body[data-page="gallery"] .site-nav a[href="/gallery"]::after,
body[data-page="about"] .site-nav a[href="/about"]::after,
body[data-page="financing"] .site-nav a[href="/financing"]::after,
body[data-page="faq"] .site-nav a[href="/faq"]::after,
body[data-page="contact"] .site-nav a[href="/contact"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 2px;
  background: currentColor;
}

.header-actions > .button {
  min-height: 46px;
  padding: 0 24px;
  border-radius: 8px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .header-inner {
    height: 68px;
    width: 100vw;
    max-width: 100vw;
    padding-inline: 14px;
    overflow: hidden;
  }

  .brand-logo {
    height: 34px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 6px;
  }

  .nav-controls-mount {
    display: none;
  }

  body:has(.site-nav.is-open) .nav-controls-mount {
    position: fixed;
    top: 84px;
    left: 20px;
    right: 20px;
    z-index: 150;
    display: inline-flex;
    justify-content: center;
  }

  .menu-toggle {
    display: block !important;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
  }

  .menu-toggle span {
    left: 6px;
    top: 17px;
  }

  .site-nav.is-open {
    top: 68px;
    left: 0;
    right: 0;
    bottom: auto;
    max-height: calc(100vh - 68px);
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .site-nav.is-open a {
    font-size: 18px;
    padding: 12px;
  }

  .header-actions > .button {
    display: none;
    min-height: 38px;
    padding-inline: 12px;
    font-size: 11px;
  }

  body:has(.site-nav.is-open) .header-actions > .button {
    position: fixed;
    top: 128px;
    left: 20px;
    right: 20px;
    z-index: 150;
    display: inline-flex;
    justify-content: center;
    min-height: 42px;
  }

  body:has(.site-nav.is-open) .site-nav.is-open {
    padding-top: 124px;
  }
}

/* ============================================================
   MODELS PAGE WIREFRAME CATALOG
   ============================================================ */
body[data-page="models"] #models-catalog.models-catalog-shell {
  padding: 92px 0 56px;
  background: linear-gradient(180deg, var(--nugen-light-bg) 0%, #ffffff 42%, var(--nugen-light-bg) 100%);
}

body[data-page="models"] .models-catalog-header,
body[data-page="models"] .bento-grid {
  display: none;
}

.models-wire-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 30px 0 44px;
  border-bottom: 1px solid rgba(7, 29, 53, 0.14);
}

.models-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 700;
}

.models-wire-hero h1 {
  max-width: 620px;
  margin: 0;
  color: var(--primary);
  font-size: clamp(36px, 4.4vw, 58px);
  letter-spacing: 0;
}

.models-wire-hero p {
  max-width: 540px;
  margin: 20px 0 0;
  color: var(--nugen-blue);
  font-size: 18px;
}

.models-wire-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.models-wire-hero__media {
  overflow: hidden;
  border: 1px solid rgba(7, 29, 53, 0.16);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 22px 52px rgba(7, 29, 53, 0.10);
}

.models-wire-hero__media img {
  width: 100%;
  aspect-ratio: 16 / 8.6;
  object-fit: cover;
  border-radius: 0;
}

.models-filter-row {
  display: flex;
  gap: 14px;
  margin: 28px 0 22px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.models-filter-row::-webkit-scrollbar {
  display: none;
}

.models-filter-row button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 24px;
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  border-radius: 8px;
  background: var(--white);
  color: var(--secondary);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.models-filter-row button.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.models-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.model-catalog-card {
  position: relative;
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(7, 29, 53, 0.16);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(7, 29, 53, 0.055);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.model-catalog-card:hover,
.model-catalog-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(var(--accent-rgb), 0.44);
  box-shadow: 0 18px 36px rgba(7, 29, 53, 0.095);
  outline: none;
}

.model-catalog-card > img {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
  border-radius: 0;
  border-bottom: 1px solid rgba(7, 29, 53, 0.10);
}

.model-catalog-card__tag {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 6px 9px;
  border-radius: 6px;
  background: var(--secondary);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.model-catalog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px;
}

.model-catalog-card h2,
.model-catalog-card h3 {
  margin: 0 0 7px;
  color: var(--primary);
  font-size: 19px;
}

.model-catalog-card p {
  margin: 0;
  color: var(--nugen-blue);
  font-size: 13px;
  line-height: 1.4;
}

.model-catalog-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: 12px 0;
}

.model-catalog-card dl div {
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  border-radius: 8px;
  background: rgba(var(--accent-rgb), 0.045);
}

.model-catalog-card dt {
  color: var(--secondary);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.model-catalog-card dd {
  margin: 3px 0 0;
  color: var(--primary);
  font-size: 12px;
  font-weight: 750;
}

.model-catalog-card__best {
  margin-top: auto !important;
}

.model-catalog-card__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 12px;
}

.model-catalog-card__actions .button {
  min-height: 40px;
  padding-inline: 12px;
  font-size: 12px;
}

.models-compare-panel,
.models-closer-panel,
.models-help-panel,
.models-location-panel {
  margin-top: 24px;
  border: 1px solid rgba(7, 29, 53, 0.16);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(7, 29, 53, 0.045);
}

.models-compare-panel,
.models-closer-panel {
  padding: 22px;
}

.models-compare-panel h2,
.models-closer-panel h2,
.models-help-panel h2,
.models-location-panel h2 {
  margin: 0 0 14px;
  color: var(--nugen-blue-accent);
  font-size: 24px;
}

#models-closer-title,
body[data-page="models"] #configurations,
body[data-page="models"] #specifications,
body[data-page="models"] .models-help-panel,
body[data-page="models"] .models-location-panel {
  scroll-margin-top: 96px;
}

.models-compare-scroll {
  overflow-x: auto;
}

.models-compare-panel table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  font-size: 13px;
}

.models-compare-panel th,
.models-compare-panel td {
  padding: 12px 14px;
  border: 1px solid rgba(7, 29, 53, 0.12);
  text-align: left;
}

.models-compare-panel th {
  color: var(--primary);
  background: rgba(var(--accent-rgb), 0.06);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
}

.models-compare-panel td:first-child {
  color: var(--primary);
  font-weight: 800;
}

.models-compare-panel .button {
  min-height: 34px;
  padding-inline: 12px;
  font-size: 11px;
}

.models-closer-panel {
  padding: clamp(20px, 2.4vw, 28px);
}

.models-closer-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 18px;
}

.models-closer-tabs button {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  border-radius: 8px;
  background: var(--white);
  color: var(--secondary);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  transition: var(--transition);
}

.models-closer-tabs button:hover,
.models-closer-tabs button.active,
.models-closer-tabs button[aria-selected="true"] {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.models-selected-card {
  overflow: hidden;
  border: 1px solid rgba(7, 29, 53, 0.14);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.035), #fff 42%);
  box-shadow: 0 18px 44px rgba(7, 29, 53, 0.07);
}

.models-selected-card__main {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(18px, 2.5vw, 30px);
  align-items: start;
  padding: clamp(16px, 2.4vw, 24px);
}

.models-selected-media {
  min-height: 0;
  margin: 0;
}

.models-closer-image {
  width: 100%;
  height: clamp(260px, 23vw, 340px);
  min-height: 0;
  border: 1px solid rgba(7, 29, 53, 0.16);
  border-radius: 10px;
  object-fit: cover;
}

.models-closer-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.models-selected-card__eyebrow {
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 9px;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: 6px;
  background: rgba(var(--accent-rgb), 0.07);
  color: var(--secondary);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.models-closer-copy h3 {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: clamp(26px, 3vw, 38px);
}

.models-closer-copy p {
  max-width: 620px;
  margin: 0 0 14px;
  color: var(--nugen-blue);
}

.models-selected-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 4px 0 14px;
}

.models-selected-specs div {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  border-radius: 8px;
  background: rgba(var(--accent-rgb), 0.045);
}

.models-selected-specs span {
  display: block;
  color: var(--secondary);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.models-selected-specs strong {
  display: block;
  margin-top: 4px;
  color: var(--primary);
}

.models-selected-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 0 0 16px !important;
}

.models-selected-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.models-floorplan-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(16px, 2.5vw, 28px);
  align-items: center;
  margin: 0;
  padding: clamp(16px, 2.4vw, 22px);
  border-top: 1px solid rgba(7, 29, 53, 0.12);
  background: var(--nugen-light-bg);
}

.models-floorplan-card figcaption {
  margin-bottom: 8px;
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.models-floorplan-card p {
  margin-bottom: 14px;
}

.models-floorplan-card img {
  width: 100%;
  height: clamp(220px, 24vw, 310px);
  max-height: 310px;
  border: 1px solid rgba(7, 29, 53, 0.16);
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
}

.models-floorplan-card.is-unavailable {
  grid-template-columns: 1fr;
}

.models-floorplan-card.is-unavailable img {
  display: none;
}

body[data-page="models"] #configurations,
body[data-page="models"] #specifications {
  padding: 30px 0;
  background: var(--nugen-light-bg);
}

body[data-page="models"] main {
  background: var(--nugen-light-bg);
}

body[data-page="models"] #configurations .split-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 3.5vw, 42px);
  align-items: center;
  padding: clamp(20px, 2.6vw, 30px);
  border: 1px solid rgba(7, 29, 53, 0.14);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(7, 29, 53, 0.055);
}

body[data-page="models"] #configurations h2 {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: clamp(27px, 3vw, 38px);
}

body[data-page="models"] #configurations p {
  color: var(--nugen-blue);
}

.models-options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.models-option-card {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff, var(--nugen-light-bg));
  box-shadow: 0 10px 22px rgba(7, 29, 53, 0.045);
}

.models-option-card h3 {
  margin: 0 0 6px;
  color: var(--primary);
  font-size: 16px;
}

.models-option-card p {
  margin: 0;
  color: var(--nugen-blue);
  font-size: 13px;
  line-height: 1.38;
}

.models-option-card:last-child {
  grid-column: 1 / -1;
}

body[data-page="models"] #configurations .checklist,
body[data-page="models"] #specifications .checklist {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

body[data-page="models"] #configurations .checklist li,
body[data-page="models"] #specifications .checklist li {
  padding: 12px 14px 12px 38px;
  border: 1px solid rgba(var(--accent-rgb), 0.14);
  border-radius: 8px;
  background: rgba(var(--accent-rgb), 0.045);
}

body[data-page="models"] #configurations .split-content__visual img {
  width: 100%;
  border: 1px solid rgba(7, 29, 53, 0.16) !important;
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(7, 29, 53, 0.08) !important;
}

body[data-page="models"] .models-inclusions-panel {
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid rgba(7, 29, 53, 0.14);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(7, 29, 53, 0.05);
}

.models-inclusions-copy {
  min-width: 0;
}

.models-inclusions-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 9px;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: 6px;
  background: rgba(var(--accent-rgb), 0.07);
  color: var(--secondary);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

body[data-page="models"] .models-inclusions-panel h2 {
  max-width: 680px;
  margin: 0 0 8px;
  color: var(--primary);
  font-size: clamp(28px, 3vw, 36px);
}

body[data-page="models"] .models-inclusions-panel p {
  color: var(--nugen-blue);
}

.models-inclusion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.models-inclusion-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 82px;
  padding: 12px;
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.07), rgba(15, 60, 52, 0.025));
  box-shadow: 0 10px 20px rgba(7, 29, 53, 0.035);
}

.models-inclusion-card__icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 6px;
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 8px 16px rgba(var(--accent-rgb), 0.18);
}

.models-inclusion-card__icon::before {
  content: "";
  display: block;
  width: 11px;
  height: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}

.models-inclusion-card h3 {
  grid-column: 2;
  margin: 0 0 2px;
  color: var(--primary);
  font-size: 15px;
  line-height: 1.2;
}

.models-inclusion-card p {
  grid-column: 2;
  margin: 0;
  color: #4a5d69;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.3;
}

.models-build-details {
  margin-top: 14px;
  width: 100%;
}

.models-build-details summary {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 8px;
  background: rgba(var(--accent-rgb), 0.045);
  color: var(--secondary);
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  list-style: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.models-build-details summary::-webkit-details-marker {
  display: none;
}

.models-build-details summary:hover {
  border-color: rgba(var(--accent-rgb), 0.48);
  background: rgba(var(--accent-rgb), 0.075);
}

.models-build-details__label {
  align-items: center;
  gap: 8px;
}

.models-build-details__label--closed {
  display: inline-flex;
}

.models-build-details__label--open {
  display: none;
}

.models-build-details[open] .models-build-details__label--closed {
  display: none;
}

.models-build-details[open] .models-build-details__label--open {
  display: inline-flex;
}

.models-build-details:not([open]) .models-build-detail-grid {
  display: none;
}

.models-build-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(7, 29, 53, 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, var(--nugen-light-bg));
  box-shadow: 0 14px 28px rgba(7, 29, 53, 0.055);
}

.models-build-detail-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(7, 29, 53, 0.045);
}

.models-build-detail-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--nugen-light-bg);
}

.models-build-detail-card div {
  padding: 11px 12px 13px;
}

.models-build-detail-card h3 {
  margin: 0 0 4px;
  color: var(--primary);
  font-size: 15px;
  line-height: 1.2;
}

.models-build-detail-card p {
  margin: 0;
  color: #536573;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.models-help-panel,
.models-location-panel {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 16px auto 0;
}

.models-help-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: clamp(22px, 2.4vw, 30px);
  background:
    linear-gradient(120deg, rgba(var(--accent-rgb), 0.10), #fff 58%, rgba(var(--accent-rgb), 0.035));
}

.models-help-panel__copy {
  display: flex;
  gap: 16px;
  align-items: center;
}

.models-help-panel__copy > span {
  display: grid;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 10px;
  background: var(--secondary);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 850;
}

.models-help-panel p {
  margin: 0;
}

.models-help-panel__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.models-location-panel {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  overflow: hidden;
}

.models-location-panel > div:last-child {
  padding: clamp(20px, 2.4vw, 28px);
}

.models-location-panel__map {
  min-height: 190px;
  padding: 8px;
  background: var(--nugen-light-bg);
}

body[data-page="models"] #model-inquiry {
  padding: 58px 0 64px;
  background: var(--nugen-light-bg);
}

body[data-page="models"] #model-inquiry .split-content {
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

body[data-page="models"] #model-inquiry .form-panel {
  background: #fff;
  border-color: rgba(7, 29, 53, 0.14);
  box-shadow: 0 16px 38px rgba(7, 29, 53, 0.06);
}

.models-location-panel__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 174px;
  border: 1px solid rgba(7, 29, 53, 0.12);
  border-radius: 10px;
  filter: saturate(0.72) contrast(0.96) opacity(0.82);
}

.models-location-panel__note {
  width: fit-content;
  margin: 12px 0 18px;
  padding: 6px 10px;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: 6px;
  background: rgba(var(--accent-rgb), 0.07);
  color: var(--secondary);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .models-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .models-closer-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .models-build-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .models-selected-card__main,
  body[data-page="models"] #configurations .split-content,
  body[data-page="models"] .models-inclusions-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body[data-page="models"] main,
  body[data-page="models"] section,
  body[data-page="models"] .container,
  body[data-page="models"] .models-wire-hero,
  body[data-page="models"] .models-wire-hero__copy,
  body[data-page="models"] .models-wire-hero__media,
  body[data-page="models"] .models-card-grid,
  body[data-page="models"] .model-catalog-card,
  body[data-page="models"] .models-selected-card,
  body[data-page="models"] .models-selected-card__main,
  body[data-page="models"] .models-inclusions-panel,
  body[data-page="models"] .models-location-panel {
    min-width: 0;
    max-width: 100%;
  }

  body[data-page="models"] .container {
    width: min(100% - 32px, var(--max));
  }

  body[data-page="models"] #models-catalog.models-catalog-shell {
    padding: 76px 0 26px;
  }

  .models-wire-hero,
  .models-floorplan-card,
  .models-location-panel {
    grid-template-columns: 1fr;
  }

  .models-wire-hero {
    gap: 22px;
    padding: 18px 0 32px;
  }

  .models-wire-hero h1 {
    max-width: min(100%, 340px);
    font-size: clamp(26px, 7vw, 30px);
    line-height: 1.1;
    overflow-wrap: break-word;
  }

  .models-wire-hero p {
    max-width: 100%;
    font-size: 16px;
  }

  .models-wire-hero__media img {
    aspect-ratio: 16 / 10.5;
  }

  .models-filter-row {
    margin-inline: -16px;
    padding-inline: 16px;
  }

  .models-wire-hero__actions,
  .models-help-panel,
  .models-help-panel__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .models-card-grid {
    grid-template-columns: 1fr;
  }

  .models-closer-tabs,
  .models-selected-specs,
  .models-selected-features {
    grid-template-columns: 1fr;
  }

  .models-inclusion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .models-options-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="models"] .config-price-box {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  body[data-page="models"] .config-price-value {
    max-width: 100%;
    text-align: left;
    font-size: 24px;
  }

  .models-option-card:last-child {
    grid-column: auto;
  }

  .models-build-detail-grid {
    gap: 10px;
    padding: 10px;
  }

  body[data-page="models"] #configurations,
  body[data-page="models"] #specifications {
    padding: 22px 0;
  }

  body[data-page="models"] #model-inquiry {
    padding: 38px 0 44px;
  }

  body[data-page="models"] .models-inclusions-panel {
    padding: 18px;
  }

  .models-inclusion-card {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 112px;
    align-content: start;
  }

  .models-inclusion-card h3,
  .models-inclusion-card p {
    grid-column: 1;
  }

  .models-closer-image {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .models-floorplan-card img {
    height: 260px;
  }

  .model-catalog-card > img {
    aspect-ratio: 16 / 10.5;
  }

  .models-compare-panel,
  .models-closer-panel {
    padding: 18px;
  }

  .models-help-panel,
  .models-location-panel > div:last-child,
  .models-selected-card__main,
  .models-floorplan-card {
    padding: 20px;
  }

  .models-help-panel {
    align-items: stretch;
  }

  .models-help-panel__copy,
  .models-help-panel__actions {
    justify-content: stretch;
  }

  .models-help-panel__copy {
    align-items: flex-start;
  }
}

@media (max-width: 360px) {
  .models-inclusion-grid {
    grid-template-columns: 1fr;
  }

  .models-inclusion-card {
    min-height: 0;
  }

  .models-build-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .models-build-detail-grid {
    grid-template-columns: 1fr;
  }
}

html[data-theme="dark"] body[data-page="models"] #models-catalog.models-catalog-shell,
html[data-theme="dark"] body[data-page="models"] #configurations,
html[data-theme="dark"] body[data-page="models"] #specifications,
html[data-theme="dark"] body[data-page="models"] #model-inquiry,
html[data-theme="dark"] body[data-page="models"] main {
  background:
    radial-gradient(circle at 18% 12%, rgba(var(--accent-rgb), 0.10), transparent 30%),
    linear-gradient(180deg, #031027, #031027);
}

html[data-theme="dark"] body[data-page="models"] .models-compare-panel,
html[data-theme="dark"] body[data-page="models"] .models-closer-panel,
html[data-theme="dark"] body[data-page="models"] .models-help-panel,
html[data-theme="dark"] body[data-page="models"] .models-location-panel,
html[data-theme="dark"] body[data-page="models"] #configurations .split-content,
html[data-theme="dark"] body[data-page="models"] #model-inquiry .form-panel,
html[data-theme="dark"] body[data-page="models"] .models-inclusions-panel,
html[data-theme="dark"] body[data-page="models"] .models-selected-card {
  border-color: rgba(247, 243, 234, 0.14);
  background:
    linear-gradient(180deg, rgba(16, 37, 29, 0.96), rgba(8, 23, 18, 0.98));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] body[data-page="models"] .models-selected-card__eyebrow,
html[data-theme="dark"] body[data-page="models"] .models-selected-specs div,
html[data-theme="dark"] body[data-page="models"] .models-inclusions-kicker,
html[data-theme="dark"] body[data-page="models"] .models-inclusion-card,
html[data-theme="dark"] body[data-page="models"] .models-option-card,
html[data-theme="dark"] body[data-page="models"] #configurations .checklist li,
html[data-theme="dark"] body[data-page="models"] #specifications .checklist li,
html[data-theme="dark"] body[data-page="models"] .models-location-panel__note {
  border-color: rgba(var(--accent-rgb), 0.28);
  background: rgba(var(--accent-rgb), 0.12);
}

html[data-theme="dark"] body[data-page="models"] .models-closer-tabs button,
html[data-theme="dark"] body[data-page="models"] .models-build-details summary,
html[data-theme="dark"] body[data-page="models"] .models-floorplan-card,
html[data-theme="dark"] body[data-page="models"] .models-floorplan-card img,
html[data-theme="dark"] body[data-page="models"] .models-location-panel__map,
html[data-theme="dark"] body[data-page="models"] #model-inquiry .field input,
html[data-theme="dark"] body[data-page="models"] #model-inquiry .field select,
html[data-theme="dark"] body[data-page="models"] #model-inquiry .field textarea {
  border-color: rgba(247, 243, 234, 0.14);
  background: #0B1728 !important;
  background-color: #0B1728 !important;
  color: var(--nugen-light-bg) !important;
}

html[data-theme="dark"] body[data-page="models"] #model-inquiry .field input::placeholder,
html[data-theme="dark"] body[data-page="models"] #model-inquiry .field textarea::placeholder {
  color: rgba(247, 243, 234, 0.46);
}

html[data-theme="dark"] body[data-page="models"] main #model-inquiry .field input,
html[data-theme="dark"] body[data-page="models"] main #model-inquiry .field select,
html[data-theme="dark"] body[data-page="models"] main #model-inquiry .field textarea {
  background: #0B1728 !important;
  background-color: #0B1728 !important;
  border-color: rgba(247, 243, 234, 0.14) !important;
  color: var(--nugen-light-bg) !important;
}

html[data-theme="dark"] body[data-page="models"] .models-build-detail-grid,
html[data-theme="dark"] body[data-page="models"] .models-build-detail-card {
  border-color: rgba(247, 243, 234, 0.14);
  background: #0B1728;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] body[data-page="models"] .models-build-detail-card img {
  background: #0F2238;
}

html[data-theme="dark"] body[data-page="models"] .models-closer-tabs button {
  color: var(--nugen-light-bg);
}

html[data-theme="dark"] body[data-page="models"] .models-closer-tabs button:hover,
html[data-theme="dark"] body[data-page="models"] .models-closer-tabs button.active,
html[data-theme="dark"] body[data-page="models"] .models-closer-tabs button[aria-selected="true"] {
  background: var(--secondary);
  border-color: var(--secondary);
}

html[data-theme="dark"] body[data-page="models"] .models-closer-copy p,
html[data-theme="dark"] body[data-page="models"] #configurations p,
html[data-theme="dark"] body[data-page="models"] #specifications p,
html[data-theme="dark"] body[data-page="models"] .models-option-card p,
html[data-theme="dark"] body[data-page="models"] .models-inclusion-card p,
html[data-theme="dark"] body[data-page="models"] .models-build-detail-card p,
html[data-theme="dark"] body[data-page="models"] .models-floorplan-card p,
html[data-theme="dark"] body[data-page="models"] .models-help-panel p,
html[data-theme="dark"] body[data-page="models"] .models-location-panel p {
  color: rgba(247, 243, 234, 0.74);
}

html[data-theme="dark"] body[data-page="models"] .models-option-card h3 {
  color: var(--nugen-light-bg);
}

/* ============================================================
   HOMEPAGE WIREFRAME REFRESH - scoped to index.html
   ============================================================ */
body[data-page="home"] {
  background: var(--nugen-light-bg);
  color: var(--nugen-blue);
}

body[data-page="home"] .site-header {
  top: 0;
  left: 0;
  right: 0;
  max-width: none;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(7, 29, 53, 0.14);
  box-shadow: 0 10px 30px rgba(7, 29, 53, 0.06);
}

body[data-page="home"] .site-header::before {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

html[data-theme="dark"] body[data-page="home"] .site-header::before {
  background: rgba(9, 18, 28, 0.92);
}

body[data-page="home"] .header-inner {
  max-width: none;
  height: 76px;
  padding-inline: clamp(24px, 3.8vw, 64px);
}

body[data-page="home"] .brand-logo {
  height: 54px;
}

body[data-page="home"] .site-nav {
  gap: clamp(18px, 2.1vw, 34px);
}

body[data-page="home"] .site-nav a {
  border-radius: 0;
  color: var(--nugen-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  padding: 28px 0 24px;
  text-transform: uppercase;
}

html[data-theme="dark"] body[data-page="home"] .site-nav a {
  color: #eaf4fb;
}

body[data-page="home"] .site-nav a:hover,
body[data-page="home"] .site-nav a.active {
  background: transparent;
  color: var(--secondary);
}

body[data-page="home"] .site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 2px;
  background: currentColor;
}

body[data-page="home"] .nav-link--models {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

body[data-page="home"] .nav-link--models::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  order: 2;
  transform: rotate(45deg) translateY(-2px);
}

body[data-page="home"] .header-actions {
  gap: 12px;
}

body[data-page="home"] .header-actions > .button {
  min-height: 46px;
  padding: 0 24px;
  border-radius: 4px;
  background: var(--primary);
  box-shadow: 0 10px 22px rgba(15, 60, 52, 0.18);
  text-transform: uppercase;
}

.wire-home-hero {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  padding: 128px 0 64px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0.84) 45%, rgba(240,246,251,0.68)),
    radial-gradient(circle at 78% 18%, rgba(var(--accent-rgb), 0.10), transparent 36%),
    var(--nugen-light-bg);
  border-bottom: 1px solid rgba(7, 29, 53, 0.16);
}

html[data-theme="dark"] .wire-home-hero {
  background:
    linear-gradient(90deg, rgba(10,18,16,0.96), rgba(10,18,16,0.88) 44%, rgba(9,30,47,0.78)),
    radial-gradient(circle at 78% 18%, rgba(var(--accent-rgb), 0.14), transparent 36%),
    #031027;
}

.wire-home-hero__inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(440px, 1.18fr);
  gap: clamp(34px, 5.5vw, 78px);
  align-items: center;
}

.wire-home-hero__copy {
  max-width: 530px;
  min-width: 0;
}

.wire-home-hero h1 {
  max-width: 520px;
  margin: 0;
  color: var(--primary);
  font-size: clamp(42px, 4.9vw, 66px);
  line-height: 1.02;
  letter-spacing: 0;
}

.wire-home-hero p {
  max-width: 560px;
  margin: 22px 0 0;
  color: #042045;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
}

html[data-theme="dark"] .wire-home-hero h1,
html[data-theme="dark"] .wire-home-hero p {
  color: #f3f8f6;
}

.wire-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.wire-home-hero__actions .button {
  min-height: 48px;
  border-radius: 5px;
  padding-inline: 28px;
  text-transform: uppercase;
}

.wire-home-hero__secondary {
  color: var(--nugen-blue-accent);
  border-color: rgba(10, 69, 144, 0.48);
  background: rgba(255, 255, 255, 0.72);
}

.wire-home-hero__secondary:hover {
  color: var(--white);
  background: var(--secondary);
  border-color: var(--secondary);
}

.wire-home-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(7, 29, 53, 0.14);
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.wire-home-hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wire-home-hero__trust span::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 2px;
}

html[data-theme="dark"] .wire-home-hero__trust {
  border-top-color: rgba(234, 244, 251, 0.16);
  color: #eaf4fb;
}

.wire-home-hero__media {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(7, 29, 53, 0.16);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(7, 29, 53, 0.14);
  overflow: hidden;
  background: var(--wash);
}

.wire-home-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.56);
  pointer-events: none;
}

.wire-home-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wire-home-lines,
.wire-palm,
.wire-ground,
.wire-grid-lines {
  fill: none;
  stroke: #7e8da0;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.wire-home-lines {
  stroke: #5e6f82;
  stroke-width: 1.8;
}

.wire-grid-lines {
  stroke: rgba(72, 93, 117, 0.25);
  stroke-width: 1;
}

.wire-palm,
.wire-ground {
  stroke: rgba(94, 111, 130, 0.52);
}

body[data-page="home"] .section {
  padding: 34px 0;
  border-bottom: 1px solid rgba(7, 29, 53, 0.14);
}

body[data-page="home"] .wire-what-is {
  background: #fff;
}

body[data-page="home"] .whatis-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="home"] .whatis-grid {
  grid-template-columns: 0.84fr 0.56fr 0.48fr;
  grid-template-areas:
    "video intro mini"
    "video points mini";
  grid-template-rows: auto 1fr;
  gap: 26px 46px;
}

body[data-page="home"] .whatis-grid > * {
  min-width: 0;
}

body[data-page="home"] .whatis-video-card {
  min-height: 316px;
  border-radius: 8px;
  border-color: rgba(7, 29, 53, 0.24);
  background: var(--nugen-light-bg);
  box-shadow: 0 12px 30px rgba(7, 29, 53, 0.08);
}

body[data-page="home"] .whatis-video-card video {
  opacity: 1;
  filter: none;
}

body[data-page="home"] .whatis-grid__intro h2,
body[data-page="home"] .wire-section-head h2,
body[data-page="home"] .wire-showroom h2 {
  color: var(--nugen-blue-accent);
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.12;
}

body[data-page="home"] .whatis-lead {
  color: #042045;
  font-size: 16px;
  line-height: 1.65;
}

body[data-page="home"] .whatis-sub {
  color: var(--nugen-blue);
}

body[data-page="home"] .whatis-points {
  gap: 20px;
}

body[data-page="home"] .whatis-points__icon {
  width: 34px;
  height: 34px;
  border-radius: 0;
  background: transparent;
  color: var(--nugen-blue-accent);
}

body[data-page="home"] .not-container-mini {
  align-self: end;
  border: 1px solid rgba(10, 69, 144, 0.55);
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
}

body[data-page="home"] .not-container-mini__list {
  grid-template-columns: 1fr;
}

.wire-section-head {
  max-width: 680px;
  margin: 0 auto 34px;
  text-align: center;
}

body[data-page="home"] .wire-process {
  background: #fbfcfd;
}

body[data-page="home"] .process-timeline--5 {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: clamp(24px, 3.8vw, 48px);
  margin-top: 0;
}

body[data-page="home"] .process-timeline--5::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 8%;
  right: 8%;
  border-top: 2px dashed rgba(10, 69, 144, 0.46);
}

body[data-page="home"] .process-timeline--5 .process-step {
  position: relative;
  z-index: 1;
  flex: none;
  max-width: none;
  min-height: 184px;
  padding: 30px 18px 22px;
  border: 1px solid rgba(7, 29, 53, 0.20);
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
  text-align: center;
}

.wire-process__dot {
  position: absolute;
  top: -12px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--nugen-blue-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  transform: translateX(-50%);
}

.wire-process__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 48px;
  color: var(--nugen-blue-accent);
}

.wire-process__icon svg {
  width: 100%;
  height: 100%;
}

body[data-page="home"] .process-timeline--5 .process-step h3 {
  margin: 12px 0 8px;
  color: var(--nugen-blue-accent);
  font-size: 15px;
  line-height: 1.25;
}

body[data-page="home"] .process-timeline--5 .process-step p {
  margin: 0;
  color: var(--nugen-blue);
  font-size: 13px;
  line-height: 1.45;
}

body[data-page="home"] .wire-showroom {
  background: #fff;
}

body[data-page="home"] .showroom-top {
  grid-template-columns: 0.68fr 1fr;
  align-items: center !important;
}

body[data-page="home"] .wire-showroom .split-content__text p {
  color: var(--nugen-blue);
}

body[data-page="home"] .showroom-feature {
  border-radius: 10px;
  border: 1px solid rgba(7, 29, 53, 0.22);
  background: var(--nugen-light-bg);
  box-shadow: 0 16px 40px rgba(7, 29, 53, 0.08);
  overflow: hidden;
}

body[data-page="home"] .showroom-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
}

body[data-page="home"] .showroom-locbar {
  margin-top: 34px;
  grid-template-columns: 1.55fr 1fr;
  border: 1px solid rgba(7, 29, 53, 0.20);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
}

body[data-page="home"] .showroom-locbar__map {
  min-height: 160px;
  border-radius: 0;
  background: #eaf1f7;
}

body[data-page="home"] .showroom-locbar__map iframe {
  filter: saturate(0.72) contrast(0.96) opacity(0.82);
}

body[data-page="home"] .showroom-locbar__info {
  border-left: 1px solid rgba(7, 29, 53, 0.14);
}

body[data-page="home"] .site-footer.wire-footer {
  padding-top: 34px;
  background:
    radial-gradient(circle at 8% 0%, rgba(var(--accent-rgb), 0.10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--nugen-light-bg) 100%);
  border-top: 1px solid rgba(7, 29, 53, 0.14);
  color: var(--nugen-blue);
}

body[data-page="home"] .wire-footer__grid {
  grid-template-columns: 1.55fr repeat(4, 1fr);
  gap: clamp(24px, 4vw, 56px);
}

.wire-footer__brand img {
  width: 148px;
  height: auto;
  margin-bottom: 12px;
}

body[data-page="home"] .site-footer h4 {
  color: var(--secondary);
  font-size: 13px;
  letter-spacing: 0;
}

body[data-page="home"] .site-footer p,
body[data-page="home"] .footer-links a,
body[data-page="home"] .footer-bottom {
  color: #4a5d69;
}

body[data-page="home"] .footer-links a:hover {
  color: var(--secondary);
}

.wire-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.wire-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(var(--accent-rgb), 0.34);
  border-radius: 8px;
  color: var(--secondary);
}

.wire-footer__social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.wire-footer__legal {
  display: inline-flex;
  gap: 16px;
}

.wire-footer__legal a {
  color: inherit;
}

@media (max-width: 1220px) {
  body[data-page="home"] .site-nav {
    gap: 18px;
  }

  body[data-page="home"] .site-nav a {
    font-size: 11px;
  }

  body[data-page="home"] .process-timeline--5 {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }

  body[data-page="home"] .process-timeline--5::before {
    display: none;
  }
}

@media (max-width: 980px) {
  body[data-page="home"] .site-header {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
  }

  body[data-page="home"] .site-header::before {
    border-radius: 0;
  }

  body[data-page="home"] .site-nav a {
    padding: 16px 20px;
  }

  body[data-page="home"] .site-nav a.active::after,
  body[data-page="home"] .nav-link--models::before {
    display: none;
  }

  .wire-home-hero {
    padding-top: 118px;
  }

  .wire-home-hero__inner,
  body[data-page="home"] .whatis-grid,
  body[data-page="home"] .showroom-top,
  body[data-page="home"] .showroom-locbar {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .whatis-grid {
    grid-template-areas:
      "intro"
      "video"
      "points"
      "mini";
  }

  body[data-page="home"] .showroom-locbar__info {
    border-left: 0;
    border-top: 1px solid rgba(7, 29, 53, 0.14);
  }

  body[data-page="home"] .wire-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  body[data-page="home"] .section {
    padding: 28px 0;
  }

  body[data-page="home"] .header-inner {
    height: 68px;
    width: 100vw;
    max-width: 100vw;
    padding-inline: 10px;
    overflow: hidden;
  }

  body[data-page="home"] .brand-logo {
    height: 32px;
  }

  body[data-page="home"] .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  body[data-page="home"] .header-actions {
    flex: 0 0 auto;
    gap: 6px;
  }

  body[data-page="home"] .nav-controls-mount {
    display: none;
  }

  body[data-page="home"]:has(.site-nav.is-open) .nav-controls-mount {
    position: fixed;
    top: 86px;
    left: 24px;
    right: 24px;
    z-index: 150;
    display: inline-flex;
    justify-content: center;
  }

  body[data-page="home"]:has(.site-nav.is-open) .site-nav.is-open {
    padding-top: 74px;
  }

  body[data-page="home"] .nav-slider {
    height: 30px;
  }

  body[data-page="home"] .lang-switcher {
    width: 48px;
  }

  body[data-page="home"] .lang-btn {
    font-size: 0;
    padding-inline: 2px;
  }

  body[data-page="home"] .lang-btn::after {
    font-size: 7px;
  }

  body[data-page="home"] .lang-btn[data-lang="en"]::after { content: "EN"; }
  body[data-page="home"] .lang-btn[data-lang="es"]::after { content: "ES"; }

  body[data-page="home"] .menu-toggle {
    display: block !important;
    position: fixed;
    top: 16px;
    right: 12px;
    z-index: 160;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
  }

  body[data-page="home"] .menu-toggle span,
  body[data-page="home"] .menu-toggle span::before,
  body[data-page="home"] .menu-toggle span::after {
    background-color: var(--primary);
  }

  body[data-page="home"] .menu-toggle::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 16px;
    width: 20px;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 -7px 0 var(--primary), 0 7px 0 var(--primary);
  }

  .wire-home-hero {
    min-height: auto;
    padding: 98px 0 38px;
  }

  .wire-home-hero h1 {
    max-width: 100%;
    font-size: clamp(31px, 9vw, 38px);
    overflow-wrap: normal;
  }

  .wire-home-hero p {
    font-size: 16px;
  }

  .wire-home-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .wire-home-hero__actions .button {
    width: 100%;
    padding-inline: 18px;
  }

  .wire-home-hero__trust {
    gap: 10px 14px;
    font-size: 14px;
  }

  .wire-home-hero__media {
    margin-inline: 0;
  }

  body[data-page="home"] .whatis-grid__intro h2,
  body[data-page="home"] .wire-section-head h2,
  body[data-page="home"] .wire-showroom h2 {
    font-size: 20px;
  }

  body[data-page="home"] .whatis-lead,
  body[data-page="home"] .whatis-sub {
    font-size: 14px;
  }

  body[data-page="home"] .process-timeline--5 {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  body[data-page="home"] .process-timeline--5 .process-step {
    min-height: 0;
  }

  body[data-page="home"] .wire-footer__grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .footer-bottom__inner {
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Homepage full-bleed header video */
body[data-page="home"] .wire-home-hero {
  min-height: clamp(560px, 74vh, 720px);
  padding: 0;
  display: flex;
  align-items: stretch;
  isolation: isolate;
  background: var(--nugen-blue);
  border-bottom: 1px solid rgba(7, 29, 53, 0.18);
}

body[data-page="home"] .wire-home-hero::before,
body[data-page="home"] .wire-home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

body[data-page="home"] .wire-home-hero::before {
  background:
    linear-gradient(90deg, rgba(7, 29, 53, 0.90) 0%, rgba(15, 60, 52, 0.76) 38%, rgba(7, 29, 53, 0.28) 70%, rgba(7, 29, 53, 0.52) 100%),
    linear-gradient(180deg, rgba(4, 17, 31, 0.28) 0%, rgba(4, 17, 31, 0.10) 52%, rgba(4, 17, 31, 0.58) 100%);
}

body[data-page="home"] .wire-home-hero::after {
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(90deg, #000, transparent 74%);
}

body[data-page="home"] .wire-home-hero__inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-top: 98px;
  padding-bottom: 58px;
}

body[data-page="home"] .wire-home-hero__copy {
  max-width: 650px;
}

body[data-page="home"] .wire-home-hero h1,
body[data-page="home"] .wire-home-hero p {
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.24);
}

body[data-page="home"] .wire-home-hero p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.90);
}

body[data-page="home"] .home-hero-badge {
  color: #eaf4fb;
  border-color: rgba(234, 244, 251, 0.28);
  background: rgba(7, 29, 53, 0.38);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

body[data-page="home"] .wire-home-hero__secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.10);
}

body[data-page="home"] .wire-home-hero__secondary:hover {
  color: var(--nugen-blue);
  background: #ffffff;
  border-color: #ffffff;
}

body[data-page="home"] .wire-home-hero__trust {
  color: #ffffff;
  border-top-color: rgba(255, 255, 255, 0.22);
}

body[data-page="home"] .wire-home-hero__trust span::before {
  background: var(--nugen-green);
}

body[data-page="home"] .wire-home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  margin: 0;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: var(--nugen-blue);
}

body[data-page="home"] .wire-home-hero__media::before {
  display: none;
}

body[data-page="home"] .wire-home-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

html[data-theme="dark"] body[data-page="home"] .wire-home-hero {
  background: #04111f;
}

html[data-theme="dark"] body[data-page="home"] .wire-home-hero::before {
  background:
    linear-gradient(90deg, rgba(4, 17, 31, 0.92) 0%, rgba(6, 39, 47, 0.78) 40%, rgba(4, 17, 31, 0.32) 72%, rgba(4, 17, 31, 0.62) 100%),
    linear-gradient(180deg, rgba(4, 17, 31, 0.24) 0%, rgba(4, 17, 31, 0.12) 52%, rgba(4, 17, 31, 0.68) 100%);
}

@media (max-width: 980px) {
  body[data-page="home"] .wire-home-hero {
    min-height: 620px;
  }

  body[data-page="home"] .wire-home-hero::before {
    background:
      linear-gradient(180deg, rgba(7, 29, 53, 0.88) 0%, rgba(15, 60, 52, 0.70) 50%, rgba(7, 29, 53, 0.62) 100%),
      linear-gradient(90deg, rgba(7, 29, 53, 0.76), rgba(7, 29, 53, 0.22));
  }

  body[data-page="home"] .wire-home-hero__inner {
    align-items: flex-end;
    padding-top: 110px;
    padding-bottom: 46px;
  }
}

@media (max-width: 700px) {
  body[data-page="home"] .wire-home-hero {
    min-height: 650px;
    padding: 0;
  }

  body[data-page="home"] .wire-home-hero__inner {
    padding-top: 108px;
    padding-bottom: 34px;
  }

  body[data-page="home"] .wire-home-hero h1 {
    font-size: clamp(32px, 10vw, 42px);
  }

  body[data-page="home"] .wire-home-hero p {
    font-size: 16px;
    line-height: 1.55;
  }
}

/* Homepage mockup redo */
body[data-page="home"] main {
  background: var(--nugen-light-bg);
}

body[data-page="home"] .site-header {
  background: rgba(248, 251, 253, 0.96);
  border-bottom: 1px solid rgba(7, 29, 53, 0.12);
  box-shadow: 0 6px 24px rgba(7, 29, 53, 0.06);
}

body[data-page="home"] .site-nav a {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

body[data-page="home"] .wire-home-hero {
  min-height: auto;
  padding: 108px 0 48px;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(66, 182, 201, 0.16), transparent 34%),
    radial-gradient(circle at 8% 70%, rgba(255, 255, 255, 0.09), transparent 28%),
    linear-gradient(135deg, var(--nugen-blue) 0%, var(--nugen-blue) 48%, #03162F 100%);
  border-bottom: 1px solid rgba(7, 29, 53, 0.12);
}

body[data-page="home"] .wire-home-hero::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 92px 92px;
  opacity: 0.32;
}

body[data-page="home"] .wire-home-hero::after {
  background:
    linear-gradient(90deg, rgba(4, 31, 43, 0.28), transparent 42%),
    radial-gradient(circle at 100% 0%, rgba(67, 182, 201, 0.12), transparent 42%);
  opacity: 1;
  mask-image: none;
}

body[data-page="home"] .wire-home-hero__inner {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(480px, 1.1fr);
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
  padding: 0;
}

body[data-page="home"] .wire-home-hero__copy {
  max-width: 560px;
}

body[data-page="home"] .home-hero-badge,
body[data-page="home"] .home-section-label {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  color: var(--nugen-green);
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-page="home"] .wire-home-hero h1 {
  max-width: 610px;
  color: #ffffff;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.04;
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

body[data-page="home"] .wire-home-hero p {
  max-width: 520px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.90);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
}

body[data-page="home"] .wire-home-hero__actions {
  gap: 20px;
  margin-top: 32px;
}

body[data-page="home"] .wire-home-hero__actions .button {
  min-width: 188px;
  min-height: 46px;
  justify-content: center;
  border-radius: 8px;
  font-size: 13px;
  letter-spacing: 0;
}

body[data-page="home"] .wire-home-hero__secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
}

body[data-page="home"] .wire-home-hero__secondary:hover {
  color: var(--nugen-blue);
  background: #ffffff;
  border-color: #ffffff;
}

body[data-page="home"] .wire-home-hero__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
  padding-top: 0;
  border: 0;
  color: #ffffff;
  font-size: 13px;
}

body[data-page="home"] .wire-home-hero__trust span {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 9px;
  min-width: 0;
  line-height: 1.25;
}

body[data-page="home"] .wire-home-hero__trust span::before {
  width: 22px;
  height: 22px;
  border: 1.5px solid rgba(255, 255, 255, 0.80);
  border-radius: 6px;
  background: transparent;
  box-shadow: inset 0 0 0 4px rgba(67, 182, 201, 0.12);
}

body[data-page="home"] .wire-home-hero__media {
  position: relative;
  inset: auto;
  z-index: 2;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  margin: 0;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 12px;
  box-shadow: 0 30px 68px rgba(0, 0, 0, 0.30);
  background: #03162F;
}

body[data-page="home"] .wire-home-hero__media::before {
  display: block;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(7, 29, 53, 0.28);
}

body[data-page="home"] .wire-home-hero__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body[data-page="home"] .home-why,
body[data-page="home"] .home-model-preview,
body[data-page="home"] .wire-process {
  background: var(--nugen-light-bg);
}

body[data-page="home"] .home-why {
  padding: 42px 0 60px;
}

body[data-page="home"] .wire-section-head {
  margin-bottom: 30px;
  text-align: center;
}

body[data-page="home"] .wire-section-head h2 {
  color: var(--nugen-blue);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
}

body[data-page="home"] .wire-section-head p {
  margin-top: 7px;
  color: var(--nugen-blue);
  font-size: 17px;
}

body[data-page="home"] .home-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

body[data-page="home"] .home-value-card {
  display: grid;
  justify-items: center;
  min-height: 230px;
  padding: 30px 24px 28px;
  text-align: center;
  border: 1px solid rgba(7, 29, 53, 0.13);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(7, 29, 53, 0.07);
}

body[data-page="home"] .home-value-card__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  color: var(--nugen-blue-accent);
}

body[data-page="home"] .home-value-card__icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="home"] .home-value-card h3 {
  margin: 0 0 10px;
  color: var(--nugen-blue);
  font-size: 18px;
}

body[data-page="home"] .home-value-card p {
  margin: 0;
  color: var(--nugen-blue);
  font-size: 15px;
  line-height: 1.5;
}

body[data-page="home"] .wire-what-is {
  padding: 64px 0;
  background: #ffffff;
  border-block: 1px solid rgba(7, 29, 53, 0.10);
}

body[data-page="home"] .whatis-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="home"] .whatis-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1.22fr);
  grid-template-areas: "intro video";
  gap: clamp(42px, 6vw, 82px);
  align-items: center;
}

body[data-page="home"] .whatis-grid__intro h2 {
  color: var(--nugen-blue);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
}

body[data-page="home"] .whatis-lead {
  max-width: 520px;
  color: var(--nugen-blue);
  font-size: 17px;
  line-height: 1.6;
}

body[data-page="home"] .whatis-points {
  display: grid;
  gap: 13px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

body[data-page="home"] .whatis-points li {
  position: relative;
  padding-left: 30px;
  color: var(--nugen-blue);
  font-size: 15px;
}

body[data-page="home"] .whatis-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 13px;
  height: 7px;
  border-left: 2px solid var(--nugen-blue-accent);
  border-bottom: 2px solid var(--nugen-blue-accent);
  transform: rotate(-45deg);
}

body[data-page="home"] .not-container-mini {
  max-width: 390px;
  padding: 18px 20px;
  border: 1px solid rgba(7, 29, 53, 0.14);
  border-radius: 10px;
  background: var(--nugen-light-bg);
  box-shadow: 0 12px 28px rgba(7, 29, 53, 0.06);
}

body[data-page="home"] .not-container-mini h3 {
  margin: 0 0 5px;
  color: var(--nugen-blue);
  font-size: 16px;
}

body[data-page="home"] .not-container-mini p {
  margin: 0;
  color: var(--nugen-blue);
  font-size: 14px;
  line-height: 1.45;
}

body[data-page="home"] .whatis-video-card {
  aspect-ratio: 16 / 9.3;
  border: 1px solid rgba(7, 29, 53, 0.16);
  border-radius: 10px;
  box-shadow: 0 20px 44px rgba(7, 29, 53, 0.14);
}

body[data-page="home"] .home-model-preview {
  padding: 58px 0 64px;
}

body[data-page="home"] .home-model-preview .wire-section-head {
  position: relative;
}

body[data-page="home"] .home-model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

body[data-page="home"] .home-model-card {
  overflow: hidden;
  border: 1px solid rgba(7, 29, 53, 0.13);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(7, 29, 53, 0.07);
}

body[data-page="home"] .home-model-card img {
  width: 100%;
  aspect-ratio: 4 / 2.7;
  object-fit: cover;
  display: block;
}

body[data-page="home"] .home-model-card > div {
  display: grid;
  gap: 9px;
  padding: 18px 18px 20px;
}

body[data-page="home"] .home-model-card h3 {
  margin: 0;
  color: var(--nugen-blue-accent);
  font-size: 16px;
}

body[data-page="home"] .home-model-card p,
body[data-page="home"] .home-model-card span {
  margin: 0;
  color: var(--nugen-blue);
  font-size: 13px;
  line-height: 1.35;
}

body[data-page="home"] .home-model-card .button {
  width: max-content;
  min-height: 0;
  padding: 0;
  color: var(--nugen-blue-accent);
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: 12px;
  text-transform: none;
}

body[data-page="home"] .home-model-preview__cta {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

body[data-page="home"] .home-model-preview__cta .button {
  min-height: 40px;
  border-radius: 8px;
}

body[data-page="home"] .wire-process {
  padding: 54px 0 60px;
  background: #ffffff;
  border-block: 1px solid rgba(7, 29, 53, 0.10);
}

body[data-page="home"] .process-timeline--5 {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

body[data-page="home"] .process-timeline--5::before {
  top: 19px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: rgba(7, 29, 53, 0.38);
}

body[data-page="home"] .process-timeline--5 .process-step {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

body[data-page="home"] .wire-process__dot {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0 auto 28px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--nugen-blue);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 900;
}

body[data-page="home"] .wire-process__icon {
  width: 44px;
  height: 44px;
  margin: 0 0 14px;
  color: var(--nugen-blue-accent);
}

body[data-page="home"] .process-timeline--5 .process-step h3 {
  margin: 0 0 8px;
  color: var(--nugen-blue);
  font-size: 15px;
}

body[data-page="home"] .process-timeline--5 .process-step p {
  max-width: 160px;
  margin: 0;
  color: var(--nugen-blue);
  font-size: 13px;
  line-height: 1.5;
}

body[data-page="home"] .wire-showroom {
  padding: 42px 0 36px;
  background: var(--nugen-light-bg);
}

body[data-page="home"] .home-conversion-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.22fr 0.9fr 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 29, 53, 0.12);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 22px 52px rgba(7, 29, 53, 0.10);
}

body[data-page="home"] .home-conversion-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 286px;
  padding: 32px 34px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body[data-page="home"] .home-conversion-panel--primary {
  color: #ffffff;
  background:
    radial-gradient(circle at 0% 0%, rgba(67, 182, 201, 0.20), transparent 42%),
    linear-gradient(135deg, var(--nugen-blue), #03162F);
}

body[data-page="home"] .home-conversion-panel--primary .home-section-label {
  color: var(--nugen-green);
}

body[data-page="home"] .home-conversion-panel h2 {
  margin: 0 0 12px;
  color: var(--nugen-blue);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.08;
}

body[data-page="home"] .home-conversion-panel--primary h2,
body[data-page="home"] .home-conversion-panel--primary p {
  color: #ffffff;
}

body[data-page="home"] .home-conversion-panel p {
  color: var(--nugen-blue);
  font-size: 15px;
  line-height: 1.55;
}

body[data-page="home"] .home-conversion-panel address {
  display: grid;
  gap: 8px;
  margin: 14px 0 20px;
  color: var(--nugen-blue);
  font-style: normal;
  font-size: 14px;
}

body[data-page="home"] .home-conversion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

body[data-page="home"] .home-conversion-actions .button {
  min-height: 42px;
  border-radius: 8px;
  font-size: 12px;
}

body[data-page="home"] .home-showroom-photo,
body[data-page="home"] .home-map-panel {
  min-height: 286px;
  margin: 0;
  overflow: hidden;
}

body[data-page="home"] .home-showroom-photo img,
body[data-page="home"] .home-map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 286px;
  object-fit: cover;
  border: 0;
}

html[data-theme="dark"] body[data-page="home"] main,
html[data-theme="dark"] body[data-page="home"] .home-why,
html[data-theme="dark"] body[data-page="home"] .home-model-preview,
html[data-theme="dark"] body[data-page="home"] .wire-showroom {
  background: #031027;
}

html[data-theme="dark"] body[data-page="home"] .wire-what-is,
html[data-theme="dark"] body[data-page="home"] .wire-process {
  background: #031027;
  border-color: rgba(234, 244, 251, 0.10);
}

html[data-theme="dark"] body[data-page="home"] .home-value-card,
html[data-theme="dark"] body[data-page="home"] .home-model-card,
html[data-theme="dark"] body[data-page="home"] .not-container-mini,
html[data-theme="dark"] body[data-page="home"] .home-conversion-grid,
html[data-theme="dark"] body[data-page="home"] .home-conversion-panel:not(.home-conversion-panel--primary) {
  color: #eaf4fb;
  border-color: rgba(234, 244, 251, 0.12);
  background: #0B1728;
}

html[data-theme="dark"] body[data-page="home"] .wire-section-head h2,
html[data-theme="dark"] body[data-page="home"] .home-value-card h3,
html[data-theme="dark"] body[data-page="home"] .whatis-grid__intro h2,
html[data-theme="dark"] body[data-page="home"] .not-container-mini h3,
html[data-theme="dark"] body[data-page="home"] .process-timeline--5 .process-step h3,
html[data-theme="dark"] body[data-page="home"] .home-conversion-panel h2 {
  color: #eaf4fb;
}

html[data-theme="dark"] body[data-page="home"] .wire-section-head p,
html[data-theme="dark"] body[data-page="home"] .home-value-card p,
html[data-theme="dark"] body[data-page="home"] .whatis-lead,
html[data-theme="dark"] body[data-page="home"] .whatis-points li,
html[data-theme="dark"] body[data-page="home"] .not-container-mini p,
html[data-theme="dark"] body[data-page="home"] .process-timeline--5 .process-step p,
html[data-theme="dark"] body[data-page="home"] .home-conversion-panel p,
html[data-theme="dark"] body[data-page="home"] .home-conversion-panel address,
html[data-theme="dark"] body[data-page="home"] .home-model-card p,
html[data-theme="dark"] body[data-page="home"] .home-model-card span {
  color: #c9d8d5;
}

@media (max-width: 1120px) {
  body[data-page="home"] .wire-home-hero__inner,
  body[data-page="home"] .whatis-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .home-why-grid,
  body[data-page="home"] .home-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .home-conversion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .wire-home-hero {
    padding: 92px 0 36px;
  }

  body[data-page="home"] .wire-home-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  body[data-page="home"] .wire-home-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body[data-page="home"] .wire-home-hero__actions .button {
    width: 100%;
  }

  body[data-page="home"] .wire-home-hero__trust {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  body[data-page="home"] .wire-home-hero__media {
    aspect-ratio: 4 / 3.2;
  }

  body[data-page="home"] .home-why-grid,
  body[data-page="home"] .home-model-grid,
  body[data-page="home"] .process-timeline--5,
  body[data-page="home"] .home-conversion-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .process-timeline--5::before {
    display: none;
  }

  body[data-page="home"] .wire-process__dot {
    margin-inline: 0;
    margin-bottom: 14px;
  }

  body[data-page="home"] .process-timeline--5 .process-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0 16px;
    align-items: start;
  }

  body[data-page="home"] .wire-process__dot {
    grid-row: span 3;
  }

  body[data-page="home"] .process-timeline--5 .process-step p {
    max-width: none;
  }

  body[data-page="home"] .home-conversion-panel,
  body[data-page="home"] .home-showroom-photo,
  body[data-page="home"] .home-map-panel,
  body[data-page="home"] .home-showroom-photo img,
  body[data-page="home"] .home-map-panel iframe {
    min-height: 240px;
  }
}

/* NuGen logo color-system lock */
html {
  background: var(--nugen-light-bg);
}

body {
  color: var(--nugen-blue);
  background: var(--nugen-light-bg);
}

.c-scrollbar__thumb {
  background: var(--nugen-green);
}

.c-scrollbar__thumb:hover,
.c-scrollbar.is-dragging .c-scrollbar__thumb {
  background: var(--nugen-blue-accent);
}

.site-header {
  border-bottom-color: rgba(var(--nugen-blue-rgb), 0.14);
  box-shadow: 0 10px 30px rgba(var(--nugen-blue-rgb), 0.06);
}

.site-header::before,
body[data-page="home"] .site-header,
body[data-page="models"] .site-header {
  background: rgba(245, 249, 248, 0.96);
}

.site-nav a,
body[data-page="home"] .site-nav a {
  color: var(--nugen-blue);
}

.site-nav a:hover,
.site-nav a.active,
body[data-page="home"] .site-nav a:hover,
body[data-page="home"] .site-nav a.active,
body[data-page="home"] .site-nav a[href="/"],
body[data-page="models"] .site-nav a[href="/models"],
body[data-page="gallery"] .site-nav a[href="/gallery"],
body[data-page="about"] .site-nav a[href="/about"],
body[data-page="financing"] .site-nav a[href="/financing"],
body[data-page="faq"] .site-nav a[href="/faq"],
body[data-page="contact"] .site-nav a[href="/contact"] {
  color: var(--nugen-blue-accent);
}

.site-nav a.active::after,
body[data-page="home"] .site-nav a[href="/"]::after,
body[data-page="models"] .site-nav a[href="/models"]::after,
body[data-page="gallery"] .site-nav a[href="/gallery"]::after,
body[data-page="about"] .site-nav a[href="/about"]::after,
body[data-page="financing"] .site-nav a[href="/financing"]::after,
body[data-page="faq"] .site-nav a[href="/faq"]::after,
body[data-page="contact"] .site-nav a[href="/contact"]::after {
  background: var(--nugen-green);
}

.button--primary,
.header-actions > .button,
body[data-page="home"] .header-actions > .button,
main .button--primary,
main .hero .button--primary,
main .cta-band .button--primary,
main .form-panel .button--primary,
body[data-page="home"] .home-model-preview__cta .button,
body[data-page="home"] .home-conversion-actions .button--primary {
  color: #FFFFFF;
  background: var(--nugen-green);
  border-color: var(--nugen-green);
  box-shadow: 0 8px 30px rgba(var(--nugen-green-rgb), 0.16);
}

.button--primary:hover,
.header-actions > .button:hover,
body[data-page="home"] .header-actions > .button:hover,
main .button--primary:hover,
main .hero .button--primary:hover,
main .cta-band .button--primary:hover,
main .form-panel .button--primary:hover,
body[data-page="home"] .home-model-preview__cta .button:hover,
body[data-page="home"] .home-conversion-actions .button--primary:hover {
  color: #FFFFFF;
  background: var(--nugen-green-hover);
  border-color: var(--nugen-green-hover);
}

.button--outline,
.button--secondary,
main .button--outline,
body[data-page="home"] .wire-home-hero__secondary,
body[data-page="home"] .home-conversion-actions .button--outline {
  color: var(--nugen-blue);
  background: #FFFFFF;
  border-color: rgba(var(--nugen-blue-rgb), 0.38);
}

.button--outline:hover,
.button--secondary:hover,
main .button--outline:hover,
body[data-page="home"] .wire-home-hero__secondary:hover,
body[data-page="home"] .home-conversion-actions .button--outline:hover {
  color: var(--nugen-blue-accent);
  background: var(--nugen-light-bg);
  border-color: var(--nugen-blue-accent);
}

.button--accent,
main .button--accent,
main a:not(.button):not(.brand),
.footer-links a:hover {
  color: var(--nugen-blue-accent);
}

.button--accent,
main .button--accent {
  background: var(--nugen-blue-accent);
  border-color: var(--nugen-blue-accent);
  color: #FFFFFF;
}

.button--accent:hover,
main .button--accent:hover {
  background: var(--nugen-blue);
  border-color: var(--nugen-blue);
  color: #FFFFFF;
}

.section--wash,
body[data-page="home"] main,
body[data-page="home"] .home-why,
body[data-page="home"] .home-model-preview,
body[data-page="home"] .wire-showroom,
body[data-page="models"],
body[data-page="models"] main,
body[data-page="models"] #configurations,
body[data-page="models"] #specifications,
body[data-page="models"] #model-inquiry {
  background: var(--nugen-light-bg);
}

.hero h1,
.section-head h2,
.wire-section-head h2,
.site-footer h3,
.site-footer h4,
body[data-page="home"] .wire-section-head h2,
body[data-page="home"] .home-value-card h3,
body[data-page="home"] .whatis-grid__intro h2,
body[data-page="home"] .not-container-mini h3,
body[data-page="home"] .process-timeline--5 .process-step h3,
body[data-page="home"] .home-conversion-panel h2,
body[data-page="models"] h1,
body[data-page="models"] h2,
body[data-page="models"] h3 {
  color: var(--nugen-blue);
}

.eyebrow,
.badge,
.models-badge,
.config-badge,
body[data-page="home"] .home-hero-badge,
body[data-page="home"] .home-section-label {
  color: var(--nugen-green);
}

.feature-card svg,
.process-step svg,
.model-card svg,
.gallery-filter.active,
body[data-page="home"] .home-value-card__icon,
body[data-page="home"] .wire-process__icon,
body[data-page="home"] .home-model-card h3,
body[data-page="home"] .home-model-card .button,
.models-inclusion-card::before,
.models-option-card::before,
.models-build-detail-card h3 {
  color: var(--nugen-blue-accent);
}

body[data-page="home"] .whatis-points li::before {
  border-left-color: var(--nugen-green);
  border-bottom-color: var(--nugen-green);
}

.seo-answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.seo-answer-card {
  padding: 14px;
  border: 1px solid rgba(var(--nugen-blue-rgb), 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 30px rgba(var(--nugen-blue-rgb), 0.05);
}

.seo-answer-card h3 {
  margin: 0 0 6px;
  color: var(--nugen-blue);
  font-size: 15px;
}

.seo-answer-card p {
  margin: 0;
  color: #445066;
  font-size: 13px;
  line-height: 1.45;
}

html[data-theme="dark"] .seo-answer-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(234, 243, 255, 0.12);
}

html[data-theme="dark"] .seo-answer-card p {
  color: #C9D6E2;
}

@media (max-width: 640px) {
  .seo-answer-grid {
    grid-template-columns: 1fr;
  }
}

body[data-page="home"] .wire-process__dot,
.models-filter-pill.active,
.models-closer-tab.is-active,
.models-build-details > summary,
.form-submit,
.submit-btn {
  color: #FFFFFF;
  background: var(--nugen-green);
  border-color: var(--nugen-green);
}

body[data-page="home"] .wire-home-hero {
  background:
    radial-gradient(circle at 78% 8%, rgba(var(--nugen-green-rgb), 0.16), transparent 34%),
    radial-gradient(circle at 8% 70%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(135deg, #042045 0%, #06305E 52%, #02142B 100%);
}

body[data-page="home"] .wire-home-hero::after {
  background:
    linear-gradient(90deg, rgba(var(--nugen-blue-rgb), 0.32), transparent 42%),
    radial-gradient(circle at 100% 0%, rgba(var(--nugen-green-rgb), 0.14), transparent 42%);
}

body[data-page="home"] .wire-home-hero__trust span::before {
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 4px rgba(var(--nugen-green-rgb), 0.16);
}

body[data-page="home"] .home-conversion-panel--primary {
  background:
    radial-gradient(circle at 0% 0%, rgba(var(--nugen-green-rgb), 0.22), transparent 42%),
    linear-gradient(135deg, var(--nugen-blue), #03162F);
}

.site-footer,
body[data-page="home"] .site-footer.wire-footer {
  background: var(--nugen-light-bg);
  border-top-color: rgba(var(--nugen-blue-rgb), 0.12);
}

html[data-theme="dark"] body {
  color: #EAF3FF;
  background: #031027;
}

html[data-theme="dark"] .site-header::before,
html[data-theme="dark"] body[data-page="home"] .site-header,
html[data-theme="dark"] body[data-page="models"] .site-header {
  background: rgba(3, 16, 39, 0.94);
}

html[data-theme="dark"] .site-nav a,
html[data-theme="dark"] body[data-page="home"] .site-nav a,
html[data-theme="dark"] body[data-page="models"] .site-nav a,
html[data-theme="dark"] body[data-page="gallery"] .site-nav a,
html[data-theme="dark"] body[data-page="about"] .site-nav a,
html[data-theme="dark"] body[data-page="financing"] .site-nav a,
html[data-theme="dark"] body[data-page="faq"] .site-nav a,
html[data-theme="dark"] body[data-page="contact"] .site-nav a,
html[data-theme="dark"] body[data-page="terms"] .site-nav a {
  color: #EAF3FF !important;
}

html[data-theme="dark"] .site-nav a:hover,
html[data-theme="dark"] .site-nav a.active,
html[data-theme="dark"] body[data-page="home"] .site-nav a[href="/"],
html[data-theme="dark"] body[data-page="models"] .site-nav a[href="/models"],
html[data-theme="dark"] body[data-page="gallery"] .site-nav a[href="/gallery"],
html[data-theme="dark"] body[data-page="about"] .site-nav a[href="/about"],
html[data-theme="dark"] body[data-page="financing"] .site-nav a[href="/financing"],
html[data-theme="dark"] body[data-page="faq"] .site-nav a[href="/faq"],
html[data-theme="dark"] body[data-page="contact"] .site-nav a[href="/contact"] {
  color: #7EB7E6;
}

html[data-theme="dark"] .button--outline,
html[data-theme="dark"] main .button--outline,
html[data-theme="dark"] body[data-page="home"] .wire-home-hero__secondary,
html[data-theme="dark"] body[data-page="home"] .home-conversion-actions .button--outline {
  color: #EAF3FF;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(234, 243, 255, 0.34);
}

html[data-theme="dark"] .section--wash,
html[data-theme="dark"] body[data-page="home"] main,
html[data-theme="dark"] body[data-page="home"] .home-why,
html[data-theme="dark"] body[data-page="home"] .home-model-preview,
html[data-theme="dark"] body[data-page="home"] .wire-showroom,
html[data-theme="dark"] body[data-page="models"],
html[data-theme="dark"] body[data-page="models"] main,
html[data-theme="dark"] body[data-page="models"] #configurations,
html[data-theme="dark"] body[data-page="models"] #specifications,
html[data-theme="dark"] body[data-page="models"] #model-inquiry {
  background: #031027;
}

html[data-theme="dark"] .hero h1,
html[data-theme="dark"] .section-head h2,
html[data-theme="dark"] .wire-section-head h2,
html[data-theme="dark"] body[data-page="home"] .wire-section-head h2,
html[data-theme="dark"] body[data-page="home"] .home-value-card h3,
html[data-theme="dark"] body[data-page="home"] .whatis-grid__intro h2,
html[data-theme="dark"] body[data-page="home"] .not-container-mini h3,
html[data-theme="dark"] body[data-page="home"] .process-timeline--5 .process-step h3,
html[data-theme="dark"] body[data-page="home"] .home-conversion-panel h2,
html[data-theme="dark"] body[data-page="models"] h1,
html[data-theme="dark"] body[data-page="models"] h2,
html[data-theme="dark"] body[data-page="models"] h3 {
  color: #EAF3FF;
}

html[data-theme="dark"] .site-footer,
html[data-theme="dark"] body[data-page="home"] .site-footer.wire-footer {
  background: #031027;
  border-top-color: rgba(234, 243, 255, 0.12);
}

:root[data-theme="dark"] .site-header .site-nav a {
  color: #EAF3FF !important;
}

:root[data-theme="dark"] .site-header .site-nav a:hover,
:root[data-theme="dark"] .site-header .site-nav a.active,
:root[data-theme="dark"] body[data-page="home"] .site-header .site-nav a[href="/"],
:root[data-theme="dark"] body[data-page="models"] .site-header .site-nav a[href="/models"],
:root[data-theme="dark"] body[data-page="gallery"] .site-header .site-nav a[href="/gallery"],
:root[data-theme="dark"] body[data-page="about"] .site-header .site-nav a[href="/about"],
:root[data-theme="dark"] body[data-page="financing"] .site-header .site-nav a[href="/financing"],
:root[data-theme="dark"] body[data-page="faq"] .site-header .site-nav a[href="/faq"],
:root[data-theme="dark"] body[data-page="contact"] .site-header .site-nav a[href="/contact"] {
  color: #7EB7E6 !important;
}

/* Homepage cinematic full-width hero */
body[data-page="home"] .wire-home-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: stretch;
  min-height: clamp(620px, calc(100svh - 72px), 780px);
  padding: 0;
  overflow: hidden;
  background: var(--nugen-blue);
}

body[data-page="home"] .wire-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 20%, rgba(var(--nugen-green-rgb), 0.28), transparent 32%),
    linear-gradient(90deg, rgba(var(--nugen-blue-rgb), 0.94) 0%, rgba(var(--nugen-blue-rgb), 0.82) 36%, rgba(var(--nugen-blue-rgb), 0.46) 66%, rgba(var(--nugen-blue-rgb), 0.22) 100%),
    linear-gradient(180deg, rgba(2, 12, 29, 0.18) 0%, rgba(2, 12, 29, 0.48) 100%);
}

body[data-page="home"] .wire-home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.44) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.44) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.72) 42%, transparent 78%);
}

body[data-page="home"] .wire-home-hero__inner {
  position: static;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  grid-template-columns: none;
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  min-height: inherit;
  margin: 0 auto;
  padding-top: clamp(84px, 11vw, 128px);
  padding-bottom: clamp(52px, 7vw, 84px);
}

body[data-page="home"] .wire-home-hero__copy {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: 0;
  color: #FFFFFF;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body[data-page="home"] .home-hero-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 18px;
  padding: 0;
  color: #DDF5E8;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

body[data-page="home"] .wire-home-hero h1 {
  max-width: 680px;
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(46px, 6.8vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.34);
}

body[data-page="home"] .wire-home-hero p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
}

body[data-page="home"] .wire-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

body[data-page="home"] .wire-home-hero__actions .button {
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

body[data-page="home"] .wire-home-hero__actions .button--primary {
  color: #FFFFFF;
  background: var(--nugen-green);
  border-color: var(--nugen-green);
}

body[data-page="home"] .wire-home-hero__actions .button--primary:hover,
body[data-page="home"] .wire-home-hero__actions .button--primary:focus-visible {
  color: #FFFFFF;
  background: var(--nugen-green-hover);
  border-color: var(--nugen-green-hover);
}

body[data-page="home"] .wire-home-hero__secondary,
html[data-theme="dark"] body[data-page="home"] .wire-home-hero__secondary {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.72);
}

body[data-page="home"] .wire-home-hero__secondary:hover,
body[data-page="home"] .wire-home-hero__secondary:focus-visible,
html[data-theme="dark"] body[data-page="home"] .wire-home-hero__secondary:hover,
html[data-theme="dark"] body[data-page="home"] .wire-home-hero__secondary:focus-visible {
  color: var(--nugen-blue);
  background: #FFFFFF;
  border-color: #FFFFFF;
}

body[data-page="home"] .wire-home-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.9);
}

body[data-page="home"] .wire-home-hero__trust span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 0;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body[data-page="home"] .wire-home-hero__trust span::before {
  content: "";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 6px;
  background: rgba(var(--nugen-green-rgb), 0.28);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.08);
}

body[data-page="home"] .wire-home-hero__trust span::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 5px;
  margin-left: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-1px) rotate(-45deg);
}

body[data-page="home"] .wire-home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
  transform: none;
  border: 0;
  border-radius: 0;
  background: var(--nugen-blue);
  box-shadow: none;
}

body[data-page="home"] .wire-home-hero__media::before {
  display: none;
}

body[data-page="home"] .wire-home-hero__poster,
body[data-page="home"] .wire-home-hero__poster img,
body[data-page="home"] .wire-home-hero__media video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

body[data-page="home"] .wire-home-hero__poster {
  z-index: 0;
  margin: 0;
}

body[data-page="home"] .wire-home-hero__poster img,
body[data-page="home"] .wire-home-hero__media video {
  object-fit: cover;
  object-position: 64% center;
}

body[data-page="home"] .wire-home-hero__poster img {
  opacity: 0.82;
}

body[data-page="home"] .wire-home-hero__media video {
  z-index: 1;
  opacity: 0;
  transition: opacity 220ms ease;
}

body[data-page="home"] .wire-home-hero__media video.is-video-ready {
  opacity: 0.82;
}

html[data-theme="dark"] body[data-page="home"] .wire-home-hero {
  background: #020C1D;
}

html[data-theme="dark"] body[data-page="home"] .wire-home-hero::before {
  background:
    radial-gradient(circle at 14% 20%, rgba(var(--nugen-green-rgb), 0.24), transparent 32%),
    linear-gradient(90deg, rgba(2, 12, 29, 0.96) 0%, rgba(2, 12, 29, 0.86) 40%, rgba(2, 12, 29, 0.5) 70%, rgba(2, 12, 29, 0.28) 100%),
    linear-gradient(180deg, rgba(2, 12, 29, 0.22) 0%, rgba(2, 12, 29, 0.58) 100%);
}

@media (max-width: 900px) {
  body[data-page="home"] .wire-home-hero {
    min-height: 660px;
  }

  body[data-page="home"] .wire-home-hero::before {
    background:
      radial-gradient(circle at 22% 18%, rgba(var(--nugen-green-rgb), 0.3), transparent 34%),
      linear-gradient(90deg, rgba(var(--nugen-blue-rgb), 0.95) 0%, rgba(var(--nugen-blue-rgb), 0.86) 48%, rgba(var(--nugen-blue-rgb), 0.48) 100%),
      linear-gradient(180deg, rgba(2, 12, 29, 0.14) 0%, rgba(2, 12, 29, 0.58) 100%);
  }

  body[data-page="home"] .wire-home-hero__inner {
    padding-top: 92px;
    padding-bottom: 56px;
  }

  body[data-page="home"] .wire-home-hero__copy {
    max-width: 620px;
  }

  body[data-page="home"] .wire-home-hero h1 {
    font-size: clamp(40px, 8.4vw, 58px);
  }

  body[data-page="home"] .wire-home-hero p {
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  body[data-page="home"] .wire-home-hero {
    min-height: 604px;
  }

  body[data-page="home"] .wire-home-hero::before {
    background:
      linear-gradient(180deg, rgba(var(--nugen-blue-rgb), 0.86) 0%, rgba(var(--nugen-blue-rgb), 0.78) 52%, rgba(var(--nugen-blue-rgb), 0.9) 100%),
      linear-gradient(90deg, rgba(var(--nugen-blue-rgb), 0.9) 0%, rgba(var(--nugen-blue-rgb), 0.58) 100%);
  }

  body[data-page="home"] .wire-home-hero::after {
    opacity: 0.08;
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.7) 52%, transparent 100%);
  }

  body[data-page="home"] .wire-home-hero__inner {
    align-items: flex-end;
    padding-top: 92px;
    padding-bottom: 40px;
  }

  body[data-page="home"] .home-hero-badge {
    margin-bottom: 14px;
    font-size: 12px;
  }

  body[data-page="home"] .wire-home-hero h1 {
    font-size: clamp(34px, 10.4vw, 46px);
    line-height: 1.04;
  }

  body[data-page="home"] .wire-home-hero p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.48;
  }

  body[data-page="home"] .wire-home-hero__actions {
    gap: 10px;
    margin-top: 24px;
  }

  body[data-page="home"] .wire-home-hero__actions .button {
    width: 100%;
    justify-content: center;
  }

  body[data-page="home"] .wire-home-hero__trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  body[data-page="home"] .wire-home-hero__media video {
    object-position: 68% center;
  }
}

/* Hero performance guardrails: keep fixed header compositing cheap while scrolling. */
body[data-page="home"] .site-header::before {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

@media (max-width: 900px), (prefers-reduced-motion: reduce) {
  body[data-page="home"] .wire-home-hero__media video {
    display: none;
  }
}

/* Homepage mobile/tablet polish: keep sections intentionally stacked, not squeezed. */
@media (max-width: 900px) {
  body[data-page="home"] .container {
    width: min(100%, calc(100% - 40px));
  }

  body[data-page="home"] .section {
    padding-block: 46px;
  }

  body[data-page="home"] .wire-section-head {
    max-width: 100%;
    margin-bottom: 24px;
  }

  body[data-page="home"] .wire-section-head h2,
  body[data-page="home"] .whatis-grid__intro h2,
  body[data-page="home"] .home-conversion-panel h2 {
    font-size: clamp(29px, 7vw, 38px);
    line-height: 1.12;
  }

  body[data-page="home"] .wire-section-head p,
  body[data-page="home"] .whatis-lead,
  body[data-page="home"] .home-conversion-panel p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.52;
  }

  body[data-page="home"] .wire-home-hero {
    min-height: 620px;
  }

  body[data-page="home"] .wire-home-hero__inner {
    width: min(100%, calc(100% - 40px));
  }

  body[data-page="home"] .wire-home-hero h1 {
    max-width: 12ch;
    font-size: clamp(38px, 8.6vw, 52px);
  }

  body[data-page="home"] .wire-home-hero p {
    max-width: 36rem;
  }

  body[data-page="home"] .wire-home-hero__actions {
    max-width: 420px;
  }

  body[data-page="home"] .wire-home-hero__actions .button {
    min-height: 52px;
  }

  body[data-page="home"] .wire-home-hero__trust {
    max-width: 420px;
  }

  body[data-page="home"]:has(.site-nav.is-open) .nav-controls-mount {
    top: 82px;
    left: 20px;
    right: 20px;
    gap: 8px;
    align-items: center;
    justify-content: center;
  }

  body[data-page="home"]:has(.site-nav.is-open) .lang-switcher {
    width: 72px;
  }

  body[data-page="home"]:has(.site-nav.is-open) .lang-btn {
    min-width: 0;
    font-size: 11px;
    padding-inline: 6px;
  }

  body[data-page="home"]:has(.site-nav.is-open) .lang-btn::after {
    content: none;
  }

  body[data-page="home"] .home-why {
    padding-top: 42px;
  }

  body[data-page="home"] .home-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  body[data-page="home"] .home-value-card {
    min-height: 0;
    padding: 18px;
  }

  body[data-page="home"] .home-value-card__icon {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
  }

  body[data-page="home"] .home-value-card h3 {
    font-size: 18px;
  }

  body[data-page="home"] .home-value-card p {
    font-size: 14px;
    line-height: 1.45;
  }

  body[data-page="home"] .wire-what-is {
    padding-block: 46px;
  }

  body[data-page="home"] .whatis-card {
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body[data-page="home"] .whatis-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-auto-flow: row;
    grid-template-areas: none !important;
    gap: 18px;
    width: 100%;
    align-items: stretch;
  }

  body[data-page="home"] .whatis-grid__intro {
    display: contents;
  }

  body[data-page="home"] .whatis-grid__video,
  body[data-page="home"] .whatis-points,
  body[data-page="home"] .not-container-mini,
  body[data-page="home"] .seo-answer-grid,
  body[data-page="home"] .whatis-grid__intro > * {
    grid-area: auto !important;
    grid-column: 1 / -1 !important;
    min-width: 0;
  }

  body[data-page="home"] .whatis-grid__intro > .home-section-label {
    order: 1;
  }

  body[data-page="home"] .whatis-grid__intro > h2 {
    order: 2;
    margin: 0;
  }

  body[data-page="home"] .whatis-grid__intro > .whatis-lead {
    order: 3;
    margin: 0;
  }

  body[data-page="home"] .whatis-grid__video {
    order: 4;
    width: 100%;
    min-width: 0;
  }

  body[data-page="home"] .not-container-mini {
    order: 5;
    max-width: none;
    width: 100%;
    margin: 2px 0 0;
    padding: 16px;
  }

  body[data-page="home"] .whatis-points {
    order: 6;
    width: 100%;
    margin: 2px 0 0;
    gap: 10px;
  }

  body[data-page="home"] .seo-answer-grid {
    order: 7;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 2px;
  }

  body[data-page="home"] .whatis-video-card {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    background:
      linear-gradient(rgba(var(--nugen-blue-rgb), 0.12), rgba(var(--nugen-blue-rgb), 0.12)),
      url("../img/nugen-home-hero-poster-960.webp") center / cover no-repeat;
  }

  body[data-page="home"] .whatis-video-card video {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
  }

  body[data-page="home"] .home-model-preview {
    padding-block: 44px 48px;
  }

  body[data-page="home"] .home-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  body[data-page="home"] .home-model-card img {
    aspect-ratio: 16 / 9;
    max-height: 210px;
  }

  body[data-page="home"] .home-model-card > div {
    gap: 7px;
    padding: 14px;
  }

  body[data-page="home"] .home-model-card h3 {
    font-size: 16px;
  }

  body[data-page="home"] .home-model-card p,
  body[data-page="home"] .home-model-card span {
    font-size: 13px;
  }

  body[data-page="home"] .home-model-card .button {
    width: 100%;
    min-height: 40px;
    margin-top: 4px;
    justify-content: center;
    border: 1px solid rgba(var(--nugen-blue-accent-rgb), 0.28);
    border-radius: 8px;
  }

  body[data-page="home"] .home-model-preview__cta {
    justify-content: stretch;
  }

  body[data-page="home"] .home-model-preview__cta .button {
    width: 100%;
    min-height: 48px;
  }

  body[data-page="home"] .wire-process {
    padding-block: 44px;
  }

  body[data-page="home"] .process-timeline--5 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body[data-page="home"] .process-timeline--5::before {
    display: none;
  }

  body[data-page="home"] .process-timeline--5 .process-step {
    display: grid;
    grid-template-columns: 42px 42px minmax(0, 1fr);
    gap: 0 12px;
    align-items: center;
    min-height: 0;
    padding: 14px;
    border: 1px solid rgba(var(--nugen-blue-rgb), 0.12);
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 0 10px 24px rgba(var(--nugen-blue-rgb), 0.05);
  }

  body[data-page="home"] .wire-process__dot {
    grid-row: 1 / span 2;
    width: 34px;
    height: 34px;
    margin: 0;
  }

  body[data-page="home"] .wire-process__icon {
    grid-row: 1 / span 2;
    width: 36px;
    height: 36px;
    margin: 0;
  }

  body[data-page="home"] .process-timeline--5 .process-step h3 {
    margin: 0 0 3px;
    font-size: 16px;
  }

  body[data-page="home"] .process-timeline--5 .process-step p {
    max-width: none;
    font-size: 13px;
    line-height: 1.42;
  }

  body[data-page="home"] .wire-showroom {
    padding-block: 42px;
  }

  body[data-page="home"] .home-conversion-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body[data-page="home"] .home-conversion-panel,
  body[data-page="home"] .home-map-panel,
  body[data-page="home"] .home-showroom-photo {
    width: 100%;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(var(--nugen-blue-rgb), 0.12);
    border-radius: 10px;
    box-shadow: 0 14px 30px rgba(var(--nugen-blue-rgb), 0.07);
  }

  body[data-page="home"] .home-conversion-panel {
    padding: 22px;
  }

  body[data-page="home"] .home-conversion-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body[data-page="home"] .home-conversion-actions .button {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  body[data-page="home"] .home-showroom-photo img {
    height: clamp(210px, 38vw, 300px);
    min-height: 0;
    object-fit: cover;
    object-position: center;
  }

  body[data-page="home"] .home-map-panel iframe {
    height: clamp(220px, 42vw, 320px);
    min-height: 0;
    background: var(--nugen-light-bg);
  }

  html[data-theme="dark"] body[data-page="home"] .process-timeline--5 .process-step {
    background: #0B1728;
    border-color: rgba(234, 243, 255, 0.12);
    box-shadow: none;
  }
}

@media (max-width: 640px) {
  body[data-page="home"] .container {
    width: min(100%, calc(100% - 32px));
  }

  body[data-page="home"] .section {
    padding-block: 38px;
  }

  body[data-page="home"] .wire-home-hero {
    min-height: 584px;
  }

  body[data-page="home"] .wire-home-hero__inner {
    width: min(100%, calc(100% - 40px));
    padding-top: 84px;
    padding-bottom: 34px;
  }

  body[data-page="home"] .wire-home-hero h1 {
    max-width: 10.8ch;
    font-size: clamp(36px, 10vw, 44px);
  }

  body[data-page="home"] .wire-home-hero p {
    font-size: 16px;
  }

  body[data-page="home"] .wire-home-hero__trust {
    gap: 8px;
  }

  body[data-page="home"] .home-why-grid,
  body[data-page="home"] .home-model-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body[data-page="home"] .home-value-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 4px 14px;
    align-items: center;
    padding: 16px;
    text-align: left;
  }

  body[data-page="home"] .home-value-card__icon {
    grid-row: 1 / span 2;
    margin: 0;
  }

  body[data-page="home"] .home-value-card p {
    margin: 0;
  }

  body[data-page="home"] .home-model-card img {
    max-height: 190px;
  }

  body[data-page="home"] .home-model-card > div {
    padding: 13px 14px 15px;
  }

  body[data-page="home"] .process-timeline--5 .process-step {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 2px 12px;
  }

  body[data-page="home"] .wire-process__dot {
    grid-row: 1 / span 2;
  }

  body[data-page="home"] .wire-process__icon {
    display: none;
  }

  body[data-page="home"] .home-conversion-panel {
    padding: 20px;
  }

  body[data-page="home"] .site-footer.wire-footer {
    padding-top: 38px;
  }

  body[data-page="home"] .wire-footer__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  body[data-page="home"] .wire-footer__brand img {
    max-width: 132px;
  }

  body[data-page="home"] .footer-links a,
  body[data-page="home"] .wire-footer__contact a,
  body[data-page="home"] .wire-footer__legal a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
  }
}

/* Final mobile polish: site menu + Models inclusions */
@media (max-width: 768px) {
  .site-nav.is-open {
    padding: 132px 18px 22px;
    border-bottom: 1px solid rgba(4, 32, 69, 0.12);
    background:
      linear-gradient(180deg, rgba(245, 249, 248, 0.98), rgba(255, 255, 255, 0.98));
    box-shadow: 0 18px 36px rgba(4, 32, 69, 0.13);
  }

  .site-nav.is-open a {
    min-height: 46px;
    justify-content: center;
    border: 1px solid rgba(4, 32, 69, 0.08);
    border-radius: 10px;
    background: #fff;
    color: var(--nugen-blue);
    font-size: 15px;
    font-weight: 850;
  }

  .site-nav.is-open a:hover,
  .site-nav.is-open a.active,
  body[data-page="home"] .site-nav.is-open a[href="/"],
  body[data-page="models"] .site-nav.is-open a[href="/models"],
  body[data-page="gallery"] .site-nav.is-open a[href="/gallery"],
  body[data-page="about"] .site-nav.is-open a[href="/about"],
  body[data-page="financing"] .site-nav.is-open a[href="/financing"],
  body[data-page="faq"] .site-nav.is-open a[href="/faq"],
  body[data-page="contact"] .site-nav.is-open a[href="/contact"] {
    border-color: rgba(18, 127, 56, 0.22);
    background: rgba(18, 127, 56, 0.08);
    color: var(--nugen-blue);
  }

  body:has(.site-nav.is-open) .nav-controls-mount {
    top: 82px;
    gap: 8px;
  }

  body:has(.site-nav.is-open) .lang-switcher {
    width: 72px;
  }

  body:has(.site-nav.is-open) .lang-btn {
    min-width: 0;
    min-height: 34px;
    padding-inline: 6px;
    font-size: 11px;
  }

  body:has(.site-nav.is-open) .lang-btn::after {
    content: none;
  }

  body:has(.site-nav.is-open) .header-actions > .button {
    top: 128px;
    min-height: 44px;
    border-radius: 10px;
  }

  body[data-page="models"] #specifications {
    padding: 24px 0;
  }

  body[data-page="models"] .models-inclusions-panel {
    padding: 20px;
    border-radius: 12px;
  }

  body[data-page="models"] .models-inclusions-panel h2 {
    font-size: clamp(28px, 7vw, 34px);
    line-height: 1.08;
  }

  body[data-page="models"] .models-inclusions-panel p {
    font-size: 15px;
    line-height: 1.5;
  }

  body[data-page="models"] .models-inclusion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
  }

  body[data-page="models"] .models-inclusion-card {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 4px 11px;
    align-items: center;
    min-height: 0;
    padding: 13px;
    border-radius: 10px;
  }

  body[data-page="models"] .models-inclusion-card__icon {
    grid-row: 1 / span 2;
    width: 36px;
    height: 36px;
  }

  body[data-page="models"] .models-inclusion-card h3,
  body[data-page="models"] .models-inclusion-card p {
    grid-column: 2;
  }

  body[data-page="models"] .models-inclusion-card h3 {
    margin: 0;
    font-size: 15px;
  }

  body[data-page="models"] .models-inclusion-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.35;
  }

  body[data-page="models"] .models-build-details {
    margin-top: 16px;
  }

  body[data-page="models"] .models-build-details summary {
    width: 100%;
    justify-content: center;
    min-height: 46px;
    border-radius: 10px;
    font-size: 14px;
  }

  body[data-page="models"] .models-build-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
    padding: 12px;
    border-radius: 12px;
  }

  body[data-page="models"] .models-build-detail-card {
    border-radius: 10px;
  }

  body[data-page="models"] .models-build-detail-card img {
    aspect-ratio: 16 / 10;
    max-height: 230px;
  }

  body[data-page="models"] .models-build-detail-card div {
    padding: 10px 11px 12px;
  }

  body[data-page="models"] .models-build-detail-card h3 {
    font-size: 14px;
  }

  body[data-page="models"] .models-build-detail-card p {
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  body[data-page="models"] .models-inclusions-panel {
    width: min(100%, calc(100vw - 32px));
    padding: 18px 16px;
  }

  body[data-page="models"] .models-inclusion-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="models"] .models-inclusion-card {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 14px;
  }

  body[data-page="models"] .models-build-detail-grid {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  body[data-page="models"] .models-build-detail-card img {
    max-height: 220px;
  }
}

html[data-theme="dark"] .site-nav.is-open {
  border-bottom-color: rgba(245, 249, 248, 0.14);
  background:
    linear-gradient(180deg, rgba(3, 16, 39, 0.98), rgba(11, 23, 40, 0.98));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] .site-nav.is-open a {
  border-color: rgba(245, 249, 248, 0.12);
  background: rgba(245, 249, 248, 0.055);
  color: var(--nugen-light-bg);
}

html[data-theme="dark"] .site-nav.is-open a:hover,
html[data-theme="dark"] .site-nav.is-open a.active {
  border-color: rgba(18, 127, 56, 0.42);
  background: rgba(18, 127, 56, 0.18);
  color: #fff;
}

/* Models detail customizer polish: layout only, keep configurator behavior intact */
body[data-page="models"].is-model-detail-active main {
  background: linear-gradient(180deg, var(--nugen-light-bg) 0%, #fff 34%, var(--nugen-light-bg) 100%);
}

body[data-page="models"].is-model-detail-active #models-detail-viewer {
  padding: 0 0 22px;
}

body[data-page="models"].is-model-detail-active .back-nav-bar {
  margin: 0 0 26px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(4, 32, 69, 0.10);
  background: rgba(255, 255, 255, 0.72);
}

body[data-page="models"].is-model-detail-active .back-button {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(4, 32, 69, 0.12);
  border-radius: 10px;
  background: #fff;
}

body[data-page="models"].is-model-detail-active .single-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 18px clamp(24px, 4vw, 42px);
  align-items: start;
}

body[data-page="models"].is-model-detail-active .product-visuals-column,
body[data-page="models"].is-model-detail-active .product-info {
  display: contents;
}

body[data-page="models"].is-model-detail-active .product-eyebrow,
body[data-page="models"].is-model-detail-active .product-info > h2,
body[data-page="models"].is-model-detail-active .product-specs-summary,
body[data-page="models"].is-model-detail-active .product-desc {
  grid-column: 1 / -1;
  max-width: 780px;
}

body[data-page="models"].is-model-detail-active .product-eyebrow {
  order: 1;
  width: fit-content;
  margin: 0;
  padding: 6px 9px;
  border: 1px solid rgba(18, 127, 56, 0.22);
  border-radius: 8px;
  background: rgba(18, 127, 56, 0.08);
  color: var(--nugen-green);
  letter-spacing: 0.06em;
}

body[data-page="models"].is-model-detail-active .product-info > h2 {
  order: 2;
  margin: -6px 0 0;
  font-size: clamp(34px, 4vw, 48px);
  color: var(--nugen-blue);
}

body[data-page="models"].is-model-detail-active .product-specs-summary {
  order: 3;
  margin: -8px 0 0;
  color: var(--nugen-blue-accent);
  font-size: 15px;
}

body[data-page="models"].is-model-detail-active .product-desc {
  order: 4;
  margin: -4px 0 6px;
  color: #425466;
  font-size: 16px;
  line-height: 1.55;
}

body[data-page="models"].is-model-detail-active .model-showcase {
  order: 5;
  grid-column: 1;
  min-width: 0;
}

body[data-page="models"].is-model-detail-active .product-configurator {
  order: 6;
  grid-column: 2;
  position: sticky;
  top: 104px;
  min-width: 0;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(4, 32, 69, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(180deg, #fff, rgba(245, 249, 248, 0.92));
  box-shadow: 0 18px 44px rgba(4, 32, 69, 0.08);
}

body[data-page="models"].is-model-detail-active .gallery-main {
  height: clamp(310px, 38vw, 500px);
  margin: 0 0 12px;
  border: 1px solid rgba(4, 32, 69, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(135deg, #fff, var(--nugen-light-bg));
  box-shadow: 0 18px 44px rgba(4, 32, 69, 0.08);
}

body[data-page="models"].is-model-detail-active .gallery-main img {
  object-fit: contain;
  padding: 10px;
}

body[data-page="models"].is-model-detail-active .gallery-thumbs {
  display: flex;
  grid-template-columns: none;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 10px;
  scroll-snap-type: x proximity;
}

body[data-page="models"].is-model-detail-active .gallery-thumb-item {
  flex: 0 0 86px;
  height: 66px;
  border: 1px solid rgba(4, 32, 69, 0.12);
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
  scroll-snap-align: start;
}

body[data-page="models"].is-model-detail-active .gallery-thumb-item:hover,
body[data-page="models"].is-model-detail-active .gallery-thumb-item.active {
  border-color: var(--nugen-green);
  box-shadow: 0 0 0 3px rgba(18, 127, 56, 0.12);
}

body[data-page="models"].is-model-detail-active .config-price-box {
  padding: 13px 14px;
  margin: 0 0 12px;
  border: 1px solid rgba(18, 127, 56, 0.18);
  border-radius: 12px;
  background: rgba(18, 127, 56, 0.075);
}

body[data-page="models"].is-model-detail-active .config-price-label {
  color: var(--nugen-blue);
  font-size: 12px;
}

body[data-page="models"].is-model-detail-active .config-price-value {
  color: var(--nugen-blue);
  font-size: clamp(25px, 3vw, 32px);
}

body[data-page="models"].is-model-detail-active .config-request-pricing {
  min-height: 46px;
  margin-bottom: 16px;
  border-radius: 10px;
}

body[data-page="models"].is-model-detail-active .config-group {
  margin: 0;
  padding: 15px 0;
  border-top: 1px solid rgba(4, 32, 69, 0.10);
}

body[data-page="models"].is-model-detail-active .config-label {
  margin-bottom: 9px;
  color: var(--nugen-blue);
  font-size: 12px;
  letter-spacing: 0.06em;
}

body[data-page="models"].is-model-detail-active .config-options-grid {
  gap: 8px;
}

body[data-page="models"].is-model-detail-active .config-option-pill {
  min-height: 62px;
  padding: 10px 12px;
  border-color: rgba(4, 32, 69, 0.12);
  border-radius: 10px;
  background: #fff;
}

body[data-page="models"].is-model-detail-active .config-option-pill.active {
  border-color: var(--nugen-green);
  background: rgba(18, 127, 56, 0.08);
  box-shadow: 0 0 0 3px rgba(18, 127, 56, 0.10);
}

body[data-page="models"].is-model-detail-active .config-option-name {
  color: var(--nugen-blue);
  font-size: 13px;
}

body[data-page="models"].is-model-detail-active .config-option-sub {
  color: #596a7a;
  font-size: 11px;
}

body[data-page="models"].is-model-detail-active .config-swatches {
  gap: 8px;
}

body[data-page="models"].is-model-detail-active .config-swatch-item {
  min-height: 38px;
  padding: 6px 10px 6px 7px;
  border-color: rgba(4, 32, 69, 0.12);
  border-radius: 10px;
  background: #fff;
}

body[data-page="models"].is-model-detail-active .config-swatch-item.active {
  border-color: var(--nugen-green);
  box-shadow: 0 0 0 3px rgba(18, 127, 56, 0.10);
}

body[data-page="models"].is-model-detail-active .config-swatch-color {
  width: 20px;
  height: 20px;
}

body[data-page="models"].is-model-detail-active .config-checkboxes {
  gap: 8px;
}

body[data-page="models"].is-model-detail-active .config-checkbox-label {
  min-height: 44px;
  padding: 9px 11px;
  border-color: rgba(4, 32, 69, 0.12);
  border-radius: 10px;
  background: #fff;
}

body[data-page="models"].is-model-detail-active .config-checkbox-label.active {
  border-color: var(--nugen-green);
  background: rgba(18, 127, 56, 0.07);
}

body[data-page="models"].is-model-detail-active .config-checkbox-left {
  min-width: 0;
  font-size: 13px;
}

body[data-page="models"].is-model-detail-active .config-checkbox-price {
  flex: 0 0 auto;
  color: var(--nugen-blue-accent);
  font-size: 12px;
}

body[data-page="models"].is-model-detail-active .inclusions-graphic-card {
  order: 7;
  grid-column: 1 / -1;
  margin: 8px 0 0 !important;
  padding: 18px !important;
  border: 1px solid rgba(4, 32, 69, 0.12);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(4, 32, 69, 0.055);
}

body[data-page="models"].is-model-detail-active .inclusion-section--standards,
body[data-page="models"].is-model-detail-active .inclusion-section--promise {
  display: none;
}

body[data-page="models"].is-model-detail-active .inclusion-sections {
  gap: 0;
}

body[data-page="models"].is-model-detail-active .inclusion-section {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="models"].is-model-detail-active .inclusion-section__header {
  margin-bottom: 12px;
}

body[data-page="models"].is-model-detail-active .inclusion-section__mark {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
  border-radius: 8px;
  background: var(--nugen-green);
  color: #fff;
}

body[data-page="models"].is-model-detail-active .inclusion-section__header h4 {
  color: var(--nugen-blue);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}

body[data-page="models"].is-model-detail-active .inclusion-pill-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

body[data-page="models"].is-model-detail-active .inclusion-pill-grid span {
  min-height: 38px;
  padding: 8px 10px;
  border-color: rgba(11, 79, 138, 0.13);
  border-radius: 10px;
  background: var(--nugen-light-bg);
  color: var(--nugen-blue);
  font-size: 12px;
  font-weight: 750;
}

body[data-page="models"].is-model-detail-active .product-tabs {
  order: 8;
  grid-column: 1 / -1;
  margin: 0;
  border-color: rgba(4, 32, 69, 0.12);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(4, 32, 69, 0.055);
}

body[data-page="models"].is-model-detail-active .tab-headers {
  gap: 8px;
  padding: 10px;
  border-bottom: 1px solid rgba(4, 32, 69, 0.10);
  background: var(--nugen-light-bg);
}

body[data-page="models"].is-model-detail-active .tab-button {
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--nugen-blue);
  font-size: 13px;
}

body[data-page="models"].is-model-detail-active .tab-button.active {
  border-color: rgba(18, 127, 56, 0.22);
  border-bottom-color: var(--nugen-green) !important;
  background: #fff;
  color: var(--nugen-green);
  box-shadow: 0 0 0 3px rgba(18, 127, 56, 0.08);
}

body[data-page="models"].is-model-detail-active .tab-panels {
  padding: 18px;
}

body[data-page="models"].is-model-detail-active .tab-panel-content li {
  font-size: 14px;
  line-height: 1.45;
}

body[data-page="models"].is-model-detail-active .product-info > .hero__actions {
  order: 9;
  grid-column: 1 / -1;
  margin-top: 0 !important;
  padding-top: 2px;
}

body[data-page="models"].is-model-detail-active #model-inquiry {
  padding: 42px 0 50px;
  background: var(--nugen-light-bg);
}

body[data-page="models"].is-model-detail-active #model-inquiry .split-content {
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

body[data-page="models"].is-model-detail-active #model-inquiry .split-content__text h2 {
  margin-bottom: 10px;
  color: var(--nugen-blue);
}

body[data-page="models"].is-model-detail-active #model-inquiry .split-content__text p {
  max-width: 520px;
  color: #425466;
  font-size: 16px;
  line-height: 1.55;
}

body[data-page="models"].is-model-detail-active #model-inquiry .checklist {
  gap: 9px;
}

body[data-page="models"].is-model-detail-active #model-inquiry .checklist li {
  position: relative;
  padding: 9px 10px 9px 38px;
  border: 1px solid rgba(4, 32, 69, 0.10);
  border-radius: 10px;
  background: #fff;
  color: var(--nugen-blue);
  font-size: 14px;
}

body[data-page="models"].is-model-detail-active #model-inquiry .checklist li::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--nugen-green);
  border-bottom: 2px solid var(--nugen-green);
  transform: translateY(-65%) rotate(-45deg);
}

body[data-page="models"].is-model-detail-active #model-inquiry .form-panel {
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid rgba(4, 32, 69, 0.12);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(4, 32, 69, 0.07);
}

body[data-page="models"].is-model-detail-active #model-inquiry .form-panel h3 {
  margin-bottom: 4px;
  color: var(--nugen-blue);
}

body[data-page="models"].is-model-detail-active #model-inquiry .form-panel__subtitle {
  margin-bottom: 16px;
}

body[data-page="models"].is-model-detail-active #model-inquiry .form-grid {
  gap: 12px;
}

body[data-page="models"].is-model-detail-active #model-inquiry .field input,
body[data-page="models"].is-model-detail-active #model-inquiry .field select,
body[data-page="models"].is-model-detail-active #model-inquiry .field textarea {
  min-height: 46px;
  border-radius: 10px;
}

body[data-page="models"].is-model-detail-active #model-inquiry .field textarea {
  min-height: 108px;
}

body[data-page="models"].is-model-detail-active #model-inquiry .lead-form > .button {
  width: 100%;
  justify-content: center;
  min-height: 48px;
}

@media (max-width: 960px) {
  body[data-page="models"].is-model-detail-active .single-product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body[data-page="models"].is-model-detail-active .product-eyebrow,
  body[data-page="models"].is-model-detail-active .product-info > h2,
  body[data-page="models"].is-model-detail-active .product-specs-summary,
  body[data-page="models"].is-model-detail-active .product-desc,
  body[data-page="models"].is-model-detail-active .model-showcase,
  body[data-page="models"].is-model-detail-active .product-configurator,
  body[data-page="models"].is-model-detail-active .inclusions-graphic-card,
  body[data-page="models"].is-model-detail-active .product-tabs,
  body[data-page="models"].is-model-detail-active .product-info > .hero__actions {
    grid-column: 1 / -1;
  }

  body[data-page="models"].is-model-detail-active .product-configurator {
    position: static;
  }

  body[data-page="models"].is-model-detail-active .model-showcase {
    order: 5;
  }

  body[data-page="models"].is-model-detail-active .product-configurator {
    order: 6;
  }

  body[data-page="models"].is-model-detail-active #model-inquiry .split-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body[data-page="models"].is-model-detail-active .back-nav-bar {
    margin-bottom: 18px;
    padding: 14px 0;
  }

  body[data-page="models"].is-model-detail-active .product-info > h2 {
    font-size: clamp(30px, 8vw, 38px);
  }

  body[data-page="models"].is-model-detail-active .product-specs-summary {
    font-size: 14px;
  }

  body[data-page="models"].is-model-detail-active .gallery-main {
    height: clamp(240px, 68vw, 310px);
  }

  body[data-page="models"].is-model-detail-active .gallery-main img {
    padding: 6px;
  }

  body[data-page="models"].is-model-detail-active .gallery-thumb-item {
    flex-basis: 72px;
    height: 58px;
  }

  body[data-page="models"].is-model-detail-active .product-configurator {
    padding: 15px;
  }

  body[data-page="models"].is-model-detail-active .config-price-box {
    display: grid;
    gap: 3px;
    text-align: left;
  }

  body[data-page="models"].is-model-detail-active .config-options-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="models"].is-model-detail-active .config-swatch-item,
  body[data-page="models"].is-model-detail-active .config-checkbox-label,
  body[data-page="models"].is-model-detail-active .config-option-pill {
    min-height: 46px;
  }

  body[data-page="models"].is-model-detail-active .config-checkbox-label {
    gap: 10px;
  }

  body[data-page="models"].is-model-detail-active .inclusion-pill-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="models"].is-model-detail-active .tab-headers {
    display: flex;
    overflow-x: auto;
  }

  body[data-page="models"].is-model-detail-active .tab-button {
    flex: 0 0 auto;
    min-width: 156px;
  }

  body[data-page="models"].is-model-detail-active .product-info > .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body[data-page="models"].is-model-detail-active #model-inquiry {
    padding: 34px 0 42px;
  }

  body[data-page="models"].is-model-detail-active #model-inquiry .form-grid {
    grid-template-columns: 1fr;
  }
}

html[data-theme="dark"] body[data-page="models"].is-model-detail-active main,
html[data-theme="dark"] body[data-page="models"].is-model-detail-active #model-inquiry {
  background: #031027;
}

html[data-theme="dark"] body[data-page="models"].is-model-detail-active .back-nav-bar,
html[data-theme="dark"] body[data-page="models"].is-model-detail-active .product-configurator,
html[data-theme="dark"] body[data-page="models"].is-model-detail-active .gallery-main,
html[data-theme="dark"] body[data-page="models"].is-model-detail-active .inclusions-graphic-card,
html[data-theme="dark"] body[data-page="models"].is-model-detail-active .product-tabs,
html[data-theme="dark"] body[data-page="models"].is-model-detail-active #model-inquiry .form-panel {
  border-color: rgba(245, 249, 248, 0.14);
  background: #0B1728;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] body[data-page="models"].is-model-detail-active .product-info > h2,
html[data-theme="dark"] body[data-page="models"].is-model-detail-active .config-price-label,
html[data-theme="dark"] body[data-page="models"].is-model-detail-active .config-price-value,
html[data-theme="dark"] body[data-page="models"].is-model-detail-active .config-label,
html[data-theme="dark"] body[data-page="models"].is-model-detail-active .config-option-name,
html[data-theme="dark"] body[data-page="models"].is-model-detail-active .inclusion-section__header h4,
html[data-theme="dark"] body[data-page="models"].is-model-detail-active #model-inquiry .split-content__text h2,
html[data-theme="dark"] body[data-page="models"].is-model-detail-active #model-inquiry .form-panel h3 {
  color: var(--nugen-light-bg);
}

html[data-theme="dark"] body[data-page="models"].is-model-detail-active .product-desc,
html[data-theme="dark"] body[data-page="models"].is-model-detail-active .config-option-sub,
html[data-theme="dark"] body[data-page="models"].is-model-detail-active #model-inquiry .split-content__text p {
  color: rgba(245, 249, 248, 0.72);
}

html[data-theme="dark"] body[data-page="models"].is-model-detail-active .config-option-pill,
html[data-theme="dark"] body[data-page="models"].is-model-detail-active .config-swatch-item,
html[data-theme="dark"] body[data-page="models"].is-model-detail-active .config-checkbox-label,
html[data-theme="dark"] body[data-page="models"].is-model-detail-active .gallery-thumb-item,
html[data-theme="dark"] body[data-page="models"].is-model-detail-active #model-inquiry .checklist li {
  border-color: rgba(245, 249, 248, 0.12);
  background: rgba(245, 249, 248, 0.055);
  color: var(--nugen-light-bg);
}

html[data-theme="dark"] body[data-page="models"].is-model-detail-active .inclusion-pill-grid span,
html[data-theme="dark"] body[data-page="models"].is-model-detail-active .tab-headers {
  background: rgba(245, 249, 248, 0.06);
  color: var(--nugen-light-bg);
}

/* Site-wide NuGen button color system */
:root {
  --nugen-button-blue: #042045;
  --nugen-button-blue-hover: #06305F;
  --nugen-button-green: #127F38;
  --nugen-button-green-hover: #0E6630;
  --nugen-button-blue-rgb: 4, 32, 69;
}

.button--primary,
.button--accent,
.button--secondary,
main .button--primary,
main .button--accent,
main .button--secondary,
body[data-page="home"] .wire-home-hero__actions .button--primary,
body[data-page="home"] .home-model-preview__cta .button,
body[data-page="home"] .home-conversion-actions .button--primary,
body[data-page="models"] .models-build-details > summary {
  color: #FFFFFF !important;
  background: var(--nugen-button-blue) !important;
  border-color: var(--nugen-button-blue) !important;
  box-shadow: 0 10px 28px rgba(var(--nugen-button-blue-rgb), 0.18) !important;
}

.button--primary:hover,
.button--accent:hover,
.button--secondary:hover,
main .button--primary:hover,
main .button--accent:hover,
main .button--secondary:hover,
body[data-page="home"] .wire-home-hero__actions .button--primary:hover,
body[data-page="home"] .home-model-preview__cta .button:hover,
body[data-page="home"] .home-conversion-actions .button--primary:hover,
body[data-page="models"] .models-build-details > summary:hover {
  color: #FFFFFF !important;
  background: var(--nugen-button-blue-hover) !important;
  border-color: var(--nugen-button-blue-hover) !important;
  box-shadow: 0 14px 34px rgba(var(--nugen-button-blue-rgb), 0.24) !important;
}

.button--outline,
.button--ghost,
main .button--outline,
main .button--ghost,
body[data-page="home"] .wire-home-hero__secondary,
body[data-page="home"] .home-conversion-actions .button--outline {
  color: var(--nugen-button-blue) !important;
  background: #FFFFFF !important;
  border-color: var(--nugen-button-blue) !important;
  box-shadow: 0 8px 24px rgba(var(--nugen-button-blue-rgb), 0.08) !important;
}

.button--outline:hover,
.button--ghost:hover,
main .button--outline:hover,
main .button--ghost:hover,
body[data-page="home"] .wire-home-hero__secondary:hover,
body[data-page="home"] .home-conversion-actions .button--outline:hover {
  color: #FFFFFF !important;
  background: var(--nugen-button-blue) !important;
  border-color: var(--nugen-button-blue) !important;
  box-shadow: 0 14px 34px rgba(var(--nugen-button-blue-rgb), 0.18) !important;
}

.header-actions > .button,
body[data-page="home"] .header-actions > .button,
body:has(.site-nav.is-open) .header-actions > .button,
.button[data-tr="btn_request_pricing"],
.button[data-tr="btn_request_quote"],
.button[data-tr="btn_submit_request"],
.button[data-tr="btn_send_request"],
.button[data-tr^="btn_req_"],
.button[href*="#pricing"],
.button[href*="#model-inquiry"],
.button.config-request-pricing,
button[type="submit"].button[data-tr="btn_submit_request"],
button[type="submit"].button[data-tr="btn_send_request"] {
  color: #FFFFFF !important;
  background: var(--nugen-button-green) !important;
  border-color: var(--nugen-button-green) !important;
  box-shadow: 0 10px 28px rgba(var(--nugen-green-rgb), 0.18) !important;
}

.header-actions > .button:hover,
body[data-page="home"] .header-actions > .button:hover,
body:has(.site-nav.is-open) .header-actions > .button:hover,
.button[data-tr="btn_request_pricing"]:hover,
.button[data-tr="btn_request_quote"]:hover,
.button[data-tr="btn_submit_request"]:hover,
.button[data-tr="btn_send_request"]:hover,
.button[data-tr^="btn_req_"]:hover,
.button[href*="#pricing"]:hover,
.button[href*="#model-inquiry"]:hover,
.button.config-request-pricing:hover,
button[type="submit"].button[data-tr="btn_submit_request"]:hover,
button[type="submit"].button[data-tr="btn_send_request"]:hover {
  color: #FFFFFF !important;
  background: var(--nugen-button-green-hover) !important;
  border-color: var(--nugen-button-green-hover) !important;
  box-shadow: 0 14px 34px rgba(var(--nugen-green-rgb), 0.24) !important;
}

.filter-btn,
.models-filter-pill,
.models-closer-tabs button,
.models-closer-tab,
.tab-button,
.builder-model-option,
.addon-card,
.config-option-pill,
.config-swatch-item,
.config-checkbox-label {
  color: var(--nugen-button-blue) !important;
  background: #FFFFFF !important;
  border-color: rgba(var(--nugen-button-blue-rgb), 0.32) !important;
}

.filter-btn:hover,
.models-filter-pill:hover,
.models-closer-tabs button:hover,
.models-closer-tab:hover,
.tab-button:hover,
.builder-model-option:hover,
.addon-card:hover,
.config-option-pill:hover,
.config-swatch-item:hover,
.config-checkbox-label:hover {
  color: var(--nugen-button-blue) !important;
  background: rgba(var(--nugen-button-blue-rgb), 0.06) !important;
  border-color: var(--nugen-button-blue) !important;
}

.filter-btn.active,
.models-filter-pill.active,
.models-closer-tabs button.active,
.models-closer-tabs button[aria-selected="true"],
.models-closer-tab.is-active,
.tab-button.active,
.builder-model-option.active,
.addon-card.active,
.config-option-pill.active,
.config-swatch-item.active,
.config-checkbox-label.active {
  color: #FFFFFF !important;
  background: var(--nugen-button-blue) !important;
  border-color: var(--nugen-button-blue) !important;
  box-shadow: 0 8px 22px rgba(var(--nugen-button-blue-rgb), 0.18) !important;
}

.filter-btn.active:hover,
.models-filter-pill.active:hover,
.models-closer-tabs button.active:hover,
.models-closer-tabs button[aria-selected="true"]:hover,
.models-closer-tab.is-active:hover,
.tab-button.active:hover,
.builder-model-option.active:hover,
.addon-card.active:hover,
.config-option-pill.active:hover,
.config-swatch-item.active:hover,
.config-checkbox-label.active:hover {
  color: #FFFFFF !important;
  background: var(--nugen-button-blue-hover) !important;
  border-color: var(--nugen-button-blue-hover) !important;
}

.builder-model-option.active h3,
.builder-model-option.active p,
.addon-card.active h3,
.addon-card.active p,
.config-option-pill.active .config-option-name,
.config-option-pill.active .config-option-sub,
.config-checkbox-label.active .config-checkbox-left,
.config-checkbox-label.active .config-checkbox-price {
  color: #FFFFFF !important;
}

.builder-model-option.active .builder-model-option__radio,
.addon-card.active .addon-card__check {
  border-color: #FFFFFF !important;
}

.builder-model-option.active .builder-model-option__radio::after,
.addon-card.active .addon-card__check {
  background-color: #FFFFFF !important;
}

.addon-card.active .addon-card__check::after {
  color: var(--nugen-button-blue) !important;
}

html[data-theme="dark"] .button--primary,
html[data-theme="dark"] .button--accent,
html[data-theme="dark"] .button--secondary,
html[data-theme="dark"] main .button--primary,
html[data-theme="dark"] main .button--accent,
html[data-theme="dark"] main .button--secondary {
  color: #FFFFFF !important;
  background: var(--nugen-button-blue) !important;
  border-color: var(--nugen-button-blue) !important;
}

html[data-theme="dark"] .button--outline,
html[data-theme="dark"] .button--ghost,
html[data-theme="dark"] main .button--outline,
html[data-theme="dark"] main .button--ghost {
  color: var(--nugen-button-blue) !important;
  background: #FFFFFF !important;
  border-color: var(--nugen-button-blue) !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

html[data-theme="dark"] .header-actions > .button,
html[data-theme="dark"] .button[data-tr="btn_request_pricing"],
html[data-theme="dark"] .button[data-tr="btn_request_quote"],
html[data-theme="dark"] .button[data-tr="btn_submit_request"],
html[data-theme="dark"] .button[data-tr="btn_send_request"],
html[data-theme="dark"] .button[data-tr^="btn_req_"],
html[data-theme="dark"] .button[href*="#pricing"],
html[data-theme="dark"] .button[href*="#model-inquiry"],
html[data-theme="dark"] .button.config-request-pricing {
  color: #FFFFFF !important;
  background: var(--nugen-button-green) !important;
  border-color: var(--nugen-button-green) !important;
}

html[data-theme="dark"] .filter-btn,
html[data-theme="dark"] .models-filter-pill,
html[data-theme="dark"] .models-closer-tabs button,
html[data-theme="dark"] .models-closer-tab,
html[data-theme="dark"] .tab-button,
html[data-theme="dark"] .builder-model-option,
html[data-theme="dark"] .addon-card,
html[data-theme="dark"] .config-option-pill,
html[data-theme="dark"] .config-swatch-item,
html[data-theme="dark"] .config-checkbox-label {
  color: var(--nugen-button-blue) !important;
  background: #FFFFFF !important;
  border-color: var(--nugen-button-blue) !important;
}

html[data-theme="dark"] .filter-btn.active,
html[data-theme="dark"] .models-filter-pill.active,
html[data-theme="dark"] .models-closer-tabs button.active,
html[data-theme="dark"] .models-closer-tabs button[aria-selected="true"],
html[data-theme="dark"] .models-closer-tab.is-active,
html[data-theme="dark"] .tab-button.active,
html[data-theme="dark"] .builder-model-option.active,
html[data-theme="dark"] .addon-card.active,
html[data-theme="dark"] .config-option-pill.active,
html[data-theme="dark"] .config-swatch-item.active,
html[data-theme="dark"] .config-checkbox-label.active {
  color: #FFFFFF !important;
  background: var(--nugen-button-blue) !important;
  border-color: var(--nugen-button-blue) !important;
}

.button.button--outline[data-tr="btn_request_pricing"],
.button.button--outline[data-tr="btn_request_quote"],
body[data-page="home"] .wire-home-hero__actions .button[data-tr="btn_request_pricing"],
body[data-page="home"] .wire-home-hero__secondary.button[data-tr="btn_request_pricing"],
body[data-page="home"] .home-conversion-actions .button[data-tr="btn_request_pricing"] {
  color: #FFFFFF !important;
  background: var(--nugen-button-green) !important;
  border-color: var(--nugen-button-green) !important;
  box-shadow: 0 10px 28px rgba(var(--nugen-green-rgb), 0.18) !important;
}

.button.button--outline[data-tr="btn_request_pricing"]:hover,
.button.button--outline[data-tr="btn_request_quote"]:hover,
body[data-page="home"] .wire-home-hero__actions .button[data-tr="btn_request_pricing"]:hover,
body[data-page="home"] .wire-home-hero__secondary.button[data-tr="btn_request_pricing"]:hover,
body[data-page="home"] .home-conversion-actions .button[data-tr="btn_request_pricing"]:hover {
  color: #FFFFFF !important;
  background: var(--nugen-button-green-hover) !important;
  border-color: var(--nugen-button-green-hover) !important;
  box-shadow: 0 14px 34px rgba(var(--nugen-green-rgb), 0.24) !important;
}

/* Homepage hero conversion clarity refinement */
body[data-page="home"] .wire-home-hero {
  min-height: clamp(590px, calc(100svh - 72px), 720px);
}

body[data-page="home"] .wire-home-hero::before {
  background:
    radial-gradient(circle at 13% 20%, rgba(var(--nugen-green-rgb), 0.24), transparent 30%),
    linear-gradient(90deg, rgba(var(--nugen-blue-rgb), 0.94) 0%, rgba(var(--nugen-blue-rgb), 0.84) 38%, rgba(var(--nugen-blue-rgb), 0.48) 67%, rgba(var(--nugen-blue-rgb), 0.20) 100%),
    linear-gradient(180deg, rgba(2, 12, 29, 0.14) 0%, rgba(2, 12, 29, 0.45) 100%);
}

body[data-page="home"] .wire-home-hero__inner {
  align-items: center;
  justify-content: flex-start;
  padding-top: clamp(72px, 9vw, 108px);
  padding-bottom: clamp(44px, 6vw, 72px);
}

body[data-page="home"] .wire-home-hero__copy {
  max-width: 680px;
  text-align: left;
}

body[data-page="home"] .wire-home-hero h1 {
  max-width: 660px;
  font-size: clamp(42px, 4.8vw, 62px);
  line-height: 1.06;
}

body[data-page="home"] .wire-home-hero p {
  max-width: 620px;
  margin-top: 18px;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.5;
}

body[data-page="home"] .wire-home-hero__actions {
  gap: 12px;
  margin-top: 24px;
}

body[data-page="home"] .wire-home-hero__actions .button {
  min-width: 188px;
  min-height: 50px;
}

body[data-page="home"] .wire-home-hero__trust {
  gap: 10px 22px;
  margin-top: 26px;
}

@media (max-width: 900px) {
  body[data-page="home"] .wire-home-hero {
    min-height: 610px;
  }

  body[data-page="home"] .wire-home-hero__copy {
    max-width: 620px;
    text-align: left;
  }

  body[data-page="home"] .wire-home-hero h1 {
    max-width: 12.5ch;
    font-size: clamp(36px, 8vw, 50px);
  }

  body[data-page="home"] .wire-home-hero p {
    max-width: 36rem;
  }
}

@media (max-width: 640px) {
  body[data-page="home"] .wire-home-hero {
    min-height: 578px;
  }

  body[data-page="home"] .wire-home-hero__inner {
    align-items: flex-end;
    padding-top: 82px;
    padding-bottom: 30px;
  }

  body[data-page="home"] .wire-home-hero h1 {
    max-width: 12ch;
    font-size: clamp(34px, 9.2vw, 42px);
    line-height: 1.06;
  }

  body[data-page="home"] .wire-home-hero p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.46;
  }

  body[data-page="home"] .wire-home-hero__actions {
    width: 100%;
    max-width: 420px;
    margin-top: 20px;
  }

  body[data-page="home"] .wire-home-hero__actions .button {
    width: 100%;
    min-width: 0;
    min-height: 50px;
  }

body[data-page="home"] .wire-home-hero__trust {
    width: 100%;
    max-width: 420px;
    margin-top: 20px;
  }
}

/* Homepage process timeline polish */
body[data-page="home"] .wire-process {
  padding: clamp(54px, 6vw, 72px) 0 clamp(58px, 6vw, 76px);
  overflow: visible;
}

body[data-page="home"] .wire-process .wire-section-head {
  margin-bottom: 34px;
}

body[data-page="home"] .process-timeline--5 {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
  align-items: start;
  overflow: visible;
  padding-top: 0;
}

body[data-page="home"] .process-timeline--5::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 22px;
  left: 10%;
  right: 10%;
  display: block;
  height: 2px;
  border: 0;
  background: linear-gradient(90deg, rgba(var(--nugen-blue-rgb), 0.18), rgba(var(--nugen-blue-rgb), 0.42), rgba(var(--nugen-blue-rgb), 0.18));
  pointer-events: none;
}

body[data-page="home"] .process-timeline--5 .process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 0;
  padding: 0 8px;
  overflow: visible;
  text-align: center;
}

body[data-page="home"] .wire-process__dot {
  position: relative;
  inset: auto;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  margin: 0 auto 22px;
  border: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  color: #FFFFFF;
  background: var(--nugen-green);
  box-shadow:
    0 0 0 7px #FFFFFF,
    0 12px 24px rgba(var(--nugen-green-rgb), 0.22);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transform: none;
}

body[data-page="home"] .wire-process__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  color: var(--nugen-blue-accent);
}

body[data-page="home"] .process-timeline--5 .process-step h3 {
  width: 100%;
  margin: 0 0 7px;
  color: var(--nugen-blue);
  font-size: 15px;
  line-height: 1.25;
  text-align: center;
}

body[data-page="home"] .process-timeline--5 .process-step p {
  max-width: 168px;
  margin: 0 auto;
  color: rgba(var(--nugen-blue-rgb), 0.78);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

html[data-theme="dark"] body[data-page="home"] .process-timeline--5::before {
  background: linear-gradient(90deg, rgba(245, 249, 248, 0.16), rgba(245, 249, 248, 0.38), rgba(245, 249, 248, 0.16));
}

html[data-theme="dark"] body[data-page="home"] .wire-process__dot {
  box-shadow:
    0 0 0 7px #031027,
    0 12px 24px rgba(0, 0, 0, 0.28);
}

@media (max-width: 900px) {
  body[data-page="home"] .wire-process {
    padding-block: 44px;
  }

  body[data-page="home"] .wire-process .wire-section-head {
    margin-bottom: 24px;
  }

  body[data-page="home"] .process-timeline--5 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body[data-page="home"] .process-timeline--5::before {
    display: none;
  }

  body[data-page="home"] .process-timeline--5 .process-step {
    display: grid;
    grid-template-columns: 42px 46px minmax(0, 1fr);
    gap: 0 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(var(--nugen-blue-rgb), 0.12);
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 0 10px 24px rgba(var(--nugen-blue-rgb), 0.05);
    text-align: left;
  }

  body[data-page="home"] .wire-process__dot {
    grid-row: 1 / span 2;
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    margin: 0;
    box-shadow: none;
    font-size: 13px;
  }

  body[data-page="home"] .wire-process__icon {
    grid-row: 1 / span 2;
    width: 38px;
    height: 38px;
    margin: 0;
  }

  body[data-page="home"] .process-timeline--5 .process-step h3,
  body[data-page="home"] .process-timeline--5 .process-step p {
    text-align: left;
  }

  body[data-page="home"] .process-timeline--5 .process-step h3 {
    margin: 0 0 4px;
    font-size: 16px;
  }

  body[data-page="home"] .process-timeline--5 .process-step p {
    max-width: none;
    margin: 0;
    font-size: 13px;
  }

  html[data-theme="dark"] body[data-page="home"] .process-timeline--5 .process-step {
    border-color: rgba(245, 249, 248, 0.14);
    background: #0B1728;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  }
}

   HOMEPAGE SHOWROOM - media grid (photos + map + location card)
body[data-page="home"] .home-conversion-panel--primary {
  padding: clamp(34px, 4vw, 46px);
  color: #FFFFFF;
  background:
    radial-gradient(circle at 8% 8%, rgba(var(--nugen-green-rgb), 0.26), transparent 34%),
    linear-gradient(135deg, #042045 0%, #031832 58%, #021024 100%);
}

body[data-page="home"] .home-conversion-panel--primary .home-section-label {
  margin-bottom: 14px;
  color: #5BE080;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-page="home"] .home-conversion-panel--primary .home-section-label,
body[data-page="home"] .home-conversion-panel--primary h2,
body[data-page="home"] .home-conversion-panel--primary p,
body[data-page="home"] .home-conversion-panel--primary .home-conversion-actions,
body[data-page="home"] .home-conversion-panel--primary .button {
  opacity: 1 !important;
  transform: none !important;
}

body[data-page="home"] .home-conversion-panel--primary h2 {
  max-width: 12ch;
  margin-bottom: 14px;
  color: #FFFFFF !important;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.24);
}

body[data-page="home"] .home-conversion-panel--primary p {
  max-width: 30rem;
  color: #EAF0F6 !important;
  font-size: 15px;
  line-height: 1.58;
}

body[data-page="home"] .home-conversion-panel--primary .home-conversion-actions {
  margin-top: 24px;
}

body[data-page="home"] .home-conversion-panel--primary .button:not([data-tr="btn_request_pricing"]) {
  color: var(--nugen-blue) !important;
  background: #FFFFFF !important;
  border-color: #FFFFFF !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22) !important;
}

body[data-page="home"] .home-conversion-panel--primary .button:not([data-tr="btn_request_pricing"]):hover,
body[data-page="home"] .home-conversion-panel--primary .button:not([data-tr="btn_request_pricing"]):focus-visible {
  color: var(--nugen-blue) !important;
  background: #EAF0F6 !important;
  border-color: #EAF0F6 !important;
}

body[data-page="home"] .home-conversion-panel--primary .button[data-tr="btn_request_pricing"] {
  color: #FFFFFF !important;
  background: var(--nugen-green) !important;
  border-color: var(--nugen-green) !important;
  box-shadow: 0 12px 28px rgba(var(--nugen-green-rgb), 0.24) !important;
}

body[data-page="home"] .home-conversion-panel--primary .button[data-tr="btn_request_pricing"]:hover,
body[data-page="home"] .home-conversion-panel--primary .button[data-tr="btn_request_pricing"]:focus-visible {
  background: var(--nugen-green-hover) !important;
  border-color: var(--nugen-green-hover) !important;
}

@media (max-width: 900px) {
  body[data-page="home"] .home-conversion-panel--primary {
    padding: 28px;
  }

  body[data-page="home"] .home-conversion-panel--primary h2 {
    max-width: 14ch;
  }
}

@media (max-width: 640px) {
  body[data-page="home"] .home-conversion-panel--primary {
    padding: 24px;
  }

  body[data-page="home"] .home-conversion-panel--primary h2,
  body[data-page="home"] .home-conversion-panel--primary p {
    max-width: 100%;
  }
}

/* About showroom appointment: replace catalogue collage with one premium image */
body[data-page="about"] .section--about-showroom-appointment {
  background: var(--nugen-light-bg, #f5f9f8);
}

body[data-page="about"] .about-showroom-appointment {
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  gap: clamp(34px, 5vw, 64px);
}

body[data-page="about"] .about-showroom-appointment__visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  opacity: 1 !important;
  transform: none !important;
  border-radius: 14px;
  border: 1px solid rgba(4, 32, 69, 0.14);
  box-shadow: 0 24px 54px rgba(4, 32, 69, 0.16);
  background: #ffffff;
}

body[data-page="about"] .about-showroom-appointment .split-content__text {
  opacity: 1 !important;
  transform: none !important;
}

body[data-page="about"] .about-showroom-appointment__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border: 0;
  box-shadow: none;
}

body[data-page="about"] .about-showroom-appointment__visual figcaption {
  position: absolute;
  left: 18px;
  top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(4, 32, 69, 0.72);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

body[data-page="about"] .about-showroom-appointment .split-content__text p {
  max-width: 36rem;
}

body[data-page="about"] .about-showroom-appointment__address {
  margin-top: 4px;
  color: var(--nugen-blue, #042045) !important;
  font-weight: 800;
}

body[data-page="about"] .about-showroom-appointment .hero__actions {
  justify-content: flex-start;
  gap: 14px;
}

html[data-theme="dark"] body[data-page="about"] .section--about-showroom-appointment {
  background: rgba(4, 32, 69, 0.34);
}

html[data-theme="dark"] body[data-page="about"] .about-showroom-appointment__visual {
  border-color: rgba(234, 240, 246, 0.18);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] body[data-page="about"] .about-showroom-appointment__address {
  color: #eaf0f6 !important;
}

/* Site-wide dark mode contrast repair */
:root[data-theme="dark"] {
  --bg-page-dark: #061426;
  --bg-section-dark: #081B30;
  --bg-card-dark: #0D2238;
  --bg-card-dark-2: #102A44;
  --text-primary-dark: #F7FAFC;
  --text-secondary-dark: #D6E0EA;
  --text-muted-dark: #AAB8C8;
  --border-dark: rgba(255, 255, 255, 0.12);
  --border-dark-strong: rgba(255, 255, 255, 0.18);
  --brand-green: #127F38;
  --brand-green-hover: #0E6630;
  --brand-blue: #0B4F8A;
  --brand-blue-hover: #1268AA;
  --brand-navy: #042045;
  --primary: var(--text-primary-dark);
  --ink: var(--text-primary-dark);
  --ink-light: var(--text-secondary-dark);
  --wash: var(--bg-page-dark);
  --wash-dark: var(--bg-section-dark);
  --white: var(--bg-card-dark);
  --line: var(--border-dark);
  --line-strong: var(--border-dark-strong);
  --accent: #7EB7E6;
  --accent-rgb: 126, 183, 230;
}

html[data-theme="dark"],
html[data-theme="dark"] body,
html[data-theme="dark"] main {
  background: var(--bg-page-dark) !important;
  color: var(--text-primary-dark) !important;
}

html[data-theme="dark"] main .section,
html[data-theme="dark"] main > section,
html[data-theme="dark"] .section--wash,
html[data-theme="dark"] .section--wash-dark,
html[data-theme="dark"] body[data-page="home"] main,
html[data-theme="dark"] body[data-page="home"] .home-why,
html[data-theme="dark"] body[data-page="home"] .home-model-preview,
html[data-theme="dark"] body[data-page="home"] .wire-what-is,
html[data-theme="dark"] body[data-page="home"] .wire-process,
html[data-theme="dark"] body[data-page="home"] .wire-showroom,
html[data-theme="dark"] body[data-page="models"] main,
html[data-theme="dark"] body[data-page="models"] #configurations,
html[data-theme="dark"] body[data-page="models"] #specifications,
html[data-theme="dark"] body[data-page="models"] #model-inquiry,
html[data-theme="dark"] body[data-page="about"] .section--about-showroom-appointment {
  background: var(--bg-page-dark) !important;
  color: var(--text-primary-dark) !important;
  border-color: var(--border-dark) !important;
}

html[data-theme="dark"] main h1,
html[data-theme="dark"] main h2,
html[data-theme="dark"] main h3,
html[data-theme="dark"] main h4,
html[data-theme="dark"] main h5,
html[data-theme="dark"] main h6,
html[data-theme="dark"] main .section-head h2,
html[data-theme="dark"] main .wire-section-head h2,
html[data-theme="dark"] main .split-content__text h2,
html[data-theme="dark"] main .gallery-card__title,
html[data-theme="dark"] main .gallery-lightbox__caption h3,
html[data-theme="dark"] main .gallery-showroom-card__info h3,
html[data-theme="dark"] body[data-page="models"] .models-inclusion-card h3,
html[data-theme="dark"] body[data-page="models"] .models-option-card h3,
html[data-theme="dark"] body[data-page="models"] .models-build-detail-card h3,
html[data-theme="dark"] body[data-page="models"] .models-closer-copy h3,
html[data-theme="dark"] body[data-page="models"].is-model-detail-active .product-info > h2,
html[data-theme="dark"] body[data-page="models"].is-model-detail-active .config-price-value,
html[data-theme="dark"] body[data-page="models"].is-model-detail-active .config-label,
html[data-theme="dark"] body[data-page="models"].is-model-detail-active .config-option-name,
html[data-theme="dark"] .contact-info h2,
html[data-theme="dark"] .contact-item__text h3,
html[data-theme="dark"] .form-panel h3,
html[data-theme="dark"] .financing-card h3,
html[data-theme="dark"] .faq-list summary,
html[data-theme="dark"] .site-footer h3,
html[data-theme="dark"] .site-footer h4 {
  color: var(--text-primary-dark) !important;
  text-shadow: none;
}

html[data-theme="dark"] main p,
html[data-theme="dark"] main li,
html[data-theme="dark"] main address,
html[data-theme="dark"] main .section-head p,
html[data-theme="dark"] main .wire-section-head p,
html[data-theme="dark"] main .split-content__text p,
html[data-theme="dark"] main .gallery-card__caption,
html[data-theme="dark"] main .gallery-lightbox__caption p,
html[data-theme="dark"] main .gallery-showroom-card__info p,
html[data-theme="dark"] body[data-page="models"] .models-inclusion-card p,
html[data-theme="dark"] body[data-page="models"] .models-option-card p,
html[data-theme="dark"] body[data-page="models"] .models-build-detail-card p,
html[data-theme="dark"] body[data-page="models"] .models-closer-copy p,
html[data-theme="dark"] body[data-page="models"].is-model-detail-active .product-desc,
html[data-theme="dark"] body[data-page="models"].is-model-detail-active .config-option-sub,
html[data-theme="dark"] .contact-info__intro,
html[data-theme="dark"] .contact-item__text p,
html[data-theme="dark"] .contact-item__text a,
html[data-theme="dark"] .form-panel__subtitle,
html[data-theme="dark"] .financing-card p,
html[data-theme="dark"] .faq-list p,
html[data-theme="dark"] .site-footer p,
html[data-theme="dark"] .footer-links a,
html[data-theme="dark"] .footer-links span,
html[data-theme="dark"] .footer-bottom {
  color: var(--text-secondary-dark) !important;
}

html[data-theme="dark"] main .eyebrow,
html[data-theme="dark"] main .badge,
html[data-theme="dark"] main .u-label,
html[data-theme="dark"] main .models-badge,
html[data-theme="dark"] main .config-badge,
html[data-theme="dark"] main .gallery-proof-hero__badge,
html[data-theme="dark"] main .gallery-kicker,
html[data-theme="dark"] main .gallery-card__category,
html[data-theme="dark"] main .gallery-lightbox__category,
html[data-theme="dark"] body[data-page="models"] .models-inclusions-kicker,
html[data-theme="dark"] body[data-page="home"] .home-section-label {
  color: #5BE080 !important;
}

html[data-theme="dark"] main .feature-card,
html[data-theme="dark"] main .process-step,
html[data-theme="dark"] main .product-card,
html[data-theme="dark"] main .form-panel,
html[data-theme="dark"] main .contact-info,
html[data-theme="dark"] main .contact-item,
html[data-theme="dark"] main .financing-card,
html[data-theme="dark"] main .faq-list details,
html[data-theme="dark"] main .seo-answer-card,
html[data-theme="dark"] main .product-configurator,
html[data-theme="dark"] main .builder-group,
html[data-theme="dark"] main .builder-sidebar,
html[data-theme="dark"] main .summary-card,
html[data-theme="dark"] main .inclusions-panel,
html[data-theme="dark"] main .inclusions-graphic-card,
html[data-theme="dark"] main .inclusion-section,
html[data-theme="dark"] main .product-tabs,
html[data-theme="dark"] main .tab-panels,
html[data-theme="dark"] main .gallery-main,
html[data-theme="dark"] main .gallery-thumb-item,
html[data-theme="dark"] main .gallery-proof-hero__media,
html[data-theme="dark"] main .gallery-filters,
html[data-theme="dark"] main .gallery-card,
html[data-theme="dark"] main .gallery-lightbox,
html[data-theme="dark"] main .gallery-lightbox__caption,
html[data-theme="dark"] main .gallery-cta-card,
html[data-theme="dark"] main .gallery-showroom-card,
html[data-theme="dark"] body[data-page="home"] .home-value-card,
html[data-theme="dark"] body[data-page="home"] .home-model-card,
html[data-theme="dark"] body[data-page="home"] .whatis-card,
html[data-theme="dark"] body[data-page="home"] .not-container-mini,
html[data-theme="dark"] body[data-page="home"] .home-conversion-grid,
html[data-theme="dark"] body[data-page="home"] .home-conversion-panel:not(.home-conversion-panel--primary),
html[data-theme="dark"] body[data-page="models"] .models-closer-panel,
html[data-theme="dark"] body[data-page="models"] .model-catalog-card,
html[data-theme="dark"] body[data-page="models"] .models-inclusions-panel,
html[data-theme="dark"] body[data-page="models"] .models-inclusion-card,
html[data-theme="dark"] body[data-page="models"] .models-option-card,
html[data-theme="dark"] body[data-page="models"] .models-build-detail-card,
html[data-theme="dark"] body[data-page="models"] .models-build-detail-grid,
html[data-theme="dark"] body[data-page="models"].is-model-detail-active .back-nav-bar,
html[data-theme="dark"] body[data-page="models"].is-model-detail-active #model-inquiry .form-panel,
html[data-theme="dark"] body[data-page="about"] .about-showroom-appointment__visual {
  background: var(--bg-card-dark) !important;
  border-color: var(--border-dark) !important;
  color: var(--text-primary-dark) !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.30) !important;
}

html[data-theme="dark"] body[data-page="models"] .model-catalog-card__body,
html[data-theme="dark"] body[data-page="models"] .model-catalog-card dl div {
  background: var(--bg-card-dark-2) !important;
  border-color: var(--border-dark) !important;
}

html[data-theme="dark"] body[data-page="models"] .model-catalog-card h2,
html[data-theme="dark"] body[data-page="models"] .model-catalog-card h3,
html[data-theme="dark"] body[data-page="models"] .model-catalog-card dd,
html[data-theme="dark"] body[data-page="models"] .model-catalog-card__best strong {
  color: var(--text-primary-dark) !important;
}

html[data-theme="dark"] body[data-page="models"] .model-catalog-card p,
html[data-theme="dark"] body[data-page="models"] .model-catalog-card dt,
html[data-theme="dark"] body[data-page="models"] .model-catalog-card__best {
  color: var(--text-secondary-dark) !important;
}

html[data-theme="dark"] body[data-page="models"] .model-catalog-card__tag {
  color: #FFFFFF !important;
  background: var(--brand-green) !important;
  border-color: var(--brand-green) !important;
}

html[data-theme="dark"] main .gallery-proof-hero,
html[data-theme="dark"] main .gallery-tour,
html[data-theme="dark"] main .gallery-conversion {
  background:
    radial-gradient(circle at 82% 14%, rgba(18, 127, 56, 0.12), transparent 32%),
    linear-gradient(180deg, var(--bg-section-dark), var(--bg-page-dark)) !important;
  border-color: var(--border-dark) !important;
}

html[data-theme="dark"] main .gallery-proof-hero h1,
html[data-theme="dark"] main .gallery-proof-hero p,
html[data-theme="dark"] main .gallery-intro h2,
html[data-theme="dark"] main .gallery-intro p {
  color: var(--text-primary-dark) !important;
}

html[data-theme="dark"] main .gallery-proof-hero p,
html[data-theme="dark"] main .gallery-intro p {
  color: var(--text-secondary-dark) !important;
}

html[data-theme="dark"] main .gallery-card__media,
html[data-theme="dark"] main .gallery-showroom-card__map,
html[data-theme="dark"] main .gallery-lightbox__media,
html[data-theme="dark"] main .models-closer-image,
html[data-theme="dark"] main .gallery-main {
  background: var(--bg-section-dark) !important;
}

html[data-theme="dark"] main .lightbox-modal {
  background: rgba(2, 9, 18, 0.92) !important;
}

html[data-theme="dark"] main .lightbox-close,
html[data-theme="dark"] main .gallery-lightbox__nav {
  color: var(--text-primary-dark) !important;
  background: rgba(11, 79, 138, 0.92) !important;
  border-color: var(--border-dark-strong) !important;
}

html[data-theme="dark"] main table,
html[data-theme="dark"] main .model-specs-table,
html[data-theme="dark"] main .comparison-table,
html[data-theme="dark"] main .models-compare-panel,
html[data-theme="dark"] main .table-wrapper {
  background: var(--bg-card-dark) !important;
  border-color: var(--border-dark) !important;
  color: var(--text-primary-dark) !important;
}

html[data-theme="dark"] main th,
html[data-theme="dark"] main td,
html[data-theme="dark"] main .model-specs-table td,
html[data-theme="dark"] main .comparison-table th,
html[data-theme="dark"] main .comparison-table td {
  color: var(--text-secondary-dark) !important;
  border-color: var(--border-dark) !important;
}

html[data-theme="dark"] main th,
html[data-theme="dark"] main .model-specs-table td:first-child,
html[data-theme="dark"] main .comparison-table th {
  color: var(--text-primary-dark) !important;
  background: var(--bg-card-dark-2) !important;
}

html[data-theme="dark"] main input,
html[data-theme="dark"] main select,
html[data-theme="dark"] main textarea {
  color: var(--text-primary-dark) !important;
  background: var(--bg-section-dark) !important;
  border-color: var(--border-dark-strong) !important;
  box-shadow: none !important;
}

html[data-theme="dark"] main input::placeholder,
html[data-theme="dark"] main textarea::placeholder {
  color: var(--text-muted-dark) !important;
  opacity: 1;
}

html[data-theme="dark"] main label,
html[data-theme="dark"] main .form-group label,
html[data-theme="dark"] main .form-field label,
html[data-theme="dark"] main .lead-form label {
  color: var(--text-primary-dark) !important;
}

html[data-theme="dark"] .button--primary,
html[data-theme="dark"] .button--accent,
html[data-theme="dark"] .button--secondary,
html[data-theme="dark"] main .button--primary,
html[data-theme="dark"] main .button--accent,
html[data-theme="dark"] main .button--secondary,
html[data-theme="dark"] body[data-page="models"] .models-build-details > summary {
  color: #FFFFFF !important;
  background: var(--brand-blue) !important;
  border-color: var(--brand-blue) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24) !important;
}

html[data-theme="dark"] .button--primary:hover,
html[data-theme="dark"] .button--accent:hover,
html[data-theme="dark"] .button--secondary:hover,
html[data-theme="dark"] main .button--primary:hover,
html[data-theme="dark"] main .button--accent:hover,
html[data-theme="dark"] main .button--secondary:hover,
html[data-theme="dark"] body[data-page="models"] .models-build-details > summary:hover {
  background: var(--brand-blue-hover) !important;
  border-color: var(--brand-blue-hover) !important;
}

html[data-theme="dark"] .button--outline,
html[data-theme="dark"] .button--ghost,
html[data-theme="dark"] main .button--outline,
html[data-theme="dark"] main .button--ghost {
  color: var(--text-primary-dark) !important;
  background: var(--bg-card-dark-2) !important;
  border-color: rgba(126, 183, 230, 0.48) !important;
  box-shadow: none !important;
}

html[data-theme="dark"] .button--outline:hover,
html[data-theme="dark"] .button--ghost:hover,
html[data-theme="dark"] main .button--outline:hover,
html[data-theme="dark"] main .button--ghost:hover {
  color: #FFFFFF !important;
  background: var(--brand-blue) !important;
  border-color: var(--brand-blue) !important;
}

html[data-theme="dark"] .header-actions > .button,
html[data-theme="dark"] .button[data-tr="btn_request_pricing"],
html[data-theme="dark"] .button[data-tr="btn_request_quote"],
html[data-theme="dark"] .button[data-tr="btn_submit_request"],
html[data-theme="dark"] .button[data-tr="btn_send_request"],
html[data-theme="dark"] .button[data-tr^="btn_req_"],
html[data-theme="dark"] .button[href*="#pricing"],
html[data-theme="dark"] .button[href*="#model-inquiry"],
html[data-theme="dark"] .button.config-request-pricing,
html[data-theme="dark"] .form-submit,
html[data-theme="dark"] .submit-btn {
  color: #FFFFFF !important;
  background: var(--brand-green) !important;
  border-color: var(--brand-green) !important;
}

html[data-theme="dark"] .header-actions > .button:hover,
html[data-theme="dark"] .button[data-tr="btn_request_pricing"]:hover,
html[data-theme="dark"] .button[data-tr="btn_request_quote"]:hover,
html[data-theme="dark"] .button[data-tr="btn_submit_request"]:hover,
html[data-theme="dark"] .button[data-tr="btn_send_request"]:hover,
html[data-theme="dark"] .button[data-tr^="btn_req_"]:hover,
html[data-theme="dark"] .button[href*="#pricing"]:hover,
html[data-theme="dark"] .button[href*="#model-inquiry"]:hover,
html[data-theme="dark"] .button.config-request-pricing:hover,
html[data-theme="dark"] .form-submit:hover,
html[data-theme="dark"] .submit-btn:hover {
  background: var(--brand-green-hover) !important;
  border-color: var(--brand-green-hover) !important;
}

html[data-theme="dark"] .filter-btn,
html[data-theme="dark"] .models-filter-pill,
html[data-theme="dark"] .models-closer-tabs button,
html[data-theme="dark"] .models-closer-tab,
html[data-theme="dark"] .tab-button,
html[data-theme="dark"] .builder-model-option,
html[data-theme="dark"] .addon-card,
html[data-theme="dark"] .config-option-pill,
html[data-theme="dark"] .config-swatch-item,
html[data-theme="dark"] .config-checkbox-label {
  color: var(--text-primary-dark) !important;
  background: var(--bg-card-dark-2) !important;
  border-color: var(--border-dark-strong) !important;
}

html[data-theme="dark"] .filter-btn:hover,
html[data-theme="dark"] .models-filter-pill:hover,
html[data-theme="dark"] .models-closer-tabs button:hover,
html[data-theme="dark"] .models-closer-tab:hover,
html[data-theme="dark"] .tab-button:hover,
html[data-theme="dark"] .builder-model-option:hover,
html[data-theme="dark"] .addon-card:hover,
html[data-theme="dark"] .config-option-pill:hover,
html[data-theme="dark"] .config-swatch-item:hover,
html[data-theme="dark"] .config-checkbox-label:hover {
  color: #FFFFFF !important;
  background: rgba(11, 79, 138, 0.42) !important;
  border-color: rgba(126, 183, 230, 0.52) !important;
}

html[data-theme="dark"] .filter-btn.active,
html[data-theme="dark"] .models-filter-pill.active,
html[data-theme="dark"] .models-closer-tabs button.active,
html[data-theme="dark"] .models-closer-tabs button[aria-selected="true"],
html[data-theme="dark"] .models-closer-tab.is-active,
html[data-theme="dark"] .tab-button.active,
html[data-theme="dark"] .builder-model-option.active,
html[data-theme="dark"] .addon-card.active,
html[data-theme="dark"] .config-option-pill.active,
html[data-theme="dark"] .config-swatch-item.active,
html[data-theme="dark"] .config-checkbox-label.active {
  color: #FFFFFF !important;
  background: var(--brand-blue) !important;
  border-color: var(--brand-blue) !important;
}

html[data-theme="dark"] body[data-page="home"] .home-conversion-panel--primary .button:not([data-tr="btn_request_pricing"]) {
  color: var(--brand-navy) !important;
  background: #FFFFFF !important;
  border-color: #FFFFFF !important;
}

html[data-theme="dark"] body[data-page="home"] .home-conversion-panel--primary .button:not([data-tr="btn_request_pricing"]):hover,
html[data-theme="dark"] body[data-page="home"] .home-conversion-panel--primary .button:not([data-tr="btn_request_pricing"]):focus-visible {
  color: var(--brand-navy) !important;
  background: #EAF0F6 !important;
  border-color: #EAF0F6 !important;
}

html[data-theme="dark"] .site-footer,
html[data-theme="dark"] body[data-page="home"] .site-footer.wire-footer {
  background: var(--bg-section-dark) !important;
  border-top-color: var(--border-dark) !important;
}

/* US root navbar logo sizing */
.brand-logo.brand-logo--us-header {
  width: clamp(150px, 11.4vw, 164px);
  height: auto;
  max-height: 60px;
  object-fit: contain;
  transform: translateY(1px);
}

body[data-page="home"] .brand-logo.brand-logo--us-header {
  width: clamp(154px, 11.8vw, 168px);
  height: auto;
  max-height: 62px;
}

@media (max-width: 768px) {
  .brand-logo.brand-logo--us-header {
    width: clamp(116px, 33vw, 126px);
    height: auto;
    max-height: 48px;
  }

  body[data-page="home"] .brand-logo.brand-logo--us-header {
    width: clamp(118px, 34vw, 128px);
    height: auto;
    max-height: 48px;
  }
}

@media (max-width: 920px) {
  body[data-page="about"] .about-showroom-appointment {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body[data-page="about"] .about-showroom-appointment__visual {
    order: 1;
  }

  body[data-page="about"] .about-showroom-appointment .split-content__text {
    order: 2;
  }
}

@media (max-width: 640px) {
  body[data-page="about"] .section--about-showroom-appointment {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  body[data-page="about"] .about-showroom-appointment {
    gap: 24px;
  }

  body[data-page="about"] .about-showroom-appointment__visual {
    border-radius: 12px;
  }

  body[data-page="about"] .about-showroom-appointment__visual img {
    aspect-ratio: 16 / 11;
  }

  body[data-page="about"] .about-showroom-appointment__visual figcaption {
    left: 14px;
    top: 14px;
    font-size: 11px;
  }

  body[data-page="about"] .about-showroom-appointment .hero__actions {
    margin-top: 24px !important;
    width: 100%;
  }

body[data-page="about"] .about-showroom-appointment .hero__actions .button {
    width: 100%;
  }
}

/* Mobile hero crop and hamburger menu cleanup */
@media (max-width: 768px) {
  body[data-page="home"] .wire-home-hero {
    min-height: clamp(620px, 154vw, 690px);
  }

  body[data-page="home"] .wire-home-hero__copy,
  body[data-page="home"] .wire-home-hero p,
  body[data-page="home"] .wire-home-hero__actions,
  body[data-page="home"] .wire-home-hero__trust {
    width: 100% !important;
    max-width: min(420px, calc(100vw - 40px)) !important;
  }

  body[data-page="home"] .wire-home-hero h1 {
    width: 100% !important;
    max-width: min(11.5ch, calc(100vw - 40px)) !important;
  }

  body[data-page="home"] .wire-home-hero__poster img,
  body[data-page="home"] .wire-home-hero__media video {
    object-position: 50% 76% !important;
  }

  .header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .menu-toggle,
  body[data-page="home"] .menu-toggle {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    z-index: 250 !important;
    display: inline-flex !important;
    flex: 0 0 42px !important;
    width: 42px !important;
    height: 42px !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(4, 32, 69, 0.16) !important;
    border-radius: 10px !important;
    background: #FFFFFF !important;
    box-shadow: 0 8px 20px rgba(4, 32, 69, 0.10) !important;
  }

  .menu-toggle::after,
  body[data-page="home"] .menu-toggle::after {
    content: none !important;
    display: none !important;
  }

  .menu-toggle span,
  .menu-toggle span::before,
  .menu-toggle span::after,
  body[data-page="home"] .menu-toggle span,
  body[data-page="home"] .menu-toggle span::before,
  body[data-page="home"] .menu-toggle span::after {
    background-color: var(--nugen-blue) !important;
  }

  .menu-toggle[aria-expanded="true"] span {
    background-color: transparent !important;
  }

  .site-nav.is-open {
    position: fixed !important;
    top: 78px !important;
    right: 12px !important;
    bottom: 12px !important;
    left: 12px !important;
    z-index: 220 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    max-height: none !important;
    overflow-y: auto !important;
    padding: 70px 14px 82px !important;
    border: 1px solid rgba(4, 32, 69, 0.12) !important;
    border-radius: 14px !important;
    background: linear-gradient(180deg, rgba(245, 249, 248, 0.99), rgba(255, 255, 255, 0.99)) !important;
    box-shadow: 0 22px 54px rgba(4, 32, 69, 0.22) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .site-nav.is-open a,
  body[data-page] .site-nav.is-open a {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 44px !important;
    padding: 10px 14px !important;
    border: 1px solid rgba(4, 32, 69, 0.12) !important;
    border-radius: 10px !important;
    background: #FFFFFF !important;
    color: var(--nugen-blue) !important;
    font-size: 15px !important;
    font-weight: 850 !important;
    line-height: 1.2 !important;
    text-align: center !important;
    text-decoration: none !important;
    box-shadow: none !important;
  }

  .site-nav.is-open a::before,
  .site-nav.is-open a::after,
  body[data-page] .site-nav.is-open a::before,
  body[data-page] .site-nav.is-open a::after,
  body[data-page] .site-nav.is-open a.active::before,
  body[data-page] .site-nav.is-open a.active::after {
    content: none !important;
    display: none !important;
  }

  .site-nav.is-open a:hover,
  .site-nav.is-open a:focus-visible,
  .site-nav.is-open a.active,
  body[data-page="home"] .site-nav.is-open a[href="/"],
  body[data-page="models"] .site-nav.is-open a[href="/models"],
  body[data-page="gallery"] .site-nav.is-open a[href="/gallery"],
  body[data-page="about"] .site-nav.is-open a[href="/about"],
  body[data-page="financing"] .site-nav.is-open a[href="/financing"],
  body[data-page="faq"] .site-nav.is-open a[href="/faq"],
  body[data-page="contact"] .site-nav.is-open a[href="/contact"] {
    border-color: rgba(18, 127, 56, 0.30) !important;
    background: rgba(18, 127, 56, 0.08) !important;
    color: var(--nugen-blue) !important;
  }

  body:has(.site-nav.is-open) .nav-controls-mount {
    position: fixed !important;
    top: 94px !important;
    right: 28px !important;
    left: 28px !important;
    z-index: 240 !important;
    display: flex !important;
    justify-content: center !important;
    pointer-events: auto !important;
  }

  body:has(.site-nav.is-open) .lang-switcher {
    width: 78px !important;
    height: 34px !important;
    padding: 3px !important;
    border-color: rgba(4, 32, 69, 0.16) !important;
    border-radius: 10px !important;
    background: #FFFFFF !important;
    box-shadow: 0 8px 18px rgba(4, 32, 69, 0.10) !important;
  }

  body:has(.site-nav.is-open) .lang-btn {
    min-width: 0 !important;
    min-height: 28px !important;
    padding: 0 7px !important;
    border-radius: 8px !important;
    color: var(--nugen-blue) !important;
    font-size: 11px !important;
    line-height: 1 !important;
  }

  body:has(.site-nav.is-open) .lang-btn.active {
    color: #FFFFFF !important;
    background: var(--nugen-blue) !important;
  }

  body:has(.site-nav.is-open) .lang-btn::after {
    content: none !important;
    display: none !important;
  }

  body:has(.site-nav.is-open) .header-actions > .button {
    position: fixed !important;
    top: auto !important;
    right: 28px !important;
    bottom: 28px !important;
    left: 28px !important;
    z-index: 240 !important;
    display: inline-flex !important;
    width: auto !important;
    max-width: none !important;
    min-height: 46px !important;
    padding: 0 16px !important;
    border-radius: 10px !important;
    font-size: 13px !important;
    box-shadow: 0 12px 24px rgba(18, 127, 56, 0.24) !important;
  }
}

@media (max-width: 430px) {
  body[data-page="home"] .wire-home-hero {
    min-height: clamp(630px, 166vw, 710px);
  }

  body[data-page="home"] .wire-home-hero__poster img,
  body[data-page="home"] .wire-home-hero__media video {
    object-position: 50% 80% !important;
  }
}

@media (max-width: 380px) {
  body[data-page="home"] .wire-home-hero {
    min-height: 650px;
  }
}

