:root {
  color: #f4ead7;
  background: #070605;
  --display-font: "Bodoni Moda", Didot, "Bodoni 72", "Bodoni 72 Smallcaps", "Bodoni MT", Georgia, serif;
  --text-font: Montserrat, "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-family: var(--text-font);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 0%, rgba(185, 139, 79, 0.18), transparent 31%),
    linear-gradient(180deg, #090807 0%, #12100d 48%, #070605 100%);
  color: #f4ead7;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px clamp(20px, 6vw, 76px);
  border-bottom: 1px solid rgba(198, 154, 93, 0.22);
  background: rgba(5, 4, 3, 0.92);
}

.brand {
  color: #f2dfbf;
  font-family: var(--display-font);
  font-size: 1.03rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.site-nav a,
.footer-nav a {
  color: #fff7e7;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.footer-nav a:hover {
  color: #c69a5d;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  padding: clamp(58px, 9vw, 112px) clamp(22px, 7vw, 92px);
}

.hero-copy {
  max-width: 760px;
}

.kicker {
  margin: 0 0 18px;
  color: #b98b4f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: #f2dfbf;
  font-family: var(--display-font);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 1;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.9vw, 3.8rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

p,
li {
  color: rgba(244, 234, 215, 0.78);
  font-size: 1rem;
  line-height: 1.72;
}

.lede {
  max-width: 720px;
  color: rgba(244, 234, 215, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.32rem);
}

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(198, 154, 93, 0.24);
  border-radius: 8px;
  background: #050403;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

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

.product-hero-image {
  aspect-ratio: 1;
}

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

.blog-hero-image,
.article-hero-image {
  aspect-ratio: 1;
}

.content-section {
  padding: clamp(52px, 8vw, 96px) clamp(22px, 7vw, 92px);
  border-top: 1px solid rgba(198, 154, 93, 0.16);
}

.content-section.alt {
  background: rgba(5, 4, 3, 0.36);
}

.section-inner {
  max-width: 1060px;
  margin: 0 auto;
}

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

.feature-list,
.faq-list,
.article-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.faq-list li,
.article-list li {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(198, 154, 93, 0.18);
}

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

.blog-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(198, 154, 93, 0.24);
  border-radius: 8px;
  background: rgba(7, 6, 5, 0.54);
  color: inherit;
  text-decoration: none;
  flex-direction: column;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
}

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

.blog-card-body p {
  margin-bottom: 0;
}

.blog-card-meta,
.article-meta {
  color: #b98b4f;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.article-shell {
  max-width: 860px;
  margin: 0 auto;
}

.article-body {
  max-width: 760px;
}

.blog-catalog {
  padding: 64px clamp(22px, 7vw, 92px) 96px;
  background: #0b0a08;
}

.blog-catalog-header {
  max-width: 900px;
  margin: 0 auto 52px;
}

.blog-catalog-header h1 {
  margin-bottom: 16px;
  font-family: var(--text-font);
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: none;
}

.blog-list {
  display: grid;
  max-width: 1040px;
  margin: 0 auto;
  gap: 0;
}

.blog-row {
  display: grid;
  grid-template-columns: minmax(160px, 210px) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 26px 0;
  border-top: 1px solid rgba(244, 234, 215, 0.12);
  color: inherit;
  text-decoration: none;
}

.blog-row:last-child {
  border-bottom: 1px solid rgba(244, 234, 215, 0.12);
}

.blog-row img {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  border: 1px solid rgba(244, 234, 215, 0.12);
  border-radius: 4px;
  object-fit: cover;
}

.blog-row-content {
  display: grid;
  gap: 8px;
}

.blog-row-content h2 {
  margin-bottom: 2px;
  color: #f4ead7;
  font-family: var(--text-font);
  font-size: 1.42rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

.blog-row-content p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(244, 234, 215, 0.66);
  font-size: 0.98rem;
  line-height: 1.62;
}

.blog-article {
  background: #0b0a08;
}

.blog-article .hero-panel {
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
  gap: 26px;
  padding: 60px 22px 42px;
}

.blog-article .hero-copy {
  max-width: 820px;
}

.blog-article h1 {
  max-width: 820px;
  font-family: var(--text-font);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.12;
  text-transform: none;
}

.blog-article .lede {
  font-size: 1.12rem;
  line-height: 1.72;
}

.blog-article .article-hero-image {
  width: min(100%, 760px);
  aspect-ratio: 16 / 9;
  box-shadow: none;
}

.blog-article .content-section {
  padding-top: 42px;
}

.article-body h2 {
  margin-top: 42px;
  font-family: var(--text-font);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.28;
  text-transform: none;
}

.article-body h3 {
  margin-top: 28px;
}

.article-body a {
  color: #f2dfbf;
  font-weight: 700;
}

.answer-box {
  margin: 28px 0;
  padding: 22px;
  border-left: 3px solid #c69a5d;
  background: rgba(198, 154, 93, 0.1);
}

.answer-box p {
  margin-bottom: 0;
  color: rgba(244, 234, 215, 0.88);
  font-size: 1.06rem;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.spec-table th,
.spec-table td {
  padding: 16px 0;
  border-bottom: 1px solid rgba(198, 154, 93, 0.2);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 34%;
  color: #c69a5d;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.spec-table td {
  color: rgba(244, 234, 215, 0.8);
  line-height: 1.65;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  background: #a33832;
  color: #fff7e7;
  font-family: var(--display-font);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.button.secondary {
  border: 1px solid rgba(198, 154, 93, 0.36);
  background: transparent;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(22px, 7vw, 92px);
  border-top: 1px solid rgba(185, 139, 79, 0.22);
  background: #050403;
}

.site-footer p {
  margin: 0;
  color: rgba(244, 234, 215, 0.62);
  font-size: 0.9rem;
}

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

@media (max-width: 860px) {
  .site-header,
  .hero-panel,
  .text-grid,
  .blog-grid,
  .blog-row {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero-image {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 560px) {
  .site-nav,
  .footer-nav {
    gap: 12px;
  }

  .site-nav a,
  .footer-nav a {
    font-size: 0.68rem;
  }

  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .spec-table tr {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(198, 154, 93, 0.2);
  }

  .spec-table th,
  .spec-table td {
    border-bottom: 0;
  }

  .blog-catalog-header h1,
  .blog-article h1 {
    font-size: 2.25rem;
  }
}
