/* Circle 7 Meats — Site Stylesheet v2 (high-end steakhouse edition)
   Real Meat. Ranch Direct.
   Refined 2026-05-22: onyx + bone + brass, editorial typography */

:root {
  /* Refined palette */
  --c7-onyx: #14110D;            /* Hero dark, deep negative space */
  --c7-ink: #221E18;              /* Body dark text */
  --c7-deep: #2D2620;             /* Mid-dark surface */
  --c7-charcoal: #4A4138;         /* Muted dark text */
  --c7-warm-brown: #5C4A36;
  --c7-copper: #8B5A2B;
  --c7-bone: #F8F4EB;             /* Page background, warmer than cream */
  --c7-cream: #F1EBDC;            /* Card background, hint warmer */
  --c7-linen: #E6DCC8;            /* Section alt background */
  --c7-sand: #D8C9A8;             /* Image-placeholder fill */
  --c7-divider: rgba(183, 137, 46, 0.22);   /* Brass hairline */
  --c7-line: rgba(34, 30, 24, 0.12);
  /* Brass accents */
  --c7-brass: #B7892E;             /* Primary metallic */
  --c7-brass-dark: #8E6A20;
  --c7-brass-light: #D6B36A;       /* Hover or highlight */
  /* Type */
  --font-display: "Cormorant Garamond", "Trajan Pro", "Garamond", "Georgia", serif;
  --font-ui: "Barlow Condensed", "Oswald", "Helvetica Neue", sans-serif;
  --font-body: "Barlow", "Inter", "Helvetica Neue", Arial, sans-serif;
  --max: 1240px;
  --article-max: 720px;
  --gutter: clamp(20px, 4vw, 64px);
  --radius: 2px;
  --shadow: 0 24px 60px rgba(20, 17, 13, 0.16);
  --shadow-soft: 0 8px 24px rgba(20, 17, 13, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--c7-bone);
  color: var(--c7-ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { color: var(--c7-brass-dark); text-decoration: none; transition: color 0.18s ease; }
a:hover { color: var(--c7-brass); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--c7-ink);
  letter-spacing: -0.005em;
  font-weight: 400;
  line-height: 1.12;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 3.8vw, 2.9rem); margin: 1.6em 0 0.5em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin: 1.4em 0 0.4em; }
h4 { font-size: 1.15rem; margin: 1.2em 0 0.35em; }

p { margin: 0 0 1.1em; }
strong { font-weight: 600; color: var(--c7-ink); }

.eyebrow {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  color: var(--c7-brass);
  font-weight: 500;
  margin: 0 0 1.2rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--c7-brass);
  vertical-align: middle;
  margin-right: 14px;
  margin-bottom: 3px;
}

.lede {
  font-family: var(--font-body);
  font-size: 1.22rem;
  color: var(--c7-charcoal);
  max-width: 64ch;
  line-height: 1.6;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* ========== Header ========== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 244, 235, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c7-divider);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter); max-width: var(--max); margin: 0 auto;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.65rem; color: var(--c7-ink); font-weight: 500;
  letter-spacing: 0.02em;
}
.brand span { color: var(--c7-brass); }
.nav-links { display: flex; gap: 32px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  color: var(--c7-ink);
  padding: 6px 2px;
  position: relative;
  font-weight: 500;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--c7-brass);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav-links a:hover { color: var(--c7-brass); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.84rem;
  padding: 16px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.22s ease;
  border: 1px solid var(--c7-brass);
  font-weight: 500;
  text-decoration: none;
}
.btn-primary { background: var(--c7-brass); color: var(--c7-bone); }
.btn-primary:hover { background: var(--c7-brass-dark); color: var(--c7-bone); border-color: var(--c7-brass-dark); }
.btn-ghost { background: transparent; color: var(--c7-ink); border-color: var(--c7-ink); }
.btn-ghost:hover { background: var(--c7-ink); color: var(--c7-bone); border-color: var(--c7-ink); }
.btn-on-dark { background: transparent; color: var(--c7-bone); border-color: var(--c7-brass); }
.btn-on-dark:hover { background: var(--c7-brass); color: var(--c7-onyx); }

/* ========== Hero ========== */
.hero {
  padding: clamp(96px, 13vw, 180px) 0 clamp(72px, 10vw, 130px);
  background: linear-gradient(180deg, var(--c7-bone) 0%, var(--c7-linen) 100%);
  position: relative;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: center; }
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }
.hero p.lede { margin: 1.2em 0 2.2em; }
.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-image {
  background: var(--c7-sand);
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background-position: center;
  background-size: cover;
  position: relative;
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(248, 244, 235, 0.5);
  pointer-events: none;
}

/* Dark hero variant (editorial articles) */
.hero-dark {
  background: var(--c7-onyx);
  color: var(--c7-bone);
  padding: clamp(110px, 14vw, 200px) 0 clamp(70px, 10vw, 130px);
  position: relative;
  overflow: hidden;
}
.hero-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(183, 137, 46, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-dark h1 { color: var(--c7-bone); }
.hero-dark .eyebrow { color: var(--c7-brass-light); }
.hero-dark .eyebrow::before { background: var(--c7-brass-light); }
.hero-dark .breadcrumb { color: rgba(248, 244, 235, 0.6); }
.hero-dark .breadcrumb a { color: rgba(248, 244, 235, 0.85); }
.hero-dark .breadcrumb a:hover { color: var(--c7-brass-light); }
.hero-dark .lede { color: rgba(248, 244, 235, 0.85); max-width: 60ch; }
.hero-dark .dateline {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: rgba(248, 244, 235, 0.7);
  margin-top: 2rem;
  display: flex; gap: 28px; flex-wrap: wrap; align-items: center;
}
.hero-dark .dateline .divider { width: 1px; height: 14px; background: var(--c7-brass); }

/* ========== Sections ========== */
section { padding: clamp(72px, 9vw, 130px) 0; }
section.alt { background: var(--c7-linen); }
section.ink { background: var(--c7-onyx); color: var(--c7-bone); position: relative; }
section.ink::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(183, 137, 46, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
section.ink h1, section.ink h2, section.ink h3 { color: var(--c7-bone); }
section.ink p { color: rgba(248, 244, 235, 0.82); }
section.ink .eyebrow { color: var(--c7-brass-light); }
section.ink .eyebrow::before { background: var(--c7-brass-light); }
section.ink a:not(.btn) { color: var(--c7-brass-light); }

/* ========== Trust strip ========== */
.trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  border-top: 1px solid var(--c7-divider);
  border-bottom: 1px solid var(--c7-divider);
  padding: 36px 0;
  text-align: center;
}
@media (max-width: 720px) { .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.trust-strip .item {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  color: var(--c7-charcoal);
}
.trust-strip .item strong {
  display: block;
  color: var(--c7-brass);
  font-size: 1.02rem;
  margin-bottom: 6px;
  letter-spacing: 0.16em;
}

/* ========== Tier cards ========== */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
@media (max-width: 880px) { .tiers { grid-template-columns: 1fr; } }
.tier-card {
  background: var(--c7-cream);
  border: 1px solid var(--c7-divider);
  border-radius: var(--radius);
  padding: 48px 36px;
  text-align: left;
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(183, 137, 46, 0.4);
}
.tier-card .tier-name {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--c7-ink);
  margin: 0 0 6px;
  font-weight: 400;
}
.tier-card .tier-price {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c7-brass);
  font-size: 0.88rem;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c7-divider);
}
.tier-card ul { padding-left: 18px; color: var(--c7-charcoal); margin: 0 0 8px; }
.tier-card li { margin-bottom: 6px; }

/* ========== Product grid ========== */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-top: 48px; }
@media (max-width: 880px) { .products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .products { grid-template-columns: 1fr; } }
.product-card {
  background: var(--c7-cream);
  border: 1px solid var(--c7-divider);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.product-card .thumb {
  background: var(--c7-sand);
  aspect-ratio: 1/1;
  position: relative;
}
.product-card .thumb::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(248, 244, 235, 0.4);
  pointer-events: none;
}
.product-card .body { padding: 28px 30px 32px; }
.product-card h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  font-weight: 400;
}
.product-card .price {
  font-family: var(--font-ui);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c7-brass);
  font-size: 0.88rem;
  margin-bottom: 14px;
  font-weight: 500;
}
.product-card p { font-size: 0.96rem; color: var(--c7-charcoal); margin-bottom: 14px; }
.product-card a:not(.btn) {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--c7-ink);
  border-bottom: 1px solid var(--c7-brass);
  padding-bottom: 2px;
}
.product-card a:not(.btn):hover { color: var(--c7-brass); }

/* ========== Two-up content blocks ========== */
.two-up { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.two-up.reverse > :first-child { order: 2; }
@media (max-width: 880px) {
  .two-up { grid-template-columns: 1fr; gap: 44px; }
  .two-up.reverse > :first-child { order: 0; }
}
.two-up .image {
  background: var(--c7-sand);
  aspect-ratio: 5/4;
  border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow-soft);
}
.two-up .image::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(248, 244, 235, 0.5);
  pointer-events: none;
}

/* ========== FAQ accordion ========== */
.faq-item {
  border-bottom: 1px solid var(--c7-divider);
  padding: 26px 0;
}
.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--c7-ink);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 400;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--c7-brass);
  font-family: var(--font-display);
  font-size: 1.8rem;
  transition: transform 0.24s ease;
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin-top: 14px; color: var(--c7-charcoal); font-size: 1.02rem; }

/* ========== Spec table ========== */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-family: var(--font-body);
}
.spec-table th, .spec-table td {
  text-align: left;
  padding: 18px 20px;
  border-bottom: 1px solid var(--c7-divider);
  font-size: 0.98rem;
}
.spec-table th {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--c7-ink);
  background: var(--c7-linen);
  font-weight: 500;
}
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:hover td { background: rgba(183, 137, 46, 0.04); }

/* ========== CTA banner ========== */
.cta-banner {
  background: var(--c7-onyx);
  color: var(--c7-bone);
  padding: clamp(72px, 10vw, 130px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(183, 137, 46, 0.08) 0%, transparent 70%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: var(--c7-bone); margin-bottom: 14px; }
.cta-banner p { color: rgba(248, 244, 235, 0.82); max-width: 60ch; margin: 0 auto 32px; font-size: 1.1rem; }

/* ========== Form ========== */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 22px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-field {
  display: block; width: 100%;
  padding: 16px 18px;
  font-family: var(--font-body); font-size: 1.02rem;
  background: var(--c7-bone);
  border: 1px solid var(--c7-divider);
  border-radius: var(--radius);
  color: var(--c7-ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.form-field:focus {
  outline: none;
  border-color: var(--c7-brass);
  box-shadow: 0 0 0 3px rgba(183, 137, 46, 0.18);
}
label {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--c7-charcoal);
  margin-bottom: 8px;
  display: block;
  font-weight: 500;
}

/* ========== Footer ========== */
.site-footer {
  background: var(--c7-onyx);
  color: rgba(248, 244, 235, 0.72);
  padding: 80px 0 36px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--c7-brass) 50%, transparent 100%);
}
.site-footer h4 {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  color: var(--c7-brass-light);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer a { color: rgba(248, 244, 235, 0.82); }
.site-footer a:hover { color: var(--c7-brass-light); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 12px; font-size: 0.96rem; }
.legal {
  border-top: 1px solid rgba(248, 244, 235, 0.1);
  margin-top: 56px; padding-top: 26px;
  font-size: 0.78rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(248, 244, 235, 0.55);
}

.breadcrumb {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--c7-charcoal);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--c7-charcoal); border-bottom: 1px solid transparent; padding-bottom: 1px; }
.breadcrumb a:hover { color: var(--c7-brass); border-bottom-color: var(--c7-brass); }

/* ========== Article (blog post + guide) ========== */
.article-wrap {
  max-width: var(--article-max);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 110px) var(--gutter);
}
.article-byline {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--c7-charcoal);
  margin: -8px 0 56px;
  display: flex; gap: 24px; flex-wrap: wrap; align-items: center;
}
.article-byline .divider { width: 22px; height: 1px; background: var(--c7-brass); }
.article-prose {
  font-size: 1.13rem;
  line-height: 1.78;
  color: var(--c7-ink);
}
.article-prose > p:first-of-type::first-letter {
  font-family: var(--font-display);
  float: left;
  font-size: 4.6rem;
  line-height: 0.88;
  padding: 0.04em 0.12em 0 0;
  color: var(--c7-brass);
  font-weight: 500;
}
.article-prose h2 {
  position: relative;
  padding-top: 1.6em;
  margin-top: 1.8em;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  letter-spacing: -0.005em;
}
.article-prose h2::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 44px;
  height: 1px;
  background: var(--c7-brass);
}
.article-prose h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); margin-top: 1.8em; }
.article-prose blockquote {
  margin: 2em 0 2em -1.2em;
  padding: 0 0 0 28px;
  border-left: 2px solid var(--c7-brass);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.4;
  color: var(--c7-ink);
  font-style: italic;
  font-weight: 400;
}
.article-prose blockquote p { margin: 0 0 0.4em; }
.article-prose blockquote cite {
  display: block;
  font-family: var(--font-ui);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: var(--c7-charcoal);
  margin-top: 0.6em;
}
.article-prose ul, .article-prose ol { padding-left: 1.4em; margin: 1em 0 1.4em; }
.article-prose li { margin-bottom: 0.5em; line-height: 1.7; }
.article-prose li::marker { color: var(--c7-brass); }
.article-prose hr {
  border: none;
  border-top: 1px solid var(--c7-divider);
  margin: 3em auto;
  max-width: 200px;
}
.article-prose img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 2em 0 0.6em;
}
.article-prose figcaption,
.article-prose img + em {
  display: block;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--c7-charcoal);
  text-align: center;
  margin-bottom: 2em;
}
.article-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  font-family: var(--font-body);
}
.article-prose th, .article-prose td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid var(--c7-divider);
  font-size: 0.98rem;
}
.article-prose th {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  color: var(--c7-ink);
  background: var(--c7-linen);
  font-weight: 500;
}
.article-prose code {
  font-family: "JetBrains Mono", "SF Mono", Consolas, monospace;
  background: var(--c7-linen);
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 0.92em;
}
.article-prose a {
  color: var(--c7-brass-dark);
  border-bottom: 1px solid var(--c7-divider);
  padding-bottom: 1px;
  transition: border-color 0.18s ease, color 0.18s ease;
}
.article-prose a:hover {
  color: var(--c7-brass);
  border-bottom-color: var(--c7-brass);
}

/* Article CTA after body */
.article-cta {
  margin: 6rem 0 0;
  padding: 56px 48px;
  background: var(--c7-onyx);
  color: var(--c7-bone);
  border-radius: var(--radius);
  text-align: center;
  position: relative;
}
.article-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--c7-brass);
}
.article-cta h2 {
  color: var(--c7-bone);
  margin: 0.4em 0 0.5em;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.article-cta p {
  color: rgba(248, 244, 235, 0.82);
  max-width: 52ch;
  margin: 0 auto 24px;
}

/* Related posts strip */
.related-strip {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--c7-divider);
}
.related-strip h3 {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.82rem;
  color: var(--c7-brass);
  margin-bottom: 2rem;
  font-weight: 500;
}

/* Product article (cut detail page) */
.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: clamp(80px, 11vw, 140px) 0 clamp(60px, 8vw, 100px);
  align-items: center;
}
@media (max-width: 880px) {
  .product-hero { grid-template-columns: 1fr; gap: 36px; }
}
.product-hero .image-frame {
  background: var(--c7-sand);
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow);
}
.product-hero .image-frame::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(248, 244, 235, 0.5);
  pointer-events: none;
}
.product-hero .price-stamp {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--c7-brass);
  margin: 0.5em 0;
  font-weight: 400;
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--c7-divider);
}
.badges {
  display: flex; gap: 14px; flex-wrap: wrap; margin-top: 1.6rem;
}
.badges .badge {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  padding: 6px 14px;
  border: 1px solid var(--c7-brass);
  color: var(--c7-brass);
  border-radius: 100px;
}

/* Small helpers */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-3 { margin-top: 1.5rem; }

/* ========== FULL-BLEED HERO ========== */
.hero-fullbleed {
  position: relative;
  min-height: min(94vh, 920px);
  display: flex;
  align-items: center;
  background: var(--c7-onyx);
  color: var(--c7-bone);
  overflow: hidden;
  margin-top: -1px;
}
.hero-fullbleed .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(8%) brightness(0.45) saturate(1.1);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-fullbleed.in-view .bg { transform: scale(1); }
.hero-fullbleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(20, 17, 13, 0.4) 0%, rgba(20, 17, 13, 0.85) 70%, var(--c7-onyx) 100%),
    linear-gradient(180deg, rgba(20, 17, 13, 0.2) 0%, rgba(20, 17, 13, 0.6) 100%);
  pointer-events: none;
}
.hero-fullbleed .wrap { position: relative; z-index: 2; padding: 80px var(--gutter); width: 100%; }
.hero-fullbleed h1 {
  color: var(--c7-bone);
  font-size: clamp(3.4rem, 9vw, 8rem);
  line-height: 0.94;
  letter-spacing: -0.02em;
  margin: 0.2em 0 0.35em;
  max-width: 14ch;
  text-shadow: 0 4px 60px rgba(0,0,0,0.5);
}
.hero-fullbleed h1 .ital {
  font-style: italic;
  color: var(--c7-brass-light);
  font-weight: 400;
}
.hero-fullbleed .eyebrow { color: var(--c7-brass-light); font-size: 0.84rem; }
.hero-fullbleed .eyebrow::before { background: var(--c7-brass-light); }
.hero-fullbleed .lede { color: rgba(248, 244, 235, 0.92); max-width: 56ch; font-size: 1.3rem; }
.hero-fullbleed .hero-cta { margin-top: 2.4em; gap: 18px; }
.hero-fullbleed .scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.7rem;
  color: rgba(248, 244, 235, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3;
}
.hero-fullbleed .scroll-cue::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--c7-brass-light) 0%, transparent 100%);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); transform-origin: top; }
  50%      { opacity: 1; transform: scaleY(1); }
}

/* ========== Brass marquee ========== */
.marquee {
  background: var(--c7-onyx);
  color: var(--c7-bone);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--c7-brass);
  border-bottom: 1px solid var(--c7-brass);
}
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 64px;
  color: var(--c7-bone);
}
.marquee-track span::after {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--c7-brass);
  border-radius: 50%;
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========== Big numbers slab ========== */
.bignums {
  background: var(--c7-onyx);
  color: var(--c7-bone);
  padding: clamp(80px, 11vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.bignums::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(183, 137, 46, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.bignums .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
@media (max-width: 720px) { .bignums .grid { grid-template-columns: 1fr; gap: 36px; } }
.bignums .num {
  text-align: center;
  position: relative;
}
.bignums .num + .num { border-left: 1px solid rgba(183, 137, 46, 0.25); }
@media (max-width: 720px) {
  .bignums .num + .num { border-left: none; border-top: 1px solid rgba(183, 137, 46, 0.25); padding-top: 36px; }
}
.bignums .figure {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.9;
  color: var(--c7-brass-light);
  margin: 0;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.bignums .label {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.82rem;
  color: rgba(248, 244, 235, 0.7);
  margin-top: 1.2em;
  display: block;
}
.bignums .sublabel {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(248, 244, 235, 0.55);
  font-size: 1rem;
  margin-top: 0.4em;
}

/* ========== Statement slab (giant pull quote between sections) ========== */
.statement {
  background: var(--c7-onyx);
  color: var(--c7-bone);
  padding: clamp(100px, 14vw, 180px) 0;
  position: relative;
  overflow: hidden;
}
.statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(20%) brightness(0.28) saturate(1.1);
  opacity: 0.7;
}
.statement::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(20,17,13,0.4) 0%, rgba(20,17,13,0.9) 100%);
}
.statement .wrap { position: relative; z-index: 2; }
.statement blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1.15;
  margin: 0 auto;
  max-width: 24ch;
  text-align: center;
  color: var(--c7-bone);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.statement cite {
  display: block;
  font-family: var(--font-ui);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.82rem;
  color: var(--c7-brass-light);
  margin-top: 3rem;
  text-align: center;
}
.statement cite::before {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--c7-brass-light);
  margin: 0 auto 1.4em;
}

/* ========== Process / 3-step ========== */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px;
}
@media (max-width: 880px) { .process { grid-template-columns: 1fr; gap: 32px; } }
.process .step {
  position: relative;
  padding-top: 64px;
}
.process .step .num {
  position: absolute;
  top: 0; left: 0;
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--c7-brass);
  line-height: 1;
  font-weight: 400;
}
.process .step .num::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--c7-brass);
  margin-top: 8px;
}
.process .step h3 { margin: 0 0 12px; font-size: 1.5rem; }
.process .step p { color: var(--c7-charcoal); font-size: 1rem; }

/* ========== Image hover zoom for product cards ========== */
.product-card .thumb {
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.product-card:hover .thumb { transform: scale(1.04); }
.product-card { overflow: hidden; }

/* Tagline monogram in footer */
.monogram {
  position: absolute;
  right: 4vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(8rem, 14vw, 14rem);
  line-height: 1;
  color: rgba(183, 137, 46, 0.12);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.site-footer { position: relative; overflow: hidden; }
.site-footer .wrap { position: relative; z-index: 1; }

/* Subtle fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
