:root {
  --ink: #17130e;
  --ink-2: #241f17;
  --paper: #faf8f5;
  --paper-2: #f1ebe2;
  --text: #2a2318;
  --muted: #7a6e5e;
  --orange: #e8621a;
  --orange-dark: #c94f13;
  --line-dark: rgba(255,255,255,.08);
  --line-light: #ded4c7;
  --max: 1180px;
  --side: clamp(20px, 4vw, 48px);
  --heading: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Barlow", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  background: var(--paper);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
::selection { background: var(--orange); color: #fff; }

.shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-left: var(--side);
  padding-right: var(--side);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(23,19,14,.96);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand img {
  height: 38px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 34px);
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.58);
  text-decoration: none;
  letter-spacing: .2px;
  transition: color .2s ease;
}

.nav-links a:hover,
.nav-links a:focus { color: #fff; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 24px;
  border: 0;
  background: var(--orange);
  color: #fff;
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.4px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.button:hover,
.button:focus {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.button.light {
  background: #fff;
  color: var(--orange);
}

.section-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--orange);
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-line::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.page-hero {
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 72px),
    var(--ink);
  color: #fff;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(38px, 6vw, 76px);
  align-items: end;
  padding-top: clamp(58px, 8vw, 96px);
  padding-bottom: clamp(58px, 8vw, 96px);
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(46px, 6.4vw, 88px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: .94;
  text-transform: uppercase;
}

.hero-summary {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.66);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.meta span,
.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(232,98,26,.38);
  color: var(--orange);
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.hero-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-2);
}

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

.hero-image.is-contain img {
  object-fit: contain;
  padding: 24px;
  background: #fff;
}

.hero-image::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 52px;
  border-left: 4px solid var(--orange);
  border-bottom: 4px solid var(--orange);
}

.main {
  padding-top: clamp(68px, 8vw, 108px);
  padding-bottom: clamp(74px, 8vw, 116px);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 320px);
  align-items: start;
  gap: clamp(40px, 6vw, 74px);
}

.content {
  min-width: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.72;
}

.content > *:first-child { margin-top: 0; }
.content > *:last-child { margin-bottom: 0; }
.content p { margin: 0 0 1.35em; }
.content h2,
.content h3,
.content h4 {
  margin: 1.5em 0 .55em;
  color: var(--ink);
  font-family: var(--heading);
  font-weight: 900;
  letter-spacing: -.2px;
  line-height: 1.02;
  text-transform: uppercase;
}
.content h2 { font-size: clamp(34px, 4vw, 48px); }
.content h3 { font-size: clamp(27px, 3vw, 36px); }
.content h4 { font-size: 24px; }
.content ul,
.content ol {
  margin: 0 0 1.45em;
  padding-left: 1.25em;
}
.content li { margin: .35em 0; }
.content a {
  color: var(--orange);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.content figure {
  margin: 2.2em 0;
  background: var(--paper-2);
  border-left: 3px solid var(--orange);
}
.content figure img { width: 100%; }
.content figcaption {
  padding: 14px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  background: #fff;
}
.content th,
.content td {
  padding: 14px;
  border: 1px solid var(--line-light);
  text-align: left;
  vertical-align: top;
}
.content blockquote {
  margin: 2em 0;
  padding: 22px 28px;
  background: var(--paper-2);
  border-left: 3px solid var(--orange);
  color: var(--ink);
  font-family: var(--heading);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
}

.sidebar {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 18px;
}

.side-panel {
  padding: 28px;
  background: var(--ink);
  color: #fff;
}

.side-panel h2 {
  margin: 0 0 12px;
  font-family: var(--heading);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.side-panel p {
  margin: 0 0 22px;
  color: rgba(255,255,255,.62);
  font-size: 15px;
  line-height: 1.6;
}

.link-list {
  display: grid;
  gap: 3px;
}

.link-list a,
.archive-card {
  display: block;
  padding: 24px;
  background: var(--paper-2);
  border-left: 3px solid transparent;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.link-list a:hover,
.link-list a:focus,
.archive-card:hover,
.archive-card:focus {
  background: #ece5da;
  border-left-color: var(--orange);
  transform: translateY(-1px);
}

.link-list strong,
.archive-card h2 {
  display: block;
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
}

.link-list span,
.archive-card p {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

.archive-card small {
  display: block;
  margin-bottom: 13px;
  color: var(--orange);
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.private-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  gap: clamp(38px, 6vw, 72px);
  align-items: start;
}

.private-video {
  overflow: hidden;
  background: var(--ink-2);
}

.private-video iframe,
.private-video img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  object-fit: cover;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
  margin-top: 28px;
}

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

.product-tile {
  background: #fff;
  text-decoration: none;
}

.product-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 24px;
  background: #fff;
}

.product-tile span {
  display: block;
  padding: 0 24px 24px;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.quality-card {
  padding: 26px;
  background: var(--paper-2);
  border-left: 3px solid var(--orange);
}

.quality-card h2,
.quality-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.quality-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.removed-box {
  max-width: 760px;
  padding: clamp(34px, 5vw, 56px);
  background: var(--paper-2);
  border-left: 4px solid var(--orange);
}

.removed-box p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.cta {
  background: var(--orange);
  color: #fff;
  padding-top: clamp(64px, 7vw, 92px);
  padding-bottom: clamp(64px, 7vw, 92px);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
}

.cta h2 {
  margin: 0 0 16px;
  max-width: 760px;
  font-family: var(--heading);
  font-size: clamp(40px, 4.8vw, 68px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: .96;
  text-transform: uppercase;
}

.cta p {
  margin: 0;
  max-width: 560px;
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.65;
}

.site-footer {
  background: #0d0b08;
  color: rgba(255,255,255,.44);
  padding: 64px 0 38px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 54px;
  margin-bottom: 52px;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 20px;
}

.footer-about {
  max-width: 280px;
  margin: 0 0 26px;
  font-size: 14px;
  line-height: 1.7;
}

.footer-col h2 {
  margin: 0 0 20px;
  color: rgba(255,255,255,.28);
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,.46);
  font-size: 14px;
  text-decoration: none;
}

.footer-col a:hover,
.footer-col a:focus { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.22);
  font-size: 13px;
}

.footer-bottom nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: rgba(255,255,255,.24);
  text-decoration: none;
}

@media (max-width: 980px) {
  .page-hero-grid,
  .content-grid,
  .private-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .hero-image { max-width: 560px; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 16px;
    padding-bottom: 18px;
  }
  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px 20px;
  }
  .nav-links .button {
    width: 100%;
    margin-top: 4px;
  }
  .page-hero-grid {
    padding-top: 46px;
    padding-bottom: 54px;
  }
  .page-hero h1 {
    font-size: clamp(40px, 15vw, 58px);
    line-height: .96;
  }
  .hero-summary { font-size: 16px; }
  .archive-grid,
  .quality-grid,
  .product-gallery,
  .footer-grid { grid-template-columns: 1fr; }
  .content { font-size: 16px; }
  .content blockquote { font-size: 22px; }
}
