:root {
  --ink: #132326;
  --text: #2c3a3d;
  --muted: #68787a;
  --paper: #f6f2ea;
  --white: #fffdfa;
  --line: #d5ddd8;
  --forest: #21483f;
  --deep: #0e2f35;
  --copper: #b56d3f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 28px;
  align-items: center;
  padding: 18px clamp(20px, 4.8vw, 72px);
  background: rgba(246, 242, 234, 0.92);
  border-bottom: 1px solid rgba(19, 35, 38, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 1px;
}

.brand strong {
  font-size: 17px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 22px;
  color: var(--text);
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.85fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  padding: clamp(48px, 7vw, 104px) clamp(20px, 4.8vw, 72px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  font-size: clamp(44px, 5.7vw, 80px);
}

h2 {
  font-size: clamp(31px, 4vw, 54px);
}

h3 {
  font-size: 20px;
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: #405153;
  font-size: clamp(18px, 1.8vw, 22px);
}

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

.hero-image {
  min-height: 520px;
  background: var(--deep);
  background-position: center;
  background-size: cover;
}

section {
  padding: clamp(58px, 7vw, 96px) clamp(20px, 4.8vw, 72px);
  border-top: 1px solid rgba(19, 35, 38, 0.12);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(290px, 0.55fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}

.card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: #ffffff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-bottom: 1px solid var(--line);
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
}

.card small {
  color: var(--copper);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card p {
  margin: 6px 0 0;
  color: var(--muted);
}

.tier-badge {
  align-self: flex-start;
  margin-bottom: 4px;
  padding: 4px 10px;
  background: var(--forest);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spec-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.spec-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 15px;
}

.spec-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--copper);
  font-weight: 800;
}

.callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  max-width: 880px;
}

.callout .pill {
  display: inline-flex;
  align-self: flex-start;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(181, 109, 63, 0.16);
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-block {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding-top: clamp(36px, 5vw, 56px);
  margin-top: clamp(36px, 5vw, 56px);
  border-top: 1px solid var(--line);
}

.product-block:first-of-type {
  border-top: 0;
  margin-top: 24px;
  padding-top: 0;
}

.product-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: var(--white);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 1px solid var(--line);
}

.product-info h3 {
  font-size: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.product-info .kicker {
  margin: 0 0 8px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-info > p {
  margin: 12px 0 0;
  color: var(--text);
}

.table-wrap {
  margin-top: 18px;
  overflow-x: auto;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 460px;
}

.spec-table caption {
  text-align: left;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.spec-table thead th {
  background: var(--deep);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.spec-table th,
.spec-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.spec-table th[scope="row"] {
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.spec-table tbody tr:nth-child(even) {
  background: rgba(33, 72, 63, 0.04);
}

.config-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.swatch {
  background: var(--white);
  border: 1px solid var(--line);
}

.swatch .chip {
  height: 92px;
  border-bottom: 1px solid var(--line);
}

.swatch .chip.white {
  background: #f3f1ec;
}

.swatch .chip.bronze {
  background: #5a4632;
}

.swatch .chip.black {
  background: #1c1c1c;
}

.swatch .chip.custom {
  background: linear-gradient(135deg, #f3f1ec 0%, #b9a98f 38%, #5a4632 70%, #1c1c1c 100%);
}

.swatch .label {
  display: block;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.swatch .label small {
  display: block;
  margin-top: 2px;
  font-weight: 500;
  color: var(--muted);
}

.glossary {
  display: grid;
  gap: 0;
  max-width: 880px;
  margin-top: 8px;
}

.glossary div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.glossary dt {
  font-weight: 800;
  color: var(--ink);
}

.glossary dd {
  margin: 6px 0 0;
  color: var(--muted);
}

.materials-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tag {
  padding: 7px 13px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--text);
}

nav {
  gap: 16px;
  align-items: center;
}

nav .menu {
  position: relative;
}

nav .menu-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 4px;
  color: var(--text);
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
}

nav .menu-label::after {
  content: "\25BE";
  font-size: 9px;
  color: var(--muted);
}

nav .menu-label:hover {
  color: var(--copper);
}

nav .menu-panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 232px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(19, 35, 38, 0.14);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms;
  z-index: 60;
}

nav .menu:hover .menu-panel,
nav .menu:focus-within .menu-panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}

nav .menu-panel a {
  padding: 9px 12px;
  font-size: 14px;
  color: var(--ink);
  white-space: nowrap;
}

nav .menu-panel a:hover {
  background: var(--paper);
  color: var(--copper);
}

nav .menu.mega-menu {
  position: static;
}

nav .menu-panel.mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 0;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 48px;
  padding: 30px clamp(20px, 4.8vw, 72px);
  border-left: 0;
  border-right: 0;
}

nav .mega-head {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
}

nav .mega-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 36px;
  align-content: start;
}

nav .mega-tile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
}

nav .mega-tile:hover {
  background: var(--paper);
}

nav .mega-tile .thumb {
  flex: none;
  width: 66px;
  height: 66px;
  background-color: var(--white);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 1px solid var(--line);
}

nav .mega-tile .tile-label {
  font-size: 14px;
  color: var(--ink);
}

nav .mega-tile:hover .tile-label {
  color: var(--copper);
}

nav .mega-explore a {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  color: var(--ink);
}

nav .mega-explore a:hover {
  color: var(--copper);
  background: transparent;
}

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

.dark .eyebrow,
.dark .section-head p,
.dark .card p {
  color: #bed0cd;
}

.dark .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

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

.quote p {
  color: #c8d9d4;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 30px clamp(20px, 4.8vw, 72px);
  color: #5c6b6e;
  border-top: 1px solid rgba(19, 35, 38, 0.12);
}

@media (max-width: 980px) {
  .site-header,
  .hero,
  .section-head {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    min-height: 390px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 15px 18px;
  }

  .site-header .button {
    display: none;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand span {
    font-size: 10px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.06;
  }

  .lead {
    font-size: 17px;
  }

  .eyebrow {
    letter-spacing: 0.14em;
  }

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