:root {
  --fg: #17201c;
  --muted: #66736e;
  --bg: #f6f4ee;
  --surface: #fffdfa;
  --surface-2: #eef3ef;
  --accent: #9a3f35;
  --accent-strong: #315f56;
  --accent-blue: #244c73;
  --accent-gold: #b9822b;
  --rule: #ded8ca;
  --shadow: 0 16px 42px rgba(23, 32, 28, 0.08);
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
  color: var(--fg);
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0) 360px),
    var(--bg);
  color: var(--fg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
}

body::before {
  background:
    linear-gradient(90deg, rgba(49,95,86,0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(49,95,86,0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  inset: 0;
  opacity: 0.42;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

header,
main,
footer {
  margin-left: auto;
  margin-right: auto;
  max-width: 1120px;
  width: min(100% - 32px, 1120px);
}

header {
  align-items: center;
  background: rgba(255,253,250,0.92);
  border: 1px solid rgba(222,216,202,0.92);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(23, 32, 28, 0.06);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 18px;
  padding: 0.82rem 0.95rem;
  position: sticky;
  top: 12px;
  z-index: 5;
}

header a.brand {
  color: var(--fg);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
}

header nav a {
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  min-height: 38px;
  padding: 0.45rem 0.7rem;
  text-decoration: none;
}

header nav a:hover {
  background: var(--surface-2);
  color: var(--accent-strong);
}

main {
  padding: 3.2rem 0 1rem;
}

section {
  margin: 2.5rem 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  color: #121916;
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  line-height: 0.96;
  margin: 0 0 1rem;
  max-width: 900px;
}

h2 {
  color: #17201c;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin: 0.2rem 0 0.55rem;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--accent-strong);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent);
}

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

.hero {
  background:
    linear-gradient(135deg, rgba(255,253,250,0.94), rgba(238,243,239,0.94)),
    var(--surface);
  border: 1px solid var(--rule);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.2rem;
  margin-top: 0;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  position: relative;
}

.hero::after {
  align-self: end;
  background:
    linear-gradient(90deg, var(--accent), var(--accent-gold), var(--accent-strong), var(--accent-blue));
  content: "";
  display: block;
  height: 6px;
  inset: auto 0 0;
  position: absolute;
}

.hero-sub {
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.24rem);
  max-width: 720px;
}

.eyebrow {
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  margin: 0 0 0.55rem;
  text-transform: uppercase;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin: 1.35rem 0 0;
}

.button {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 8px;
  color: var(--fg);
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 46px;
  padding: 0.72rem 1rem;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.button:hover {
  border-color: var(--accent-strong);
  box-shadow: 0 10px 24px rgba(49, 95, 86, 0.13);
  color: var(--accent-strong);
  transform: translateY(-1px);
}

.button.primary {
  background: var(--fg);
  border-color: var(--fg);
  color: #fffdfa;
}

.button.primary:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  color: #fffdfa;
}

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

.product-card {
  background: rgba(255,253,250,0.92);
  border: 1px solid var(--rule);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(23, 32, 28, 0.06);
  margin: 1rem 0;
  padding: 1.15rem;
}

.product-card-media,
.feature-grid {
  align-items: center;
  display: grid;
  gap: clamp(1.15rem, 3vw, 2rem);
  grid-template-columns: minmax(230px, 0.82fr) minmax(0, 1fr);
}

.seo-grid .product-card-media {
  align-items: start;
  grid-template-columns: 1fr;
  margin: 0;
}

.seo-grid .product-card-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.product-card-media img,
.art-preview img,
.gallery img {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(23, 32, 28, 0.08);
}

.art-preview {
  display: block;
  text-decoration: none;
}

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

.what-we-make,
.keyword-list {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.what-we-make li,
.keyword-list li {
  background: rgba(255,253,250,0.82);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 0.78rem 0.9rem;
}

.keyword-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cta {
  background: var(--fg);
  border: 1px solid var(--fg);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: #fffdfa;
  margin: 2.4rem 0;
  padding: clamp(1.3rem, 3vw, 2rem);
}

.cta a {
  color: #fff;
  font-weight: 850;
}

.cta strong {
  display: block;
  font-size: 1.16rem;
  margin-bottom: 0.35rem;
}

.post-meta,
.disclaimer {
  color: var(--muted);
}

.post-list {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}

.post-list li {
  background: rgba(255,253,250,0.88);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 0.85rem 1rem;
}

.post-list time {
  color: var(--muted);
  display: inline-block;
  font-size: 0.9rem;
  margin-right: 0.6rem;
}

footer {
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 3rem;
  padding: 1.4rem 0 3rem;
}

@media (max-width: 900px) {
  .seo-grid,
  .keyword-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  header {
    align-items: flex-start;
    display: grid;
    gap: 0.65rem;
    position: static;
  }

  header nav {
    justify-content: flex-start;
  }

  main {
    padding-top: 1.5rem;
  }

  .product-card-media,
  .feature-grid,
  .gallery,
  .seo-grid,
  .keyword-list {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}

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

.trust-card {
  background: rgba(255,253,250,0.92);
  border: 1px solid var(--rule);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(23, 32, 28, 0.06);
  padding: 1.15rem;
}

.policy-list li {
  margin-bottom: 0.55rem;
}

footer a {
  font-weight: 750;
}

@media (max-width: 780px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}


.merchant-product-facts {
  background: rgba(255, 253, 250, 0.94);
  border: 1px solid var(--rule);
  border-radius: 8px;
  margin: 1.25rem auto;
  max-width: 960px;
  padding: 1.25rem;
}
