:root {
  --ink: #171512;
  --muted: #625f59;
  --paper: #f8f5ef;
  --white: #ffffff;
  --olive: #51624a;
  --sage: #dce4d3;
  --clay: #b77355;
  --line: rgba(23, 21, 18, 0.14);
  --shadow: 0 24px 70px rgba(23, 21, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 58px);
  color: var(--white);
}

.product-header {
  position: absolute;
  color: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.88rem;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a {
  opacity: 0.88;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 112px clamp(20px, 5vw, 72px) 68px;
  overflow: hidden;
  color: var(--white);
  background-image: url("assets/veriquoe-hero.png");
  background-size: cover;
  background-position: center right;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22vh;
  background: linear-gradient(to bottom, rgba(248, 245, 239, 0), var(--paper));
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 15, 13, 0.82) 0%, rgba(16, 15, 13, 0.58) 36%, rgba(16, 15, 13, 0.12) 100%),
    linear-gradient(180deg, rgba(16, 15, 13, 0.4), rgba(16, 15, 13, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4.25rem, 10vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: clamp(1.28rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.18;
}

.hero-support {
  max-width: 590px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 34px;
  padding: 0 22px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  box-shadow: var(--shadow);
}

.primary-action:hover,
.primary-action:focus-visible {
  background: var(--sage);
}

.text-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 18px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}

.text-action:hover,
.text-action:focus-visible {
  background: var(--olive);
}

.intro-band {
  background: var(--paper);
  padding: 76px 0 36px;
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: start;
}

.intro-grid .section-kicker,
.section-heading .section-kicker {
  color: var(--olive);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.intro-grid p:last-child {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.category-section {
  padding: 76px 0 104px;
}

.section-heading {
  max-width: 720px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.category-card {
  min-height: 244px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.category-number {
  color: var(--clay);
  font-size: 0.8rem;
  font-weight: 800;
}

.category-card h3 {
  margin: 58px 0 12px;
  font-size: 1.35rem;
}

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

.featured-product {
  padding: 0 0 104px;
}

.featured-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.featured-image {
  display: grid;
  min-height: 360px;
  place-items: center;
  border-radius: 8px;
  background: #f2ede4;
  overflow: hidden;
}

.featured-image img {
  width: min(100%, 420px);
  height: auto;
  display: block;
}

.featured-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.product-page {
  background: #fbf8f2;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.78fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  width: min(1240px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 112px 0 72px;
}

.product-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.product-copy .section-kicker,
.product-section .section-kicker,
.specs-section .section-kicker {
  color: var(--olive);
}

.product-lede {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.product-badges span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.product-actions {
  margin-top: 34px;
}

.buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--clay);
  color: var(--white);
  font-weight: 800;
  box-shadow: var(--shadow);
}

.buy-button:hover,
.buy-button:focus-visible {
  background: #9c5e45;
}

.product-actions p {
  max-width: 460px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-gallery {
  display: grid;
  gap: 16px;
}

.product-main-image,
.product-thumbs {
  margin: 0;
}

.product-main-image {
  display: grid;
  min-height: 520px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.product-main-image img {
  width: min(100%, 520px);
  height: auto;
  display: block;
}

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

.product-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-section {
  padding: 84px 0;
  background: var(--white);
}

.product-faq {
  padding: 84px 0;
  background: var(--white);
}

.product-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: clamp(30px, 6vw, 86px);
}

.info-list {
  display: grid;
  gap: 18px;
}

.info-list article {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.info-list h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.info-list p {
  margin: 0;
  color: var(--muted);
}

.specs-section {
  padding: 84px 0 104px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
}

.spec-grid div {
  min-height: 126px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.spec-grid dt {
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.spec-grid dd {
  margin: 22px 0 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.site-footer {
  padding: 42px clamp(20px, 4vw, 58px);
  background: var(--ink);
  color: var(--white);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 14px;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 0.94rem;
  font-weight: 600;
}

.affiliate-note {
  width: min(1160px, 100%);
  margin: 26px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.86rem;
}

.policy-page {
  background: var(--paper);
}

.policy-main {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 126px 0 88px;
}

.policy-content {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.policy-content h1 {
  margin: 0 0 24px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.policy-content h2 {
  margin-top: 34px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.policy-content p {
  color: var(--muted);
  font-size: 1.04rem;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
    align-items: flex-end;
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(16, 15, 13, 0.3) 0%, rgba(16, 15, 13, 0.8) 72%, rgba(16, 15, 13, 0.88) 100%),
      linear-gradient(90deg, rgba(16, 15, 13, 0.42), rgba(16, 15, 13, 0.08));
  }

  .hero h1 {
    font-size: clamp(3.7rem, 17vw, 6rem);
  }

  .intro-grid,
  .category-grid,
  .featured-grid,
  .product-hero,
  .product-info-grid,
  .spec-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .category-grid {
    display: grid;
  }

  .footer-inner {
    display: grid;
  }

  .product-hero {
    padding-top: 96px;
  }

  .product-main-image {
    min-height: auto;
  }

  .featured-image {
    min-height: 280px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

  .hero {
    min-height: 92vh;
    padding: 104px 18px 54px;
  }

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

  .hero-support {
    font-size: 0.98rem;
  }

  .primary-action {
    width: 100%;
  }

  .section-inner {
    width: calc(100% - 36px);
  }

  .intro-band {
    padding-top: 58px;
  }

  .category-section {
    padding: 58px 0 78px;
  }

  .featured-grid {
    padding: 20px;
  }

  .product-hero {
    width: calc(100% - 36px);
  }

  .product-copy h1 {
    font-size: 2.45rem;
  }

  .buy-button {
    width: 100%;
  }

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

  .policy-content {
    padding: 24px;
  }
}
