:root {
  --ink: #171717;
  --muted: #66625b;
  --paper: #f5f1ea;
  --panel: #fffaf1;
  --line: #d8d0c1;
  --graphite: #282b2c;
  --glass: #19c9d2;
  --signal: #d9471e;
  --signal-dark: #9d2e16;
  --green: #54735a;
  --white: #ffffff;
  --shadow: 0 16px 42px rgba(34, 29, 22, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(23, 23, 23, 0.035) 1px, transparent 1px) 0 0 / 48px 48px,
    var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Bahnschrift", "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 250, 241, 0.92), rgba(255, 250, 241, 0.65) 55%, rgba(25, 201, 210, 0.08)),
    linear-gradient(180deg, rgba(217, 71, 30, 0.08), transparent 42%);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(280px, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(40, 43, 44, 0.16);
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--graphite);
  background: var(--signal);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
  overflow-wrap: anywhere;
}

.brand strong {
  font-size: 1rem;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(40, 43, 44, 0.18);
  background: rgba(255, 250, 241, 0.74);
}

.nav a {
  min-height: 36px;
  padding: 8px 13px;
  color: var(--graphite);
  font-size: 0.92rem;
}

.nav a:hover {
  background: var(--graphite);
  color: var(--white);
}

.header-actions {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 14px;
}

.phone-link {
  font-weight: 800;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--signal);
  background: var(--signal);
  color: var(--white);
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--signal-dark);
  border-color: var(--signal-dark);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.button-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--graphite);
}

.button-compact {
  min-height: 40px;
  padding: 9px 16px;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 370px);
  min-height: min(760px, calc(100svh - 124px));
  overflow: hidden;
  background: var(--graphite);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 23, 23, 0.9), rgba(23, 23, 23, 0.42) 52%, rgba(23, 23, 23, 0.82)),
    linear-gradient(0deg, rgba(23, 23, 23, 0.58), transparent 34%);
}

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

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(760px, 100%);
  padding: clamp(54px, 9vh, 120px) clamp(20px, 6vw, 86px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--signal);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 0.98;
}

.hero h1 {
  max-width: 760px;
  font-size: 5.4rem;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
}

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

.hero-panel {
  position: relative;
  z-index: 1;
  align-self: end;
  margin: 0 clamp(18px, 4vw, 54px) clamp(18px, 4vw, 54px) 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(23, 23, 23, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-panel > div {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-panel > div:first-child {
  border-top: 0;
}

.hero-panel a,
.hero-panel strong {
  font-size: 1.04rem;
  font-weight: 850;
}

.panel-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 54px);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--graphite);
}

.strip-item {
  min-height: 190px;
  padding: 32px;
  background: var(--panel);
}

.strip-item span {
  display: block;
  color: var(--signal);
  font-weight: 900;
}

.strip-item strong {
  display: block;
  margin-top: 18px;
  font-size: 1.3rem;
}

.strip-item p {
  max-width: 34ch;
  margin: 10px 0 0;
  color: var(--muted);
}

.catalog-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0), rgba(255, 250, 241, 0.96)),
    var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(260px, 0.7fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.section-heading h2,
.contact-copy h2 {
  font-size: 4.4rem;
}

.section-heading p:not(.eyebrow),
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.filter-chip {
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.78);
  color: var(--graphite);
  font-weight: 800;
  cursor: pointer;
}

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

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

.product-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 32px rgba(34, 29, 22, 0.1);
}

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

.card-media {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  min-height: 280px;
  border-bottom: 1px solid var(--line);
}

.card-media figure {
  position: relative;
  min-width: 0;
  margin: 0;
  background: var(--white);
}

.card-media figure + figure {
  border-left: 1px solid var(--line);
}

.card-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-media figure:nth-child(2) img {
  padding: 16px;
  object-fit: contain;
  background: var(--white);
}

.card-media figcaption {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 9px;
  background: rgba(23, 23, 23, 0.72);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.card-body {
  display: grid;
  gap: 20px;
  padding: 22px;
}

.card-title p {
  margin: 0 0 5px;
  color: var(--signal);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card-title h3 {
  margin: 0;
  font-size: 1.36rem;
  line-height: 1.13;
}

.spec-list {
  display: grid;
  gap: 1px;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.spec-list div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  min-height: 42px;
  background: rgba(255, 250, 241, 0.86);
}

.spec-list dt,
.spec-list dd {
  margin: 0;
  padding: 10px 12px;
  overflow-wrap: anywhere;
}

.spec-list dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.spec-list dd {
  font-weight: 760;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  min-height: 46px;
}

.price-row strong {
  color: var(--graphite);
  font-size: 1.36rem;
  line-height: 1.1;
}

.price-row a {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--graphite);
  color: var(--graphite);
  font-weight: 900;
}

.price-row a:hover {
  background: var(--graphite);
  color: var(--white);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 0.65fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
  background: var(--graphite);
  color: var(--white);
}

.contact-copy .eyebrow {
  color: var(--glass);
}

.contact-copy p {
  max-width: 620px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-card {
  display: grid;
  gap: 3px;
  max-width: 420px;
  margin-top: 34px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.contact-card span,
.contact-card small {
  color: rgba(255, 255, 255, 0.62);
}

.contact-card a {
  font-size: 1.7rem;
  font-weight: 900;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--panel);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--graphite);
  font-size: 0.86rem;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--signal);
  box-shadow: 0 0 0 3px rgba(217, 71, 30, 0.14);
}

.lead-form .button {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 850;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(260px, 0.45fr);
  gap: 32px;
  padding: 38px clamp(18px, 4vw, 54px);
  background: #111111;
  color: var(--white);
}

.brand-footer .brand-mark {
  border-color: var(--white);
}

.site-footer p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer-cta {
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 12px;
}

.footer-cta span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-cta > a:not(.button) {
  font-size: 1.5rem;
  font-weight: 900;
}

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

  .nav {
    display: none;
  }

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

  .hero h1 {
    font-size: 4.2rem;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 3.8rem;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: stretch;
  }

  .header-actions {
    justify-content: space-between;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding-top: 78px;
    padding-bottom: 44px;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .hero-panel {
    display: none;
  }

  .intro-strip,
  .section-heading,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-heading .eyebrow {
    grid-column: auto;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 3.15rem;
  }

  .card-media {
    grid-template-columns: 1fr;
  }

  .card-media figure + figure {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .phone-link {
    font-size: 0.92rem;
  }

  .button-compact {
    padding-right: 12px;
    padding-left: 12px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 2.35rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .header-actions,
  .price-row {
    align-items: stretch;
    flex-direction: column;
  }

  .header-actions .button,
  .price-row a {
    width: 100%;
  }

  .strip-item,
  .card-body,
  .lead-form {
    padding: 18px;
  }

  .spec-list div {
    grid-template-columns: 1fr;
  }

  .spec-list dt {
    padding-bottom: 0;
  }

  .contact-card a,
  .footer-cta > a:not(.button) {
    font-size: 1.26rem;
  }
}
