:root {
  --ink: #172025;
  --graphite: #262b2f;
  --steel: #dfe6ea;
  --steel-dark: #63717a;
  --paper: #fbfbf8;
  --white: #ffffff;
  --brass: #b67a2c;
  --brass-light: #e4bd72;
  --teal: #08746d;
  --red: #a34534;
  --line: #d8dedf;
  --shadow: 0 18px 40px rgba(23, 32, 37, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

picture {
  display: block;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 20;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 4px;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 251, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.service-bar {
  min-height: 34px;
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 8px 16px;
  color: var(--white);
  background: var(--graphite);
  font-size: 0.82rem;
  font-weight: 700;
}

.main-nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 74px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  position: relative;
  display: inline-block;
  border: 2px solid var(--brass);
  border-radius: 50%;
}

.brand-mark::before {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  top: 8px;
  height: 8px;
  border: 3px solid var(--brass);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  height: 13px;
  background: var(--brass);
  border-radius: 2px;
  box-shadow: inset 0 -5px 0 var(--graphite);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  color: var(--steel-dark);
  font-size: 0.76rem;
  line-height: 1.25;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--graphite);
  font-size: 0.86rem;
  font-weight: 700;
}

.nav-links a,
.nav-cta,
.button,
.product-card a {
  text-decoration: none;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--teal);
}

.nav-cta,
.button,
.product-card a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1;
}

.nav-cta {
  padding: 0 18px;
  color: var(--white);
  background: var(--teal);
  font-size: 0.84rem;
}

.hero {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
}

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

.hero-image {
  object-fit: cover;
  object-position: 68% 46%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 32, 37, 0.96) 0%, rgba(23, 32, 37, 0.86) 36%, rgba(23, 32, 37, 0.22) 70%, rgba(23, 32, 37, 0.04) 100%),
    linear-gradient(180deg, rgba(8, 116, 109, 0.18), rgba(163, 69, 52, 0.12));
}

.hero-content {
  width: min(1180px, calc(100% - 40px));
  min-height: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 0;
}

.eyebrow,
.section-kicker,
.section-heading p {
  color: var(--brass-light);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin-top: 12px;
  font-size: 3.4rem;
  line-height: 1;
}

.hero-statement {
  max-width: 630px;
  margin-top: 14px;
  font-size: 1.16rem;
  line-height: 1.35;
  font-weight: 700;
}

.hero-copy {
  max-width: 610px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.5;
}

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

.button {
  padding: 0 20px;
  font-size: 0.9rem;
}

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

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.52);
}

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

.hero-facts {
  width: min(660px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-facts div {
  min-height: 70px;
  padding: 14px 16px;
  background: rgba(23, 32, 37, 0.62);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-facts dd {
  margin-top: 8px;
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
}

.intro-band {
  width: min(1180px, calc(100% - 40px));
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.intro-band div {
  min-height: 112px;
  padding: 24px;
  background: var(--white);
}

.intro-band strong {
  display: block;
  color: var(--teal);
  font-size: 0.92rem;
}

.intro-band span {
  display: block;
  margin-top: 8px;
  color: #435059;
  font-size: 0.92rem;
  line-height: 1.48;
}

.product-section,
.construction-section,
.spec-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 62px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.construction-copy h2,
.order-section h2 {
  margin-top: 8px;
  color: var(--ink);
  font-size: 2.2rem;
  line-height: 1.12;
}

.section-heading span,
.construction-copy p,
.order-section p {
  display: block;
  margin-top: 12px;
  color: #435059;
  font-size: 1rem;
  line-height: 1.6;
}

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

.product-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 168px auto auto auto;
  gap: 14px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(23, 32, 37, 0.06);
}

.product-card-featured {
  border-color: rgba(182, 122, 44, 0.72);
  box-shadow: 0 14px 26px rgba(182, 122, 44, 0.16);
}

.product-card img {
  width: 100%;
  height: 168px;
  object-fit: contain;
  mix-blend-mode: multiply;
  background: #f3f5f4;
  border-radius: 6px;
}

.product-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.product-main h3 {
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.2;
}

.product-main p {
  flex: 0 0 auto;
  padding: 5px 8px;
  color: var(--white);
  background: var(--graphite);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 800;
}

.product-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.product-card dl div {
  min-width: 0;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.product-card dt {
  color: var(--steel-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card dd {
  margin-top: 5px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.product-card a {
  width: 100%;
  padding: 0 12px;
  color: var(--white);
  background: var(--teal);
  font-size: 0.82rem;
}

.construction-section {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.74fr);
  gap: 54px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.construction-copy h2 {
  max-width: 720px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.feature-list li {
  min-height: 86px;
  position: relative;
  padding: 16px 16px 16px 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #3e4a52;
  font-size: 0.92rem;
  line-height: 1.45;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 21px;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(163, 69, 52, 0.12);
}

.detail-photo {
  margin: 0;
}

.detail-photo picture {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.detail-photo figcaption {
  margin-top: 12px;
  color: var(--steel-dark);
  font-size: 0.82rem;
  line-height: 1.4;
}

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

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.spec-grid div {
  min-height: 124px;
  padding: 22px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-grid span {
  display: block;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.spec-grid strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: 54px max(20px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 32, 37, 0.95), rgba(23, 32, 37, 0.72)),
    image-set(
      url("103006_FOTO02_LARGE.webp") type("image/webp"),
      url("103006_FOTO02_LARGE.jpg") type("image/jpeg")
    );
  background-size: cover;
  background-position: 70% center;
}

.order-section h2,
.order-section p {
  color: var(--white);
}

.order-section p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
}

.order-actions {
  min-width: 270px;
  display: grid;
  gap: 12px;
}

.order-actions p {
  margin-top: 0;
  text-align: center;
  font-size: 0.9rem;
}

.site-footer {
  background: var(--paper);
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 116px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #435059;
}

.footer-inner p {
  max-width: 520px;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: right;
}

@media (max-width: 1040px) {
  .main-nav {
    grid-template-columns: minmax(240px, 1fr) auto;
  }

  .nav-links {
    display: none;
  }

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

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(23, 32, 37, 0.96) 0%, rgba(23, 32, 37, 0.86) 48%, rgba(23, 32, 37, 0.26) 100%),
      linear-gradient(180deg, rgba(8, 116, 109, 0.18), rgba(163, 69, 52, 0.12));
  }

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

  .construction-section {
    grid-template-columns: 1fr;
  }

  .detail-photo picture {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 720px) {
  .service-bar {
    display: none;
  }

  .main-nav {
    width: calc(100% - 24px);
    min-height: 74px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px 0;
  }

  .nav-cta {
    width: auto;
    min-width: 94px;
    padding: 0 14px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .hero {
    min-height: 0;
  }

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

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(23, 32, 37, 0.94) 0%, rgba(23, 32, 37, 0.82) 54%, rgba(23, 32, 37, 0.42) 100%),
      linear-gradient(180deg, rgba(8, 116, 109, 0.14), rgba(163, 69, 52, 0.14));
  }

  .hero-content {
    width: calc(100% - 24px);
    min-height: 560px;
    padding: 34px 0;
  }

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

  .hero-statement {
    font-size: 1.08rem;
  }

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

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

  .intro-band,
  .product-grid,
  .feature-list,
  .spec-grid,
  .order-section {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    min-height: 76px;
    padding: 12px 10px;
  }

  .hero-facts dt {
    font-size: 0.66rem;
  }

  .hero-facts dd {
    font-size: 0.78rem;
  }

  .intro-band,
  .product-section,
  .construction-section,
  .spec-section,
  .footer-inner {
    width: calc(100% - 24px);
  }

  .product-section,
  .construction-section,
  .spec-section {
    padding: 44px 0;
  }

  .section-heading h2,
  .construction-copy h2,
  .order-section h2 {
    font-size: 1.76rem;
  }

  .product-card {
    grid-template-rows: 190px auto auto auto;
  }

  .product-card img {
    height: 190px;
  }

  .construction-section {
    gap: 32px;
  }

  .feature-list li {
    min-height: 0;
  }

  .order-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .order-actions {
    min-width: 0;
  }

  .footer-inner {
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 0;
  }

  .footer-inner p {
    text-align: left;
  }
}
