:root {
  --ink: #172421;
  --ink-soft: #263632;
  --forest: #123f3c;
  --forest-deep: #0b2d2b;
  --teal: #2e6f68;
  --mint: #a9d9c4;
  --lime: #a8c832;
  --rust: #a44f32;
  --paper: #f5f3ee;
  --paper-warm: #ebe5d9;
  --white: #ffffff;
  --muted: #64716d;
  --line: #d8dfdb;
  --dark-line: rgba(255, 255, 255, 0.18);
  --shadow: 0 20px 55px rgba(18, 38, 34, 0.14);
  --content: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  stroke-width: 1.8;
}

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

h1,
h2,
h3 {
  margin-bottom: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 6.3vw, 5.5rem);
  font-weight: 600;
}

h2 {
  max-width: 780px;
  font-size: clamp(2.25rem, 4.3vw, 4.15rem);
  font-weight: 600;
}

h3 {
  font-size: 1.18rem;
  font-weight: 600;
}

p {
  color: var(--muted);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--forest);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.utility-bar {
  position: relative;
  z-index: 60;
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 7px max(24px, calc((100vw - var(--content)) / 2));
  color: rgba(255, 255, 255, 0.78);
  background: var(--forest-deep);
  font-size: 0.74rem;
}

.utility-bar p {
  margin: 0;
  color: inherit;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.utility-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-weight: 600;
}

.utility-links svg {
  width: 15px;
  height: 15px;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 38px;
  left: 0;
  width: 100%;
  color: var(--white);
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  position: fixed;
  top: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(15, 38, 32, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  width: min(calc(100% - 48px), var(--content));
  min-height: 80px;
  align-items: center;
  margin: 0 auto;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 42px;
  height: 38px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1.03rem;
  font-weight: 700;
}

.brand-copy small {
  margin-top: 5px;
  font-size: 0.58rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 0.82rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 28px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 0 16px;
}

.header-cta {
  color: var(--forest-deep);
  background: var(--lime);
}

.button-accent {
  color: var(--forest-deep);
  background: var(--lime);
}

.button-accent:hover,
.header-cta:hover {
  background: #bad747;
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(10, 30, 28, 0.25);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(10, 30, 28, 0.46);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--forest);
}

.button-outline {
  color: var(--forest-deep);
  background: transparent;
  border-color: var(--line);
}

.button-outline:hover {
  border-color: var(--forest-deep);
  background: #f3f6f4;
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 4px;
  cursor: pointer;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 78px));
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background: rgba(8, 31, 29, 0.54);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(calc(100% - 48px), var(--content));
  min-height: min(820px, calc(100vh - 78px));
  flex-direction: column;
  justify-content: flex-end;
  margin: 0 auto;
  padding: 130px 0 28px;
}

.hero-content {
  max-width: 800px;
  margin-bottom: 38px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--rust);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--mint);
}

.hero h1 {
  color: var(--white);
}

.hero-lead {
  max-width: 690px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: grid;
  width: 100%;
  margin: 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-proof div {
  min-width: 0;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-proof div:first-child {
  padding-left: 0;
}

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

.hero-proof dt {
  margin-bottom: 3px;
  color: var(--white);
  font-size: 1.42rem;
  font-weight: 600;
}

.hero-proof dd {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
}

.trust-strip {
  display: grid;
  width: 100%;
  padding: 0 max(24px, calc((100vw - var(--content)) / 2));
  color: var(--white);
  background: var(--forest);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-strip > div {
  display: flex;
  min-height: 86px;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-right: 1px solid var(--dark-line);
}

.trust-strip > div:first-child {
  padding-left: 0;
}

.trust-strip > div:last-child {
  border-right: 0;
}

.trust-strip svg {
  width: 24px;
  height: 24px;
  color: var(--mint);
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  line-height: 1.4;
}

.trust-strip strong {
  display: block;
  color: var(--white);
  font-size: 0.82rem;
}

.section {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  padding: 112px 0;
}

.section-lead {
  max-width: 860px;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  column-gap: 88px;
}

.intro-copy {
  align-self: end;
  padding-bottom: 8px;
}

.intro-copy p {
  margin-bottom: 24px;
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--forest);
  font-weight: 700;
}

.text-link {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.86rem;
}

.value-grid {
  display: grid;
  grid-column: 1 / -1;
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-item {
  position: relative;
  min-height: 275px;
  padding: 28px 28px 28px 0;
  border-right: 1px solid var(--line);
}

.value-item:not(:first-child) {
  padding-left: 28px;
}

.value-item:last-child {
  border-right: 0;
}

.value-item > span {
  display: block;
  margin-bottom: 42px;
  color: var(--rust);
  font-size: 0.7rem;
  font-weight: 700;
}

.value-item svg {
  width: 30px;
  height: 30px;
  margin-bottom: 22px;
  color: var(--teal);
}

.value-item p {
  margin: 12px 0 0;
  font-size: 0.85rem;
}

.product-section {
  padding-top: 90px;
}

.section-head {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 80px;
}

.section-head > p {
  max-width: 470px;
  margin: 0;
}

.section-head.light h2 {
  color: var(--white);
}

.section-head.light > p {
  color: rgba(255, 255, 255, 0.65);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 48px 0 28px;
}

.filter-button {
  min-height: 40px;
  padding: 0 17px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 600;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

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

.product-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.product-card.is-hidden {
  display: none;
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dfe7e2;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.035);
}

.product-index {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  width: 34px;
  height: 28px;
  place-items: center;
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  font-size: 0.65rem;
  font-weight: 700;
}

.product-content {
  min-height: 238px;
  padding: 24px;
}

.product-type {
  margin-bottom: 8px;
  color: var(--rust);
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-content h3 {
  min-height: 2.55rem;
}

.product-content > p:not(.product-type) {
  min-height: 4.3rem;
  margin: 13px 0 21px;
  font-size: 0.79rem;
}

.card-link {
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.78rem;
}

.card-link svg {
  width: 17px;
  height: 17px;
}

.comparison-band {
  color: var(--white);
  background: var(--forest-deep);
}

.comparison-inner {
  padding-top: 100px;
  padding-bottom: 100px;
}

.comparison-table {
  margin-top: 54px;
  border-top: 1px solid var(--dark-line);
}

.comparison-row {
  display: grid;
  min-height: 78px;
  align-items: center;
  padding: 14px 12px;
  border-bottom: 1px solid var(--dark-line);
  grid-template-columns: 0.75fr 1.45fr 1.4fr 1.1fr;
  gap: 24px;
}

.comparison-row > * {
  min-width: 0;
}

.comparison-row strong {
  color: var(--white);
  font-size: 0.84rem;
}

.comparison-row span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
}

.comparison-header {
  min-height: 50px;
}

.comparison-header span {
  color: var(--mint);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.interior-section {
  padding-bottom: 124px;
}

.interior-grid {
  display: grid;
  height: 660px;
  margin-top: 54px;
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.interior-grid figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  background: #dfe7e2;
  border-radius: 5px;
}

.interior-feature {
  grid-row: 1 / 3;
}

.interior-grid figure:last-child {
  grid-column: 2 / 4;
}

.interior-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interior-grid figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 11px 13px;
  color: var(--white);
  background: rgba(11, 45, 43, 0.88);
  border-radius: 3px;
  font-size: 0.76rem;
  font-weight: 600;
}

.interior-grid figcaption span {
  margin-right: 8px;
  color: var(--mint);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.application-section {
  border-top: 1px solid var(--line);
}

.application-layout {
  display: grid;
  min-height: 600px;
  margin-top: 56px;
  grid-template-columns: 1.05fr 0.95fr;
}

.application-photo {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--forest);
  border-radius: 6px 0 0 6px;
}

.application-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.application-photo > div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 20px;
  color: var(--white);
  background: rgba(11, 45, 43, 0.9);
  border-radius: 4px;
}

.application-photo p {
  margin-bottom: 5px;
  color: var(--mint);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.application-list {
  display: grid;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 6px 6px 0;
  grid-template-rows: repeat(4, 1fr);
}

.application-list article {
  display: grid;
  min-width: 0;
  align-items: center;
  padding: 26px 34px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 44px 1fr;
  gap: 20px;
}

.application-list article:last-child {
  border-bottom: 0;
}

.application-list svg {
  width: 30px;
  height: 30px;
  color: var(--teal);
}

.application-list p {
  margin: 8px 0 0;
  font-size: 0.79rem;
}

.custom-section {
  color: var(--white);
  background: var(--forest);
}

.custom-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.custom-copy h2 {
  color: var(--white);
}

.custom-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin: 26px 0 30px;
  color: rgba(255, 255, 255, 0.67);
}

.check-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.85rem;
}

.check-list svg {
  width: 18px;
  height: 18px;
  color: var(--lime);
}

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

.finish-gallery figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border-radius: 5px;
}

.finish-gallery img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.finish-gallery figcaption {
  padding: 14px 16px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 600;
}

.solar-section {
  display: grid;
  align-items: center;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 76px;
}

.solar-image {
  overflow: hidden;
  border-radius: 6px;
}

.solar-image img {
  height: 520px;
  object-fit: cover;
}

.solar-copy p:not(.eyebrow) {
  max-width: 500px;
  margin: 25px 0 28px;
}

.delivery-section {
  color: var(--white);
  background: var(--ink-soft);
}

.delivery-inner {
  padding-bottom: 92px;
}

.delivery-gallery {
  display: grid;
  margin-top: 54px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.delivery-gallery figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--forest-deep);
  border-radius: 5px;
}

.delivery-gallery img {
  height: 285px;
  object-fit: cover;
}

.delivery-gallery figcaption {
  display: grid;
  padding: 17px 18px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  grid-template-columns: 36px auto;
  grid-template-rows: auto auto;
}

.delivery-gallery figcaption span {
  grid-row: 1 / 3;
  color: var(--mint);
  font-weight: 700;
}

.delivery-gallery figcaption strong {
  color: var(--white);
  font-size: 0.83rem;
}

.process-line {
  display: grid;
  margin: 64px 0 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-line li {
  position: relative;
  min-width: 0;
  padding-right: 20px;
}

.process-line li::after {
  position: absolute;
  z-index: 0;
  top: 16px;
  right: 0;
  left: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.26);
  content: "";
}

.process-line li:last-child::after {
  display: none;
}

.process-line li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--forest-deep);
  background: var(--mint);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 700;
}

.process-line strong,
.process-line small {
  display: block;
}

.process-line strong {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 0.82rem;
}

.process-line small {
  max-width: 165px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  line-height: 1.5;
}

.company-panel {
  display: grid;
  min-height: 560px;
  color: var(--white);
  background: var(--forest-deep);
  border-radius: 6px;
  grid-template-columns: 0.92fr 1.08fr;
}

.company-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 68px;
}

.company-copy h2 {
  color: var(--white);
}

.company-copy > p:not(.eyebrow) {
  margin: 25px 0 34px;
  color: rgba(255, 255, 255, 0.66);
}

.company-facts {
  display: grid;
  border-top: 1px solid var(--dark-line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.company-facts div {
  min-width: 0;
  padding: 22px 12px 0 0;
}

.company-facts strong,
.company-facts span {
  display: block;
}

.company-facts strong {
  color: var(--white);
  font-size: 1.12rem;
}

.company-facts span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.66rem;
}

.company-image {
  position: relative;
  min-width: 0;
  min-height: 420px;
  overflow: hidden;
  border-radius: 0 6px 6px 0;
}

.company-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-image span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(11, 45, 43, 0.88);
  border-radius: 3px;
  font-size: 0.67rem;
}

.catalogue-band {
  color: var(--white);
  background: var(--rust);
}

.catalogue-inner {
  display: flex;
  width: min(calc(100% - 48px), var(--content));
  min-height: 330px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin: 0 auto;
  padding: 60px 0;
}

.catalogue-inner h2 {
  max-width: 740px;
  color: var(--white);
}

.catalogue-inner p:not(.eyebrow) {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.faq-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.faq-intro p:not(.eyebrow) {
  margin-top: 24px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  min-height: 82px;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 600;
  list-style: none;
  grid-template-columns: 1fr auto;
  gap: 24px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  margin: -4px 45px 24px 0;
  font-size: 0.85rem;
}

.contact-section {
  color: var(--white);
  background: var(--forest-deep);
}

.contact-inner {
  display: grid;
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  padding: 112px 0;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 25px 0 38px;
  color: rgba(255, 255, 255, 0.66);
}

.contact-links {
  display: grid;
  gap: 10px;
}

.contact-links > * {
  display: grid;
  max-width: 430px;
  min-height: 72px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  grid-template-columns: 34px 1fr;
  gap: 12px;
}

.contact-links svg {
  color: var(--mint);
}

.contact-links small,
.contact-links strong {
  display: block;
}

.contact-links small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.contact-links strong {
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 600;
}

.quote-form {
  align-self: start;
  padding: 36px;
  color: var(--ink);
  background: var(--white);
  border-radius: 6px;
}

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

.quote-form label {
  display: block;
  min-width: 0;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
}

.quote-form label > span {
  color: var(--rust);
}

.field-full {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  display: block;
  width: 100%;
  min-width: 0;
  margin-top: 8px;
  color: var(--ink);
  background: #fafbf9;
  border: 1px solid var(--line);
  border-radius: 3px;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.quote-form input,
.quote-form select {
  height: 48px;
  padding: 0 13px;
}

.quote-form textarea {
  min-height: 125px;
  padding: 12px 13px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(46, 111, 104, 0.13);
}

.form-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  gap: 10px;
  margin-top: 22px;
}

.form-actions .button {
  width: 100%;
  min-width: 0;
  padding-inline: 14px;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 12px 0 0;
  font-size: 0.65rem;
}

.form-note svg {
  width: 15px;
  height: 15px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.64);
  background: #081f1d;
}

.footer-main {
  display: grid;
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  padding: 72px 0 56px;
  grid-template-columns: 0.65fr 0.65fr 1.7fr;
  gap: 40px;
}

.footer-brand {
  align-self: start;
  color: var(--white);
}

.footer-main > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
}

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

.footer-nav > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-nav strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.75rem;
}

.footer-nav a {
  font-size: 0.7rem;
}

.footer-nav a:hover {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  width: min(calc(100% - 48px), var(--content));
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.64rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  background: #218b55;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(10, 50, 34, 0.28);
  transition: transform 160ms ease, background-color 160ms ease;
}

.whatsapp-float:hover {
  background: #176f43;
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 25px;
  height: 25px;
}

.product-dialog {
  width: min(980px, calc(100% - 32px));
  max-height: min(760px, calc(100vh - 32px));
  padding: 0;
  overflow: hidden auto;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 7px;
  box-shadow: 0 30px 90px rgba(7, 29, 27, 0.32);
}

.product-dialog::backdrop {
  background: rgba(7, 29, 27, 0.74);
}

.product-dialog[open] {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
}

.dialog-media {
  min-height: 570px;
  background: #dde6e1;
}

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

.dialog-content {
  padding: 58px 46px 42px;
}

.dialog-content h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.dialog-content > p:not(.eyebrow) {
  margin: 22px 0 30px;
  font-size: 0.86rem;
}

.dialog-columns {
  display: grid;
  margin-bottom: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.dialog-columns h3 {
  font-size: 0.82rem;
}

.dialog-columns ul {
  display: grid;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  gap: 9px;
}

.dialog-columns li {
  position: relative;
  padding-left: 14px;
  color: var(--muted);
  font-size: 0.74rem;
}

.dialog-columns li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--lime);
  border-radius: 50%;
  content: "";
}

.reveal {
  opacity: 1;
  transform: none;
}

body.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

body.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(168, 200, 50, 0.72);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .header-inner {
    gap: 22px;
  }

  .site-nav {
    gap: 18px;
  }

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

  .intro-section,
  .section-head {
    gap: 48px;
  }

  .custom-inner,
  .contact-inner {
    gap: 56px;
  }

  .company-copy {
    padding: 48px;
  }
}

@media (max-width: 900px) {
  .utility-bar p {
    display: none;
  }

  .utility-bar {
    justify-content: center;
  }

  .site-header {
    top: 36px;
  }

  .site-header.is-scrolled,
  .site-header.is-open {
    top: 0;
  }

  .site-header.is-open:not(.is-scrolled) {
    top: 36px;
  }

  .header-inner {
    min-height: 70px;
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: inline-grid;
    grid-column: 3;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 10px 24px 22px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 30px rgba(15, 38, 32, 0.12);
    flex-direction: column;
    gap: 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: min(730px, calc(100vh - 88px));
  }

  .hero-inner {
    min-height: min(730px, calc(100vh - 88px));
    padding-top: 115px;
  }

  .hero-content {
    margin-bottom: 48px;
  }

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

  .trust-strip > div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--dark-line);
  }

  .trust-strip > div:nth-child(3) {
    padding-left: 0;
  }

  .intro-section,
  .section-head,
  .solar-section,
  .faq-section,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .intro-copy,
  .section-head > p {
    max-width: 680px;
  }

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

  .value-item:nth-child(2) {
    border-right: 0;
  }

  .value-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .value-item:nth-child(3) {
    padding-left: 0;
  }

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

  .comparison-row {
    grid-template-columns: 0.75fr 1.35fr 1.15fr;
  }

  .comparison-row > *:last-child {
    display: none;
  }

  .interior-grid {
    height: 740px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .interior-feature {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .interior-grid figure:last-child {
    grid-column: 1 / 3;
  }

  .application-layout {
    grid-template-columns: 1fr;
  }

  .application-photo {
    min-height: 480px;
    border-radius: 6px 6px 0 0;
  }

  .application-list {
    border-top: 0;
    border-left: 1px solid var(--line);
    border-radius: 0 0 6px 6px;
  }

  .custom-inner,
  .company-panel {
    grid-template-columns: 1fr;
  }

  .custom-copy {
    max-width: 680px;
  }

  .company-image {
    border-radius: 0 0 6px 6px;
  }

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

  .footer-nav {
    grid-column: 1 / -1;
  }

  .product-dialog[open] {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .dialog-content {
    padding: 52px 34px 34px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 74px;
  }

  body {
    font-size: 15px;
  }

  .utility-bar {
    min-height: 36px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .utility-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .utility-links a {
    font-size: 0.63rem;
  }

  .utility-links a:last-child {
    max-width: 52%;
    overflow: hidden;
    white-space: nowrap;
  }

  .header-inner,
  .section,
  .contact-inner,
  .catalogue-inner,
  .footer-main,
  .footer-bottom,
  .hero-inner {
    width: min(calc(100% - 32px), var(--content));
  }

  .header-inner {
    min-height: 66px;
  }

  .site-nav {
    top: 66px;
  }

  .brand img {
    width: 36px;
    height: 34px;
  }

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

  .hero,
  .hero-inner {
    min-height: min(680px, calc(100vh - 82px));
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background: rgba(8, 31, 29, 0.66);
  }

  .hero-inner {
    padding: 115px 0 28px;
  }

  .hero-content {
    margin-bottom: 38px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-lead {
    margin: 22px 0 28px;
    font-size: 0.96rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-proof {
    gap: 0;
  }

  .hero-proof div {
    padding: 0 11px;
  }

  .hero-proof dt {
    font-size: 1rem;
  }

  .hero-proof dd {
    font-size: 0.6rem;
    line-height: 1.35;
  }

  .trust-strip {
    padding-right: 16px;
    padding-left: 16px;
  }

  .trust-strip > div,
  .trust-strip > div:first-child,
  .trust-strip > div:nth-child(3) {
    min-height: 80px;
    padding: 14px 10px;
  }

  .trust-strip svg {
    width: 20px;
    height: 20px;
  }

  .trust-strip span,
  .trust-strip strong {
    font-size: 0.66rem;
  }

  .section {
    padding: 78px 0;
  }

  .intro-section,
  .section-head,
  .custom-inner,
  .solar-section,
  .faq-section,
  .contact-inner {
    gap: 34px;
  }

  .value-grid {
    margin-top: 48px;
    grid-template-columns: 1fr;
  }

  .value-item,
  .value-item:not(:first-child),
  .value-item:nth-child(3) {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-item:last-child {
    border-bottom: 0;
  }

  .value-item > span {
    margin-bottom: 20px;
  }

  .filter-bar {
    margin-top: 36px;
  }

  .filter-button {
    flex: 1 1 calc(50% - 8px);
  }

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

  .product-content,
  .product-content > p:not(.product-type),
  .product-content h3 {
    min-height: 0;
  }

  .comparison-inner {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .comparison-table {
    margin-top: 38px;
  }

  .comparison-row {
    min-height: 0;
    padding: 18px 0;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 18px;
  }

  .comparison-row > *:nth-child(3),
  .comparison-header {
    display: none;
  }

  .comparison-row span,
  .comparison-row strong {
    font-size: 0.7rem;
  }

  .interior-grid {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .interior-grid figure,
  .interior-feature,
  .interior-grid figure:last-child {
    min-height: 260px;
    grid-column: auto;
    grid-row: auto;
  }

  .application-layout {
    min-height: 0;
  }

  .application-photo {
    min-height: 380px;
  }

  .application-list article {
    padding: 22px;
    grid-template-columns: 34px 1fr;
    gap: 14px;
  }

  .application-list svg {
    width: 25px;
    height: 25px;
  }

  .finish-gallery {
    grid-template-columns: 1fr;
  }

  .finish-gallery img {
    height: 260px;
  }

  .solar-image img {
    height: 360px;
  }

  .delivery-gallery {
    grid-template-columns: 1fr;
  }

  .delivery-gallery img {
    height: 250px;
  }

  .process-line {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-line li {
    min-height: 100px;
    padding: 0 0 20px 52px;
  }

  .process-line li::after {
    top: 32px;
    right: auto;
    bottom: 0;
    left: 15px;
    width: 1px;
    height: auto;
  }

  .process-line li > span {
    position: absolute;
    top: 0;
    left: 0;
  }

  .company-copy {
    padding: 36px 24px;
  }

  .company-facts {
    grid-template-columns: 1fr;
  }

  .company-facts div {
    padding-top: 16px;
  }

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

  .catalogue-inner {
    min-height: 380px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }

  .catalogue-inner .button {
    width: 100%;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 0.85rem;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .contact-inner {
    padding: 78px 0;
  }

  .quote-form {
    padding: 24px 18px;
  }

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

  .field-full {
    grid-column: auto;
  }

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

  .footer-main {
    padding-top: 56px;
    grid-template-columns: 1fr;
  }

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

  .footer-nav > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    min-height: 88px;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 0;
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
  }

  .product-dialog[open] {
    display: block;
  }

  .dialog-media {
    height: 280px;
    min-height: 0;
  }

  .dialog-content {
    padding: 32px 20px 24px;
  }

  .dialog-columns {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  body.js .reveal {
    opacity: 1;
    transform: none;
  }
}
