:root {
  color-scheme: light;
  --bg: #fff6e9;
  --bg-strong: #ffe8b7;
  --surface: rgba(255, 250, 241, 0.9);
  --surface-strong: #fffdf8;
  --surface-soft: rgba(255, 244, 220, 0.86);
  --text: #211a10;
  --muted: #6d5a43;
  --line: rgba(58, 36, 5, 0.12);
  --gold: #ffd11a;
  --gold-deep: #f4b400;
  --orange: #ff9d1f;
  --orange-deep: #f56a00;
  --coral: #ff6e42;
  --forest: #246a58;
  --shadow: 0 24px 60px rgba(126, 79, 20, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1440px;
  --display-font: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  --body-font: "Instrument Sans", "Avenir Next", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 209, 26, 0.24), transparent 26%),
    radial-gradient(circle at 88% 6%, rgba(255, 157, 31, 0.18), transparent 24%),
    linear-gradient(180deg, #fff8ee 0%, #fff1da 100%);
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--body-font);
  background: transparent;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 92px 92px;
  opacity: 0.2;
  mask-image: radial-gradient(circle at center, black, transparent 76%);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

code {
  padding: 0.14rem 0.46rem;
  border-radius: 999px;
  background: rgba(33, 26, 16, 0.08);
}

.site-shell {
  width: min(calc(100% - 28px), var(--max-width));
  margin: 18px auto 42px;
}

.topbar {
  margin-bottom: 14px;
}

.topbar__affiliate {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 40px;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #231500;
  font-weight: 900;
  font-size: 0.9rem;
  text-align: center;
  letter-spacing: 0;
  box-shadow: 0 14px 32px rgba(244, 180, 0, 0.2);
}

.navbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 28px;
  background: rgba(255, 251, 244, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  gap: 0.36rem;
  padding: 0.58rem 0.96rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #231500;
  font-family: var(--display-font);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1;
}

.brand__mark::before {
  content: "🔎";
  flex-shrink: 0;
  font-size: 0.92em;
}

.navbar__links,
.navbar__utilities,
.footer__links,
.social-strip,
.chip-row {
  display: flex;
  gap: 10px;
}

.social-strip,
.footer__links {
  flex-wrap: wrap;
  align-items: center;
}

.navbar__links {
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px;
  min-width: 0;
  padding-inline: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.navbar__links::-webkit-scrollbar {
  display: none;
}

.navbar__links a,
.navbar__utility,
.social-strip a,
.footer__links a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  min-height: 42px;
  padding: 0.58rem 0.88rem;
  border-radius: 999px;
  border: 1px solid rgba(33, 26, 16, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 249, 238, 0.78));
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 800;
  line-height: 1.08;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(126, 79, 20, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.navbar__links a:hover,
.navbar__utility:hover,
.social-strip a:hover,
.footer__links a:hover {
  transform: translateY(-1px);
  border-color: rgba(33, 26, 16, 0.18);
  box-shadow: 0 14px 28px rgba(126, 79, 20, 0.12);
  color: var(--text);
}

.navbar__utilities {
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.footer__links {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.navbar__utility {
  font-weight: 700;
}

.link-glyph {
  display: inline-grid;
  place-items: center;
  width: 1.32rem;
  height: 1.32rem;
  border-radius: 999px;
  background: rgba(255, 209, 26, 0.18);
  font-size: 0.86rem;
  line-height: 1;
  flex-shrink: 0;
}

.wishlist-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  min-height: 40px;
  padding: 0 0.82rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral), var(--orange-deep));
  color: #fff9f6;
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(245, 106, 0, 0.22);
  flex-shrink: 0;
  transition:
    transform 180ms cubic-bezier(0.21, 1, 0.34, 1),
    box-shadow 180ms ease,
    filter 180ms ease;
}

.wishlist-pill:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 18px 38px rgba(245, 106, 0, 0.28);
}

.wishlist-pill__heart {
  font-size: 1rem;
}

.wishlist-pill__count {
  display: grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

main {
  margin-top: 26px;
}

.hero,
.page-hero,
.report-layout,
.support-bar {
  display: grid;
  gap: 24px;
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at top right, rgba(255, 209, 26, 0.34), transparent 26%),
    radial-gradient(circle at left center, rgba(255, 110, 66, 0.18), transparent 24%),
    var(--surface);
  box-shadow: var(--shadow);
}

.hero {
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
  align-items: start;
}

.hero--home .hero__copy {
  max-width: 760px;
}

.hero--home {
  grid-template-columns: minmax(0, 1.36fr) minmax(308px, 0.66fr);
}

.hero--home .hero__panel {
  gap: 0;
  width: min(100%, 388px);
  justify-self: end;
  align-self: center;
}

.hero--home .hero-metrics {
  gap: 14px;
}

.hero--home .hero-card {
  min-height: 128px;
  padding: 20px 22px;
}

.hero--home .hero-card__label {
  font-size: 0.74rem;
  letter-spacing: 0.13em;
}

.hero--home .hero-card__value {
  font-size: clamp(2.1rem, 2.9vw, 2.8rem);
}

.hero--home .eyebrow {
  font-size: 0.76rem;
}

.eyebrow {
  margin: 0;
  color: var(--orange-deep);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.82rem;
  font-weight: 900;
}

.hero__copy h1,
.page-hero h1,
.report-copy h1,
.support-bar h2 {
  margin: 0.22rem 0 0.86rem;
  font-family: var(--display-font);
  font-size: clamp(2.4rem, 4vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero__accent {
  color: var(--orange-deep);
}

.hero__lede,
.page-hero__summary,
.report-copy p {
  margin: 0;
  max-width: 46rem;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.fact-strip span {
  padding: 0.62rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(33, 26, 16, 0.08);
  font-weight: 700;
}

.hero__actions,
.page-hero__actions,
.product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero__actions {
  align-items: center;
}

.social-strip {
  margin-top: 14px;
}

.social-strip a {
  padding: 0.58rem 0.88rem;
}

.hero__panel {
  display: grid;
  gap: 14px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.logo-panel,
.hero-card,
.stat-pill {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(33, 26, 16, 0.08);
}

.logo-panel {
  background: linear-gradient(140deg, rgba(255, 251, 242, 0.96), rgba(255, 232, 183, 0.86));
}

.logo-panel__word {
  display: block;
  font-family: var(--display-font);
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.98;
  color: #231500;
  max-width: 9ch;
  text-wrap: balance;
}

.logo-panel__sub {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  background: rgba(35, 21, 0, 0.08);
  color: #231500;
  letter-spacing: 0.01em;
  font-size: 0.8rem;
  font-weight: 900;
}

.logo-panel p {
  margin: 12px 0 0;
  max-width: 30ch;
  color: var(--muted);
  line-height: 1.62;
}

.logo-panel__points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.logo-panel__point {
  display: inline-flex;
  align-items: center;
  padding: 0.56rem 0.78rem;
  border-radius: 999px;
  background: rgba(35, 21, 0, 0.08);
  color: #3b2a11;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero-card--accent {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #231500;
}

.hero-card__label,
.stat-pill span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-card__value,
.stat-pill strong {
  display: block;
  margin-top: 8px;
  font-family: var(--display-font);
  font-size: clamp(1.7rem, 2.4vw, 2.8rem);
}

.hero-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 150px;
}

.section {
  margin-top: 28px;
}

.section--narrow {
  max-width: 920px;
}

.section__heading {
  margin-bottom: 18px;
}

.section__heading--split {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.section__heading h2 {
  margin: 0.32rem 0 0;
  font-family: var(--display-font);
  font-size: clamp(1.7rem, 2.6vw, 3rem);
}

.collection-grid,
.product-grid,
.report-list {
  display: grid;
  gap: 18px;
}

.collection-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.collection-card,
.product-card,
.report-card,
.empty-state {
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid rgba(33, 26, 16, 0.08);
  box-shadow: 0 18px 44px rgba(126, 79, 20, 0.1);
}

.collection-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card,
.report-card,
.logo-panel,
.hero-card,
.stat-pill {
  transition:
    transform 220ms cubic-bezier(0.21, 1, 0.34, 1),
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.collection-card:hover,
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(126, 79, 20, 0.16);
}

.collection-card__eyebrow {
  color: var(--orange-deep);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 900;
}

.collection-card h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 1.34rem;
}

.collection-card p,
.empty-state p,
.footer p,
.report-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.collection-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.collection-card__meta span {
  padding: 0.44rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 209, 26, 0.18);
  color: #5d4306;
  font-weight: 700;
}

.controls {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(180px, 1fr) minmax(180px, 1fr);
  gap: 14px;
  align-items: end;
  margin-top: 22px;
}

.control {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.control--compact {
  min-width: 220px;
}

.control input,
.control select,
.report-form input,
.report-form select,
.report-form textarea {
  width: 100%;
  padding: 0.92rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(33, 26, 16, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
}

.control input:focus,
.control select:focus,
.report-form input:focus,
.report-form select:focus,
.report-form textarea:focus {
  outline: 2px solid rgba(255, 157, 31, 0.26);
  border-color: rgba(245, 106, 0, 0.38);
}

.control--toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0.98rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(33, 26, 16, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.controls .control--toggle {
  display: none;
}

.helper-note {
  min-height: 1.4em;
  margin: 12px 0 0;
  color: var(--orange-deep);
}

.helper-note--neutral {
  color: var(--muted);
}

.section--search {
  margin-top: 24px;
}

.global-search__control {
  min-width: min(340px, 100%);
}

.search-empty {
  margin: 14px 0 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.68);
  border: 1px dashed rgba(33, 26, 16, 0.12);
  color: var(--muted);
  line-height: 1.6;
}

.product-card {
  overflow: hidden;
}

.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 209, 26, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 236, 197, 0.92));
}

.product-card__media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card__media-link:focus-visible {
  outline: 3px solid rgba(245, 106, 0, 0.34);
  outline-offset: -3px;
}

.product-card__media img,
.product-card__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms cubic-bezier(0.21, 1, 0.34, 1);
}

.product-card:hover .product-card__media img,
.product-card:hover .product-card__placeholder {
  transform: scale(1.03);
}

.product-card__placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, hsl(var(--accent-hue) 90% 90%), transparent 38%),
    linear-gradient(135deg, hsl(var(--accent-hue) 78% 90%), hsl(calc(var(--accent-hue) + 40) 86% 82%));
  color: hsl(var(--accent-hue) 60% 24%);
  font-family: var(--display-font);
  font-size: 2.2rem;
  font-weight: 900;
}

.product-card__placeholder span {
  display: inline-flex;
  padding: 0.6rem 0.82rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.28);
}

.heart-toggle {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.84);
  color: #c74444;
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(90, 50, 26, 0.14);
  cursor: pointer;
  transition:
    transform 180ms cubic-bezier(0.21, 1, 0.34, 1),
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.heart-toggle:hover {
  transform: scale(1.06);
  box-shadow: 0 16px 28px rgba(90, 50, 26, 0.18);
}

.heart-toggle--active {
  background: linear-gradient(135deg, #ff7a6d, #ff4f64);
  color: white;
  animation: heartPop 260ms cubic-bezier(0.21, 1, 0.34, 1);
}

.product-card__body {
  padding: 18px;
}

.product-card__topline {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  margin-bottom: 12px;
}

.badge,
.price-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge {
  background: rgba(255, 209, 26, 0.18);
  color: #5d4306;
}

.badge--soft {
  background: rgba(35, 21, 0, 0.06);
  color: var(--muted);
}

.price-pill {
  background: rgba(36, 106, 88, 0.12);
  color: var(--forest);
  text-transform: none;
  letter-spacing: 0.01em;
}

.price-pill--muted {
  background: rgba(35, 21, 0, 0.07);
  color: var(--muted);
}

.product-card h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 1.18rem;
  line-height: 1.22;
}

.product-card__meta {
  margin: 10px 0 0;
  min-height: 1.3em;
  color: var(--muted);
  font-size: 0.94rem;
}

.product-card__report {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 0.94rem;
  border-radius: 999px;
  border: 1px solid rgba(33, 26, 16, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 249, 238, 0.78));
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(126, 79, 20, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.product-card__report:hover {
  transform: translateY(-1px);
  border-color: rgba(33, 26, 16, 0.18);
  box-shadow: 0 14px 28px rgba(126, 79, 20, 0.12);
  color: var(--text);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0 1.12rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
  transition:
    transform 180ms cubic-bezier(0.21, 1, 0.34, 1),
    opacity 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.button--primary {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #231500;
  box-shadow: 0 14px 28px rgba(244, 180, 0, 0.16);
}

.button--primary:hover {
  transform: translateY(-1px) scale(1.025);
  box-shadow: 0 18px 34px rgba(244, 180, 0, 0.24);
}

.button--secondary {
  background: linear-gradient(180deg, rgba(241, 247, 243, 0.94), rgba(220, 236, 229, 0.88));
  color: var(--forest);
  border: 1px solid rgba(36, 106, 88, 0.12);
  box-shadow: 0 12px 24px rgba(36, 106, 88, 0.08);
}

.button--ghost {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 239, 228, 0.82));
  color: var(--muted);
  border: 1px solid rgba(33, 26, 16, 0.08);
  box-shadow: 0 10px 24px rgba(126, 79, 20, 0.06);
}

.button--discord {
  background: linear-gradient(135deg, #6f7dff, #5562f6);
  color: white;
  box-shadow: 0 14px 30px rgba(86, 98, 246, 0.2);
}

.button--discord:hover {
  transform: translateY(-1px) scale(1.025);
  box-shadow: 0 18px 34px rgba(86, 98, 246, 0.28);
}

.button--small {
  min-height: 42px;
  padding: 0 0.94rem;
  font-size: 0.94rem;
}

.page-hero,
.report-layout {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.page-hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.report-layout {
  align-items: start;
}

.report-header {
  padding: 34px 36px 30px;
}

.report-page-block {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.report-copy--stacked {
  max-width: 980px;
}

.report-form-section {
  margin-top: 24px;
}

.report-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid rgba(33, 26, 16, 0.08);
}

.report-form--stacked {
  width: 100%;
  max-width: none;
  margin: 0;
}

.report-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.field-hint,
.contact-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--forest);
}

.report-card,
.empty-state {
  padding: 20px 22px;
}

.report-card {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.empty-state {
  text-align: center;
}

.empty-state--subtle {
  text-align: left;
}

.report-meta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.report-socials,
.report-history {
  padding: 22px 24px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 247, 0.78);
  border: 1px solid rgba(33, 26, 16, 0.08);
  box-shadow: 0 18px 44px rgba(126, 79, 20, 0.08);
}

.report-socials .section__heading,
.report-history .section__heading {
  margin-bottom: 14px;
}

.report-socials .social-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 0;
}

.report-socials .social-strip a {
  width: 100%;
  min-height: 46px;
  justify-content: center;
  text-align: center;
}

.report-history .empty-state {
  padding: 10px 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.support-bar {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin-top: 30px;
}

.support-bar--compact h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 32px;
  padding: 0 4px;
}

.guide-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  padding: 24px 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 247, 0.78);
  border: 1px solid rgba(33, 26, 16, 0.08);
  box-shadow: 0 18px 44px rgba(126, 79, 20, 0.08);
}

.guide-teaser h2,
.guide-card h3,
.legal-card h3 {
  margin: 0.22rem 0 0.72rem;
  font-family: var(--display-font);
  font-size: clamp(1.46rem, 2.1vw, 2rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.guide-teaser p,
.guide-card p,
.guide-card li,
.faq-card p,
.legal-card p,
.legal-mini p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.guide-grid,
.faq-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.guide-card,
.legal-card,
.faq-card {
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid rgba(33, 26, 16, 0.08);
  box-shadow: 0 18px 44px rgba(126, 79, 20, 0.08);
}

.guide-card__step {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  background: rgba(255, 209, 26, 0.18);
  color: #5d4306;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.guide-card li + li {
  margin-top: 0.5rem;
}

.faq-card summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--display-font);
  font-size: 1.15rem;
  line-height: 1.16;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card[open] {
  box-shadow: 0 22px 48px rgba(126, 79, 20, 0.1);
}

.faq-card p {
  margin-top: 12px;
}

.legal-card--wide {
  grid-column: 1 / -1;
}

.legal-mini {
  margin-top: 22px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.64);
  border: 1px solid rgba(33, 26, 16, 0.08);
}

.legal-mini strong {
  display: block;
  margin-bottom: 6px;
  color: #5d4306;
  font-size: 0.74rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.legal-mini p {
  font-size: 0.78rem;
}

.legal-mini a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(109, 90, 67, 0.34);
}

.reveal {
  animation: rise 720ms cubic-bezier(0.21, 1, 0.34, 1) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heartPop {
  0% {
    transform: scale(0.92);
  }
  60% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

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

  .navbar__links {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
  }

  .navbar__utilities {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero,
  .page-hero,
  .report-layout,
  .support-bar,
  .guide-teaser {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero__stats {
    justify-content: flex-start;
  }

  .guide-grid,
  .faq-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(calc(100% - 18px), var(--max-width));
    margin: 12px auto 28px;
  }

  .topbar__affiliate {
    min-height: 38px;
    padding: 0.54rem 0.78rem;
    text-align: center;
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .navbar {
    gap: 12px;
    padding: 14px;
    border-radius: 24px;
  }

  .brand {
    justify-content: center;
  }

  .brand__mark {
    width: 100%;
    justify-content: center;
    padding: 0.68rem 0.92rem;
    font-size: 0.85rem;
    text-align: center;
  }

  .navbar__links {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    margin: 0 -2px;
    padding: 2px 2px 6px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .navbar__links a {
    min-height: 38px;
    padding: 0.56rem 0.8rem;
    font-size: 0.88rem;
    scroll-snap-align: start;
  }

  .navbar__utilities {
    justify-content: center;
    gap: 10px;
  }

  .navbar__utility,
  .wishlist-pill {
    min-height: 38px;
  }

  .wishlist-pill {
    padding: 0 0.78rem;
  }

  .hero,
  .page-hero,
  .report-layout,
  .support-bar,
  .guide-teaser {
    gap: 18px;
    padding: 22px;
  }

  .report-header {
    padding: 24px 22px 20px;
  }

  .report-meta-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero__copy h1,
  .page-hero h1,
  .report-copy h1,
  .support-bar h2 {
    font-size: clamp(2.05rem, 10.6vw, 3.1rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .hero__lede,
  .page-hero__summary,
  .report-copy p,
  .contact-copy {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.13em;
  }

  .controls,
  .section__heading--split {
    grid-template-columns: 1fr;
    display: grid;
    gap: 14px;
    align-items: start;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .guide-teaser {
    align-items: start;
  }

  .search-empty,
  .legal-mini {
    padding: 12px 14px;
  }

  .legal-mini strong {
    font-size: 0.7rem;
  }

  .legal-mini p {
    font-size: 0.74rem;
    line-height: 1.58;
  }

  .logo-panel,
  .hero-card,
  .stat-pill,
  .collection-card,
  .product-card,
  .report-form,
  .report-socials,
  .report-history {
    border-radius: 20px;
  }

  .logo-panel,
  .hero-card,
  .stat-pill {
    padding: 18px;
  }

  .logo-panel__word {
    font-size: clamp(1.7rem, 8.2vw, 2.45rem);
    letter-spacing: -0.04em;
    line-height: 0.96;
    max-width: 10ch;
  }

  .logo-panel__sub {
    margin-bottom: 10px;
    padding: 0.4rem 0.68rem;
    font-size: 0.7rem;
  }

  .logo-panel p {
    margin-top: 10px;
    line-height: 1.54;
  }

  .logo-panel__points {
    gap: 7px;
    margin-top: 12px;
  }

  .logo-panel__point {
    padding: 0.5rem 0.7rem;
    font-size: 0.72rem;
  }

  .hero-card {
    min-height: 126px;
  }

  .hero-card__label,
  .stat-pill span {
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  .hero-card__value,
  .stat-pill strong {
    font-size: clamp(1.45rem, 6vw, 2.1rem);
  }

  .section {
    margin-top: 22px;
  }

  .section__heading {
    margin-bottom: 14px;
  }

  .section__heading h2 {
    font-size: clamp(1.45rem, 7vw, 2.35rem);
  }

  .collection-grid,
  .product-grid,
  .report-list {
    gap: 14px;
  }

  .collection-card {
    min-height: 0;
    padding: 20px;
  }

  .collection-card h3 {
    font-size: 1.2rem;
  }

  .collection-card p,
  .empty-state p,
  .footer p,
  .report-card p {
    line-height: 1.55;
  }

  .controls {
    margin-top: 18px;
  }

  .control--compact {
    min-width: 0;
  }

  .control input,
  .control select,
  .report-form input,
  .report-form select,
  .report-form textarea {
    padding: 0.9rem 0.94rem;
    font-size: 16px;
  }

  .control--toggle {
    padding: 0.88rem 0.94rem;
  }

  .product-card__body {
    padding: 16px;
  }

  .product-card__topline {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
  }

  .chip-row {
    flex-wrap: wrap;
    gap: 7px;
  }

  .price-pill {
    align-self: flex-start;
  }

  .product-card h3 {
    font-size: 1.08rem;
  }

  .product-card__meta {
    font-size: 0.88rem;
  }

  .product-card__actions {
    gap: 10px;
    margin-top: 18px;
  }

  .product-card__actions .button,
  .product-card__report,
  .support-bar .button,
  .guide-teaser .button {
    width: 100%;
    justify-content: center;
  }

  .product-card__report {
    min-height: 42px;
    padding: 0 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(33, 26, 16, 0.08);
    background: rgba(255, 255, 255, 0.68);
    text-decoration: none;
  }

  .button {
    min-height: 46px;
  }

  .button--small {
    min-height: 40px;
  }

  .page-hero__actions,
  .hero__actions,
  .support-bar {
    gap: 12px;
  }

  .page-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .page-hero__actions .button {
    width: 100%;
    justify-content: center;
  }

  .report-form {
    gap: 12px;
    padding: 18px;
  }

  .field-hint {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .report-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 18px;
    gap: 8px;
  }

  .report-socials,
  .report-history {
    padding: 18px;
  }

  .support-bar {
    margin-top: 24px;
  }

  .footer {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    text-align: center;
  }

  .hero__actions .button,
  .social-strip a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(calc(100% - 14px), var(--max-width));
  }

  .topbar {
    margin-bottom: 10px;
  }

  .topbar__affiliate {
    min-height: 36px;
    padding: 0.48rem 0.72rem;
    font-size: 0.78rem;
  }

  .navbar {
    padding: 12px;
    gap: 10px;
  }

  .brand__mark {
    padding: 0.62rem 0.76rem;
    font-size: 0.79rem;
  }

  .navbar__links a,
  .navbar__utility {
    font-size: 0.84rem;
  }

  .hero,
  .page-hero,
  .report-layout,
  .support-bar,
  .report-header {
    padding: 18px;
  }

  .hero__copy h1,
  .page-hero h1,
  .report-copy h1,
  .support-bar h2 {
    font-size: clamp(1.85rem, 11vw, 2.5rem);
  }

  .hero__lede,
  .page-hero__summary,
  .report-copy p,
  .contact-copy {
    font-size: 0.94rem;
  }

  .hero-metrics,
  .page-hero__stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .logo-panel,
  .hero-card,
  .stat-pill,
  .collection-card,
  .product-card,
  .report-form,
  .report-socials,
  .report-history,
  .empty-state {
    border-radius: 18px;
  }

  .collection-card,
  .report-form,
  .report-socials,
  .report-history {
    padding: 16px;
  }

  .hero-card {
    min-height: 112px;
  }

  .badge,
  .price-pill {
    font-size: 0.7rem;
    padding: 0.36rem 0.62rem;
  }

  .heart-toggle {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
  }

  .product-card__body {
    padding: 14px;
  }

  .product-card h3 {
    font-size: 1rem;
  }

  .product-card__meta,
  .product-card__report,
  .collection-card__meta span {
    font-size: 0.84rem;
  }

  .social-strip {
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
