/* eFloorCovering — premium retail design
   Cues from leading US flooring sites: full-bleed room heroes,
   visual category merchandising, trust strips, high contrast CTAs,
   white product wells. Brand wordmark always solid (no partial accent). */

:root {
  --bg: #f4f1ec;
  --bg-deep: #e8e2d8;
  --white: #ffffff;
  --ink: #0f0e0c;
  --ink-soft: #3d3a35;
  --muted: #6f6a62;
  --line: rgba(15, 14, 12, 0.1);
  --line-strong: rgba(15, 14, 12, 0.16);
  --wood: #7a5434;
  --wood-soft: #a67c52;
  --forest: #1e3d32;
  --forest-hot: #2a5646;
  --accent: #1e3d32;
  --accent-hot: #2a5646;
  --shadow-sm: 0 1px 2px rgba(15, 14, 12, 0.05);
  --shadow-md: 0 16px 48px rgba(15, 14, 12, 0.12);
  --shadow-lg: 0 28px 80px rgba(15, 14, 12, 0.18);
  --radius: 0.35rem;
  --radius-lg: 0.75rem;
  --font: "Inter", "DM Sans", system-ui, sans-serif;
  --display: "Instrument Serif", "Fraunces", Georgia, serif;
  --max: 1240px;
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--forest);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
a:hover {
  color: var(--wood);
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ── Top utility bar (Floor & Decor / LL pattern) ── */
.utility-bar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.utility-inner {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
  justify-content: center;
  padding: 0.45rem 0;
}
.utility-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.utility-bar strong {
  color: #fff;
  font-weight: 650;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 241, 236, 0.94);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.cat-nav-wrap {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}
.cat-nav {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.15rem;
  padding: 0.45rem 0;
  align-items: center;
}
.cat-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}
.cat-nav a:hover {
  color: var(--ink);
  background: rgba(15, 14, 12, 0.06);
}
@media (max-width: 700px) {
  .cat-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    gap: 0.1rem;
    padding-bottom: 0.55rem;
  }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}
.brand,
.brand:hover,
.brand:focus {
  color: var(--ink);
  text-decoration: none;
}
.brand-mark {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 3px;
  background:
    linear-gradient(145deg, var(--wood-soft) 0%, var(--wood) 45%, var(--forest) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
.brand-name {
  color: inherit;
  font-weight: 750;
}
.brand-year {
  font-size: 0.65rem;
  font-weight: 650;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-left: 1px solid var(--line-strong);
  padding-left: 0.55rem;
  margin-left: 0.1rem;
}
.brand:hover .brand-year {
  color: var(--muted);
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.35rem;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
}
.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--wood);
}
.nav-cta {
  background: var(--ink) !important;
  color: #fff !important;
  padding: 0.55rem 1.05rem !important;
  border-radius: 999px !important;
  border-bottom: none !important;
}
.nav-cta:hover {
  background: var(--forest) !important;
  color: #fff !important;
  border-bottom: none !important;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  background: var(--white);
  border-radius: 0.45rem;
  padding: 0.45rem 0.75rem;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}
@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.35rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .nav.open {
    display: flex;
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  background: var(--forest);
  color: #fff;
}
.btn-secondary {
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--ink);
}
.btn-secondary.on-dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.btn-secondary.on-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.btn-secondary.on-light {
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn-amazon {
  background: #ff9900;
  color: #111;
}
.btn-amazon:hover {
  color: #111;
  filter: brightness(1.05);
}
.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink-soft);
}
.btn-lg {
  padding: 0.95rem 1.55rem;
  font-size: 1rem;
}

/* ── Full-bleed hero (Carpet One / Flooring Inc pattern) ── */
.hero-bleed {
  position: relative;
  min-height: clamp(520px, 78vh, 720px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: #1a1814;
}
.hero-bleed-media {
  position: absolute;
  inset: 0;
}
.hero-bleed-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}
.hero-bleed-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 9, 8, 0.78) 0%, rgba(10, 9, 8, 0.45) 48%, rgba(10, 9, 8, 0.25) 100%),
    linear-gradient(0deg, rgba(10, 9, 8, 0.55) 0%, transparent 45%);
}
.hero-bleed-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 4.5rem 0 3.5rem;
  max-width: 40rem;
  margin-left: max(1.25rem, calc((100% - var(--max)) / 2 + 0px));
  margin-right: auto;
}
@media (min-width: 900px) {
  .hero-bleed-content {
    margin-left: max(1.25rem, calc((100% - min(var(--max), calc(100% - 2.5rem))) / 2));
    padding: 5.5rem 0 4rem;
  }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wood-soft);
  margin: 0 0 1rem;
}
.hero-bleed .eyebrow {
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
}
h1,
.section-title {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 1rem;
}
h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.1rem);
  text-wrap: balance;
}
.hero-bleed h1 {
  color: #fff;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.25);
}
.hero-bleed h1 em {
  font-style: italic;
  color: #f0e6d8;
}
.hero-lede,
.section-lede {
  font-size: 1.125rem;
  color: var(--ink-soft);
  max-width: 36rem;
  margin: 0 0 1.5rem;
}
.hero-bleed .hero-lede {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
  max-width: 32rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  max-width: 28rem;
}
.hero-stats div strong {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  color: #fff;
  font-weight: 500;
}
.hero-stats div span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Trust strip ── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 800px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.trust-item {
  padding: 1.35rem 1.25rem;
  text-align: center;
  border-right: 1px solid var(--line);
}
.trust-item:last-child {
  border-right: 0;
}
@media (max-width: 800px) {
  .trust-item:nth-child(2n) {
    border-right: 0;
  }
  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}
.trust-item .icon {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}
.trust-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.trust-item span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── Sections ── */
.section {
  padding: 4.25rem 0;
}
.section-alt {
  background: var(--white);
}
.section-dark {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
}
.section-dark .section-title {
  color: #fff;
}
.section-dark .section-lede {
  color: rgba(255, 255, 255, 0.7);
}
.section-dark .eyebrow {
  color: var(--wood-soft);
}
.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 2rem;
}
.section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  margin-bottom: 0.4rem;
}
.section-lede {
  margin-bottom: 0;
  font-size: 1.05rem;
}

/* ── Category visual grid (retail merchandising) ── */
.cat-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 1000px) {
  .cat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.cat-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: #fff;
}
.cat-card-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.01);
  transition: transform 0.35s ease;
}
.cat-card:hover .cat-card-media {
  transform: scale(1.05);
}
/* Lighter veil so photography stays visible — was crushing the images */
.cat-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 9, 8, 0.05) 0%,
    rgba(10, 9, 8, 0.12) 42%,
    rgba(10, 9, 8, 0.72) 100%
  );
}
.cat-card.has-photo .cat-card-media::after {
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 38%,
    rgba(10, 9, 8, 0.55) 78%,
    rgba(10, 9, 8, 0.88) 100%
  );
}
.cat-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.15rem 1.1rem 1.2rem;
  z-index: 1;
}
.cat-card h3 {
  margin: 0 0 0.25rem;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}
.cat-card p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-card .go {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 1px;
}
.cat-card:hover .go {
  border-bottom-color: #fff;
}

/* Material fallbacks when no photo */
.cat-card[data-hue="oak"] .cat-card-media {
  background: linear-gradient(145deg, #c4a574, #8b5e3c 50%, #5c3d24);
}
.cat-card[data-hue="slate"] .cat-card-media {
  background: linear-gradient(145deg, #9aa3a8, #5c656b 55%, #2f363a);
}
.cat-card[data-hue="sand"] .cat-card-media {
  background: linear-gradient(145deg, #e2d3b5, #b89b6a 50%, #7a6240);
}
.cat-card[data-hue="stone"] .cat-card-media {
  background: linear-gradient(145deg, #d4d0c8, #8a8680 50%, #4a4844);
}
.cat-card[data-hue="wool"] .cat-card-media {
  background: linear-gradient(145deg, #d8cfc4, #a89888 50%, #6b5d52);
}
.cat-card[data-hue="brass"] .cat-card-media {
  background: linear-gradient(145deg, #e8d5a8, #b08d57 50%, #6e5630);
}
.cat-card[data-hue="forest"] .cat-card-media {
  background: linear-gradient(145deg, #7a9a7e, #3d6350 50%, #1e3d32);
}
.cat-card[data-hue="sun"] .cat-card-media {
  background: linear-gradient(145deg, #f0c987, #c48a3a 50%, #7a4e18);
}
.cat-card[data-hue="ink"] .cat-card-media {
  background: linear-gradient(145deg, #6a6a6a, #2e2e2e 50%, #121212);
}

/* ── Product grid ── */
.product-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.product-media-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.product-media-link:hover {
  color: inherit;
}
.product-title-link {
  color: inherit;
  text-decoration: none;
}
.product-title-link:hover {
  color: var(--forest);
  text-decoration: underline;
}
.product-media {
  aspect-ratio: 1;
  /* Pure white Amazon studio well — never cream under product shots */
  background: #ffffff;
  display: grid;
  place-items: center;
  padding: 1.1rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.product-media img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
  /* subtle depth without muddy cream shadow */
  filter: drop-shadow(0 8px 20px rgba(15, 14, 12, 0.08));
  transition: transform 0.25s ease;
}
.product-card:hover .product-media img {
  transform: scale(1.03);
}
.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}
.product-body {
  padding: 1.05rem 1.15rem 0.25rem;
  flex: 1;
}
.product-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.product-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.product-body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0.9rem 0 0;
  padding: 0 1.15rem;
}
.product-price {
  font-weight: 750;
  font-size: 1.1rem;
}
.product-price span {
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--muted);
}
.product-rating {
  font-size: 0.88rem;
  color: var(--wood);
  font-weight: 650;
}
.product-actions {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 1.15rem 1.2rem;
  flex-wrap: wrap;
}
.product-actions .btn {
  flex: 1;
  min-width: 7rem;
  font-size: 0.88rem;
  padding: 0.6rem 0.75rem;
}

/* ── Heritage / prose ── */
.heritage-band {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .heritage-band {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.prose h2 {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 500;
  margin: 1.85rem 0 0.65rem;
  letter-spacing: -0.02em;
}
.prose p {
  color: var(--ink-soft);
  margin: 0 0 1rem;
  font-size: 1.02rem;
}
.prose strong {
  color: var(--ink);
}
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid rgba(122, 84, 52, 0.35);
}
.timeline li {
  padding: 0 0 1.65rem 1.35rem;
  position: relative;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -0.42rem;
  top: 0.35rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--wood);
  box-shadow: 0 0 0 4px var(--bg);
}
.section-alt .timeline li::before {
  box-shadow: 0 0 0 4px var(--white);
}
.timeline .year {
  font-weight: 800;
  color: var(--wood);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.timeline h3 {
  margin: 0.25rem 0 0.4rem;
  font-size: 1.15rem;
  font-weight: 700;
}
.timeline p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ── Guide list ── */
.guide-list {
  display: grid;
  gap: 0.75rem;
}
.guide-item {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.3rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}
.section-alt .guide-item {
  background: var(--bg);
}
.guide-item:hover {
  border-color: rgba(30, 61, 50, 0.35);
  box-shadow: var(--shadow-sm);
  color: inherit;
}
.guide-item h3 {
  margin: 0 0 0.3rem;
  font-size: 1.08rem;
  font-weight: 700;
}
.guide-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* ── Forms ── */
.care-form,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.65rem;
  box-shadow: var(--shadow-md);
  max-width: 520px;
}
.form-row {
  margin-bottom: 0.95rem;
}
.form-row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line-strong);
  border-radius: 0.45rem;
  font: inherit;
  background: #fff;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(30, 61, 50, 0.3);
  border-color: var(--forest);
}
.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.55rem 0 0;
}
.status {
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.25rem;
  margin-top: 0.75rem;
}
.status.ok {
  color: var(--forest);
}
.status.err {
  color: #a32020;
}

/* ── Page hero compact ── */
.page-hero {
  position: relative;
  padding: 3.25rem 0 2.25rem;
  background:
    linear-gradient(180deg, #1a1814 0%, #2a2520 100%);
  color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(122, 84, 52, 0.35), transparent 55%);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
}
.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  color: #fff;
}
.page-hero .hero-lede {
  color: rgba(255, 255, 255, 0.8);
}
.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Pullquote ── */
.pullquote {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  line-height: 1.3;
  color: var(--ink);
  border-left: 3px solid var(--wood);
  padding: 0.15rem 0 0.15rem 1.2rem;
  margin: 1.6rem 0;
  max-width: 34rem;
  font-weight: 500;
}

/* ── Chips ── */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.25rem;
}
.chip {
  display: inline-flex;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  font-weight: 650;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
}
.chip:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.chip-row.on-light .chip {
  border-color: var(--line-strong);
  background: var(--white);
  color: var(--ink-soft);
}
.chip-row.on-light .chip:hover {
  border-color: var(--forest);
  color: var(--forest);
}
.chip.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.chip-row.on-light .chip.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.chip-row.on-light .chip.is-active:hover {
  color: #fff;
}

/* ── Split feature band ── */
.feature-split {
  display: grid;
  gap: 0;
  min-height: 420px;
}
@media (min-width: 900px) {
  .feature-split {
    grid-template-columns: 1.05fr 0.95fr;
  }
}
.feature-split-media {
  min-height: 280px;
  background-size: cover;
  background-position: center;
}
.feature-split-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.75rem 2rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
}
@media (min-width: 900px) {
  .feature-split-body {
    padding: 3.5rem 3.25rem;
  }
}
.feature-split-body h2 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  font-weight: 500;
  color: #fff;
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
}
.feature-split-body p {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  max-width: 32rem;
}

/* ── Footer ── */
.site-footer {
  margin-top: 0;
  padding: 3.25rem 0 1.85rem;
  background: #0a0908;
  color: rgba(255, 252, 250, 0.72);
  font-size: 0.9rem;
}
.site-footer a {
  color: rgba(255, 252, 250, 0.88);
  text-decoration: none;
}
.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-bottom: 2rem;
}
.footer-grid h4 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-grid li {
  margin-bottom: 0.4rem;
}
.footer-brand {
  font-family: var(--display);
  font-size: 1.5rem;
  color: #fff;
  margin: 0 0 0.5rem;
  font-weight: 500;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: rgba(255, 252, 250, 0.48);
}
.fine-print {
  font-size: 0.82rem;
  color: var(--muted);
}

.reveal {
  opacity: 1;
}

/* ── Product PDP enrichment ── */
.product-hero {
  padding-bottom: 2.5rem;
}
.product-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .product-hero-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
  }
}
.product-hero-media-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.product-hero-media {
  aspect-ratio: 1;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  overflow: hidden;
}
.product-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-placeholder {
  color: var(--muted);
  font-weight: 600;
}
.pdp-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.pdp-thumb {
  width: 64px;
  height: 64px;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  background: #fff;
  cursor: pointer;
}
.pdp-thumb.is-active,
.pdp-thumb:hover {
  border-color: var(--forest);
}
.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin: 0 0 1.25rem;
  align-items: baseline;
}
.product-hero .fine-print {
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1rem;
}
.enrich-wrap {
  max-width: 820px;
}
.enrich-block {
  margin-bottom: 2.75rem;
}
.enrich-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow-sm);
}
.enrich-verdict {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.45;
  margin: 0 0 0.65rem;
  color: var(--ink);
}
.enrich-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 1.15rem;
}
.enrich-grid2 {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .enrich-grid2 {
    grid-template-columns: 1fr 1fr;
  }
}
.enrich-border {
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}
.enrich-card h3 {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.chip-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.chip-list li {
  font-size: 0.92rem;
  padding: 0.45rem 0.65rem;
  border-radius: 0.45rem;
  background: var(--bg);
  border: 1px solid var(--line);
}
.chip-list.love li {
  border-color: rgba(30, 61, 50, 0.2);
}
.chip-list.caveat li {
  border-color: rgba(122, 84, 52, 0.22);
}
.plain-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.plain-list li {
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.plain-list .plus {
  color: var(--forest);
  font-weight: 800;
  margin-right: 0.25rem;
}
.plain-list .minus {
  color: var(--wood);
  font-weight: 800;
  margin-right: 0.25rem;
}
.enrich-blog {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.enrich-section h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 0.55rem;
  letter-spacing: -0.02em;
}
.enrich-section p {
  margin: 0 0 0.75rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}
.enrich-cta {
  margin-top: 1.5rem;
}
.tips-list {
  margin: 0;
  padding: 0 0 0 1.15rem;
  color: var(--ink-soft);
}
.tips-list li {
  margin-bottom: 0.55rem;
  font-size: 1rem;
}
.faq-list {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:last-child {
  border-bottom: 0;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1rem 1.15rem;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
  color: var(--ink);
}
.faq-q:hover {
  background: var(--bg);
}
.faq-chevron {
  color: var(--muted);
  transition: transform 0.15s ease;
}
.faq-q[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}
.faq-a {
  padding: 0 1.15rem 1rem;
}
.faq-a p {
  margin: 0;
  color: var(--ink-soft);
}
.similar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.similar-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}
.similar-list a {
  font-weight: 650;
  text-decoration: none;
}
.similar-list a:hover {
  text-decoration: underline;
}
.faint {
  color: var(--muted);
}
