:root {
  --black: #10120f;
  --black-2: #171a15;
  --green: #263428;
  --green-2: #3c4f3d;
  --orange: #f6a21b;
  --orange-2: #ffbf35;
  --cream: #f6efe1;
  --paper: #fbf8f0;
  --muted: #727865;
  --line: rgba(16, 18, 15, .13);
  --shadow: 0 26px 70px rgba(16, 18, 15, .17);
  color-scheme: light;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

a:hover { color: #c86e10; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 99;
  background: var(--orange);
  color: #111;
  padding: .75rem 1rem;
}

.skip-link:focus { left: 1rem; }

.site-header {
  background: rgba(16, 18, 15, .98);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 12px 35px rgba(0,0,0,.18);
}

.top-strip {
  display: flex;
  justify-content: flex-end;
  gap: 1.1rem;
  padding: .4rem clamp(1rem, 4vw, 4rem);
  font-size: .78rem;
  color: #d8d4c8;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.top-strip span { margin-right: auto; color: var(--orange-2); }

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: .75rem clamp(1rem, 4vw, 4rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: .28rem .65rem;
  box-shadow: 0 12px 24px rgba(0,0,0,.22);
}

.brand img {
  width: 245px;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.main-nav a {
  color: #ece7db;
  padding: .65rem .15rem;
  border-bottom: 2px solid transparent;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--orange-2);
  border-color: var(--orange);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .8rem 1.15rem;
  border-radius: 7px;
  border: 1px solid var(--orange);
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  color: #14120c;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: 0 11px 28px rgba(246, 162, 27, .25);
}

.button:hover { color: #111; transform: translateY(-1px); }

.button.dark {
  background: rgba(16,18,15,.84);
  color: #fff;
  border-color: rgba(255,255,255,.25);
  box-shadow: none;
}

.button.ghost,
.button.ghost-on-light {
  background: transparent;
  color: var(--black);
  border-color: rgba(16,18,15,.25);
  box-shadow: none;
}

.button.small {
  min-height: 38px;
  padding: .6rem .85rem;
  font-size: .78rem;
}

.nav-button { white-space: nowrap; }

h1, h2, h3 {
  margin: 0 0 .7rem;
  line-height: .98;
  letter-spacing: -.035em;
}

h1, h2 {
  font-family: "Arial Black", Impact, Arial, sans-serif;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.8rem, 7vw, 6.9rem); }

h2 { font-size: clamp(2rem, 4vw, 4rem); }

h3 { font-size: 1.15rem; }

p { margin: 0 0 1rem; }

.eyebrow {
  margin-bottom: .75rem;
  color: var(--orange);
  font-size: .8rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.hero-clean {
  min-height: auto;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(2rem, 4.6vw, 4.2rem) clamp(1rem, 5vw, 5rem) 0;
  background:
    radial-gradient(circle at 72% 24%, rgba(246,162,27,.22), transparent 28rem),
    radial-gradient(circle at 25% 72%, rgba(83,111,82,.3), transparent 28rem),
    linear-gradient(135deg, #090b09 0%, #121711 45%, #283220 100%);
}

.hero-clean::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 72%, rgba(246,162,27,.08) 72% 73%, transparent 73%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 120px);
  opacity: .72;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,7,5,.92) 0%, rgba(5,7,5,.74) 38%, rgba(5,7,5,.2) 100%),
    linear-gradient(0deg, rgba(5,7,5,.92) 0%, rgba(5,7,5,.1) 56%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.08);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 5vw, 5rem) 10rem;
}

.hero-clean .hero-content {
  padding: clamp(1.2rem, 3vw, 3rem) 0 clamp(2.2rem, 4vw, 4rem);
}

.hero-clean h1 {
  font-size: clamp(3rem, 5.4vw, 5.6rem);
}

.hero-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 520px;
  margin-bottom: clamp(3rem, 5vw, 5rem);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    #2f382b;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.hero-showcase::after {
  content: "";
  position: absolute;
  inset: auto -14% -28% 20%;
  height: 58%;
  background: rgba(246,162,27,.16);
  transform: skewX(-18deg);
}

.hero-showcase img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 460px;
  object-fit: contain;
  padding: clamp(1rem, 2vw, 1.8rem);
  filter: drop-shadow(0 26px 30px rgba(0,0,0,.34));
}

.showcase-kicker {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: .42rem .65rem;
  border-radius: 999px;
  background: var(--orange);
  color: #111;
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.showcase-notes {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.showcase-notes span {
  padding: .5rem .7rem;
  border-radius: 999px;
  background: rgba(16,18,15,.78);
  color: #fff7e8;
  font-size: .82rem;
  font-weight: 900;
}

.hero-content h1 span,
.orange { color: var(--orange-2); }

.hero-content p {
  max-width: 720px;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: #e7e1d4;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.6rem;
}

.hero-panels {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.09);
  border-top: 1px solid rgba(255,255,255,.11);
}

.hero-clean .hero-panels {
  grid-column: 1 / -1;
}

.hero-panels div {
  padding: 1.3rem clamp(1rem, 3vw, 2rem);
  background: rgba(16, 18, 15, .84);
}

.hero-panels strong {
  display: block;
  color: var(--orange-2);
  font-size: 1.45rem;
  font-family: "Arial Black", Impact, sans-serif;
}

.hero-panels span {
  color: #d8d2c6;
  font-size: .9rem;
}

.section {
  padding: clamp(3.5rem, 7vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.split > *,
.quote-band > *,
.page-hero > *,
.product-hero > *,
.spec-layout > *,
.contact-section > *,
.footer-grid > *,
.product-grid > *,
.mini-grid > * {
  min-width: 0;
}

.lead-copy {
  font-size: 1.08rem;
  color: #3e4338;
}

.dark-section {
  background:
    radial-gradient(circle at 75% 20%, rgba(246,162,27,.13), transparent 28rem),
    linear-gradient(135deg, var(--black), var(--black-2));
  color: #fff;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-heading h2 { max-width: 850px; }

.section-heading a {
  color: var(--orange-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.product-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.product-card {
  background: #fffaf0;
  color: var(--black);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-image {
  position: relative;
  min-height: 270px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(38,52,40,.07), rgba(246,162,27,.13)),
    #eee7d9;
}

.product-image img {
  width: 100%;
  height: 310px;
  object-fit: contain;
  padding: 1rem;
  transition: transform .25s ease;
}

.product-image:hover img { transform: scale(1.025); }

.product-image span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: .4rem .6rem;
  border-radius: 999px;
  background: var(--black);
  color: var(--orange-2);
  font-size: .78rem;
  font-weight: 900;
}

.product-card-body {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card h3 a { color: var(--black); }

.product-card ul {
  padding-left: 1.1rem;
  margin: .2rem 0 1rem;
  color: #3c4135;
}

.price-row {
  display: grid;
  gap: .1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.price-row strong {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.75rem;
}

.price-row small,
.small-print {
  color: var(--muted);
  font-size: .85rem;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1rem;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--black);
}

.value-strip div {
  background: var(--green);
  color: #f7f1e4;
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.value-strip span {
  display: inline-block;
  margin-bottom: .8rem;
  color: var(--orange-2);
  font-weight: 950;
}

.value-strip p { color: #d9d2c2; }

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .8rem;
}

.detail-gallery figure {
  margin: 0;
  position: relative;
  min-height: 205px;
  overflow: hidden;
  background: #ddd1bd;
}

.detail-gallery figure:nth-child(1),
.detail-gallery figure:nth-child(4) {
  grid-column: span 3;
}

.detail-gallery figure:nth-child(2),
.detail-gallery figure:nth-child(3),
.detail-gallery figure:nth-child(5) {
  grid-column: span 2;
}

.detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-gallery figcaption {
  position: absolute;
  left: .7rem;
  right: .7rem;
  bottom: .7rem;
  background: rgba(16,18,15,.78);
  color: #fff;
  padding: .45rem .55rem;
  font-size: .78rem;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.mini-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(16,18,15,.08);
}

.mini-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: .75rem;
  background: #f2eadc;
}

.mini-card h3,
.mini-card p,
.mini-card a { margin-left: 1rem; margin-right: 1rem; }

.mini-card h3 { margin-top: 1rem; }

.mini-card a {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: #b65d04;
  font-weight: 900;
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(246,162,27,.18), transparent 46%),
    #efe5d2;
}

.form-card,
.contact-card,
.warranty-card,
.spec-callout {
  background: #fffaf0;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.form-card.wide { max-width: 920px; }

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}

.quote-form label {
  display: grid;
  gap: .35rem;
  color: #303329;
  font-weight: 800;
  font-size: .9rem;
}

.quote-form .full,
.quote-form button,
.quote-form .form-note {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(16,18,15,.22);
  border-radius: 7px;
  background: #fff;
  color: var(--black);
  padding: .83rem .9rem;
  font: inherit;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(246,162,27,.28);
  border-color: var(--orange);
}

.form-note {
  color: var(--muted);
  font-size: .86rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  padding: 1rem;
  border-radius: 8px;
  background: #fff6dd;
  border: 1px solid rgba(246,162,27,.35);
  color: #4a3212;
  display: none;
}

.form-status.show { display: block; }

.page-hero,
.product-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .8fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 78% 30%, rgba(246,162,27,.2), transparent 28rem),
    linear-gradient(135deg, var(--black), var(--green));
  color: #fff;
}

.page-hero img,
.product-hero-image {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 70px rgba(0,0,0,.32);
  overflow: hidden;
}

.page-hero img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.compact-hero img,
.attachment-hero img,
.about-hero img {
  object-fit: contain;
  padding: 1rem;
}

.simple-hero { grid-template-columns: minmax(0, 1fr); }

.product-hero p,
.page-hero p {
  color: #e4dece;
  max-width: 780px;
  font-size: 1.08rem;
}

.product-hero-image {
  position: relative;
  padding: 1.5rem;
}

.product-hero-image img {
  width: 100%;
  height: 490px;
  object-fit: contain;
}

.product-hero-image span {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: var(--orange);
  color: #111;
  font-weight: 950;
}

.price-panel {
  display: inline-grid;
  gap: .15rem;
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
}

.price-panel span {
  color: #e7dbc7;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}

.price-panel strong {
  font-family: "Arial Black", Impact, sans-serif;
  color: var(--orange-2);
  font-size: 2.6rem;
  line-height: 1;
}

.price-panel small { color: #ddd3bf; }

.feature-list,
.application-grid,
.attachment-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-list article,
.application-grid article,
.attachment-grid article,
.process-grid article {
  background: #fffaf0;
  border: 1px solid var(--line);
  padding: 1.2rem;
  box-shadow: 0 12px 30px rgba(16,18,15,.07);
}

.process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.process-grid article { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.13); }

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: .8rem;
  border-radius: 50%;
  background: var(--orange);
  color: #111;
  font-weight: 950;
}

.package-section,
.specs-section,
.table-section {
  background: #fffaf0;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.check-list li {
  position: relative;
  padding: .85rem 1rem .85rem 2.4rem;
  background: #fff;
  border: 1px solid var(--line);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: .9rem;
  color: #b65d04;
  font-weight: 950;
}

.exclusions li::before { content: "•"; }

.spec-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 1.5rem;
  align-items: start;
}

.table-wrap { overflow-x: auto; }

.spec-table,
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 12px 35px rgba(16,18,15,.08);
}

.spec-table th,
.spec-table td,
.compare-table th,
.compare-table td {
  padding: .9rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th,
.compare-table th {
  width: 33%;
  background: rgba(38,52,40,.06);
}

.compare-table thead th {
  background: var(--black);
  color: #fff;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 2rem;
  align-items: start;
}

.contact-card { color: var(--black); }

.contact-card p { color: #303329; }

.contact-aside {
  position: sticky;
  top: 120px;
  background: var(--black);
  color: #fff;
  padding: 1.5rem;
}

.contact-aside .check-list {
  grid-template-columns: 1fr;
}

.contact-aside .check-list li {
  background: rgba(255,255,255,.08);
  color: #f2eadc;
  border-color: rgba(255,255,255,.12);
}

.legal-copy {
  max-width: 920px;
  margin: 0 auto;
}

.legal-copy h2 {
  font-size: 1.65rem;
  margin-top: 2rem;
}

.site-footer {
  background: var(--black);
  color: #ddd5c6;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 5vw, 5rem) 2rem;
}

.footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-cta h2 {
  max-width: 820px;
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 3.4rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-logo {
  width: 260px;
  max-width: 100%;
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 20px;
  padding: .55rem .75rem;
  box-shadow: 0 18px 38px rgba(0,0,0,.28);
}

.footer-grid h3 { color: #fff; }

.footer-grid a {
  display: block;
  color: #ddd5c6;
  margin-bottom: .5rem;
}

.copyright {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #a69f91;
  font-size: .85rem;
}

@media (max-width: 1100px) {
  .main-nav { display: none; }
  .nav-button { margin-left: auto; }
  .hero { min-height: 680px; }
  .hero-clean {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .hero-showcase { min-height: 420px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  .top-strip {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: .6rem;
  }
  .top-strip span { width: 100%; }
  .nav-wrap { gap: .8rem; }
  .brand { padding: .22rem .45rem; }
  .brand img { width: 168px; }
  .nav-button { min-height: 38px; padding: .55rem .75rem; font-size: .72rem; }
  .hero { min-height: auto; }
  .hero-content { padding: 4rem 1rem 3rem; }
  .hero-clean { padding: 2.2rem 1rem 0; }
  .hero-clean .hero-content { padding: 1rem 0 .6rem; }
  .hero-showcase {
    min-height: 300px;
    margin-bottom: 1.4rem;
  }
  .hero-showcase img { max-height: 300px; }
  h1 { font-size: clamp(2.45rem, 17vw, 4.4rem); }
  h2 {
    font-size: clamp(1.75rem, 9vw, 2.45rem);
    overflow-wrap: anywhere;
  }
  .hero-panels,
  .product-grid,
  .product-grid.two,
  .mini-grid,
  .feature-list,
  .application-grid,
  .attachment-grid,
  .process-grid,
  .check-list,
  .quote-form,
  .value-strip,
  .footer-grid,
  .split,
  .quote-band,
  .page-hero,
  .product-hero,
  .spec-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }
  .section-heading {
    display: block;
  }
  .page-hero,
  .product-hero {
    padding: 3rem 1rem;
  }
  .page-hero img,
  .product-hero-image img {
    max-height: 360px;
  }
  .detail-gallery {
    grid-template-columns: 1fr;
  }
  .detail-gallery figure,
  .detail-gallery figure:nth-child(n) {
    grid-column: auto;
  }
  .footer-cta {
    display: block;
  }
  .contact-aside {
    position: static;
  }
}
