/* ========================================================================
   Oso3DPrints — production stylesheet
   Ported from previews/04-hybrid.html (Chris's locked design pick).
   Page paths: assets/... (relative to project root, not /previews/...)
   ----------------------------------------------------------------------- */

/* ---------- Tokens ---------- */
:root {
  --cream:   #fbf6ec;
  --cream-2: #f4ecd9;
  --cream-3: #fdf9ee;
  --navy:    #0b1e3c;
  --navy-2:  #17335e;
  --gold:    #f2b441;
  --gold-2:  #d99518;
  --ink:     #0b1e3c;        /* navy stand-in for pure black; warmer */
  --muted:   #5a6a82;
  --line:    rgba(11,30,60,.14);
  --max:     1200px;
  /* Rainbow gradient — Pride identity, used sparingly */
  --c1: #e63946;
  --c2: #f4a02b;
  --c3: #f7d046;
  --c4: #2a9d4a;
  --c5: #2e6edc;
  --c6: #8b4ec7;
  --rainbow: linear-gradient(90deg, var(--c1), var(--c2), var(--c3), var(--c4), var(--c5), var(--c6));
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
h1, h2, h3 { margin: 0; color: var(--navy); }
img { max-width: 100%; height: auto; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Typography helpers ---------- */
.serif { font-family: 'Fraunces', Georgia, serif; }
.heavy {
  font-family: 'Archivo Black', Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
}

/* ---------- Top rainbow ribbon ---------- */
.ribbon {
  height: 8px;
  background: var(--rainbow);
}

/* ---------- Sticky nav ---------- */
.nav {
  background: rgba(251, 246, 236, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--navy);
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.brand .wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--navy);
  line-height: 1;
}
.brand .sub {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  padding: 10px 16px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
}
.nav-links a:hover {
  background: var(--cream-2);
  text-decoration: none;
}
.nav-links a.active {
  background: var(--cream-2);
}
.nav-links a.cta {
  background: var(--navy);
  color: var(--cream);
  border: 2px solid var(--navy);
}
.nav-links a.cta:hover {
  background: var(--cream);
  color: var(--navy);
}

/* ---------- Discord nav link ---------- */
.nav-links a.discord-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-links a.discord-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}
.nav-links a.discord-link:hover {
  background: #5865F2;
  color: #fff;
  text-decoration: none;
}
.nav-links a.discord-link:hover svg {
  fill: #fff;
}

/* ---------- TikTok nav link with live indicator ----------
   Default: shows .tiktok-default ("TikTok ↗") in normal nav style.
   When parent has .is-live: shows .tiktok-live ("LIVE NOW") with red pulse.
   JS in assets/live-status.js toggles .is-live based on Apps Script. */
.nav-links a.tiktok-link {
  display: inline-flex;
  align-items: center;
}
.nav-links a.tiktok-link .tiktok-live { display: none; }
.nav-links a.tiktok-link .tiktok-default { display: inline; }
.nav-links a.tiktok-link.is-live {
  background: #e63946;
  color: #fff;
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  animation: live-pulse 1.4s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.55);
}
.nav-links a.tiktok-link.is-live .tiktok-default { display: none; }
.nav-links a.tiktok-link.is-live .tiktok-live { display: inline-flex; align-items: center; gap: 6px; }
.nav-links a.tiktok-link.is-live:hover {
  background: #c8102e;
  color: #fff;
  text-decoration: none;
}
.nav-links a.tiktok-link.is-live .live-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  animation: live-dot-blink 0.8s ease-in-out infinite alternate;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(230, 57, 70, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}
@keyframes live-dot-blink {
  from { opacity: 1; }
  to   { opacity: 0.35; }
}
@media (prefers-reduced-motion: reduce) {
  .nav-links a.tiktok-link.is-live { animation: none; }
  .nav-links a.tiktok-link.is-live .live-dot { animation: none; }
}

/* ---------- Marquee (site-wide, under nav on every page) ---------- */
.marquee {
  border-top: 3px solid var(--navy);
  border-bottom: 3px solid var(--navy);
  padding: 18px 0;
  background: var(--cream-2);
  overflow: hidden;
  white-space: nowrap;
  font-family: 'Archivo Black', sans-serif;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
}
.marquee-track {
  display: inline-flex;
  gap: 32px;
  align-items: center;
  animation: marquee-scroll 40s linear infinite;
  padding-left: 32px;
}
.marquee-track > span {
  display: inline-flex;
  gap: 32px;
  align-items: center;
}
.marquee .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--navy);
  display: inline-block;
}
.marquee .rainbow-dot {
  background: var(--rainbow);
  width: 12px;
  height: 12px;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Hero (Home only) ---------- */
.hero {
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 40px;
  right: -140px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(242, 180, 65, 0.14), transparent 70%);
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-logo {
  max-width: 460px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 50px rgba(11, 30, 60, 0.22));
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 22px;
}
.kicker::before {
  content: "";
  width: 36px;
  height: 3px;
  background: var(--rainbow);
  border-radius: 2px;
}
h1.hero-display {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 5.6vw, 72px);
  font-weight: 900;
  line-height: 1.02;
  margin-bottom: 22px;
  letter-spacing: -0.015em;
}
h1.hero-display em {
  font-style: italic;
  background: var(--rainbow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  font-size: 19px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 32px 0;
  line-height: 1.55;
}
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Page header (used on About / Custom Orders / Reviews / Contact / Privacy / Terms) ---------- */
.page-header {
  padding: 56px 0 40px;
  border-bottom: 3px solid var(--navy);
  position: relative;
}
.page-header .kicker {
  margin-bottom: 14px;
}
.page-header h1 {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  color: var(--navy);
}
.page-header .lede {
  margin: 0;
  max-width: 680px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.12s, box-shadow 0.12s;
  border: 2px solid var(--navy);
  cursor: pointer;
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--navy);
  text-decoration: none;
}
.btn-primary {
  background: var(--navy);
  color: var(--cream);
}
.btn-primary:hover {
  box-shadow: 4px 4px 0 var(--gold);
  color: var(--cream);
}
.btn-secondary {
  background: var(--cream);
  color: var(--navy);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--navy);
}

/* ---------- Section base ---------- */
section {
  padding: 104px 0;
  border-bottom: 3px solid var(--navy);
}
.section-head {
  margin-bottom: 56px;
  max-width: 780px;
}
.section-head .num {
  display: inline-block;
  padding: 7px 16px;
  background: var(--navy);
  color: var(--cream);
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.section-head h2 {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}
.section-head p {
  color: var(--muted);
  font-size: 19px;
  max-width: 620px;
  line-height: 1.55;
}

/* ---------- Feature tiles (Home, routing-page pattern) ---------- */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tile {
  display: block;
  padding: 32px;
  border: 3px solid var(--navy);
  background: var(--cream-3);
  position: relative;
  transition: transform 0.15s, box-shadow 0.15s;
  color: var(--navy);
}
.tile:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--navy);
  text-decoration: none;
}
.tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--rainbow);
}
.tile h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 21px;
  margin: 14px 0 10px;
  text-transform: uppercase;
  color: var(--navy);
}
.tile p {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 16px;
  line-height: 1.5;
}
.tile .arrow {
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-2);
}

/* ---------- Sellers grid (Home component) ---------- */
.sellers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 3px solid var(--navy);
  background: var(--cream-3);
}
.seller-card {
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 20px;
  border-right: 3px solid var(--navy);
  border-bottom: 3px solid var(--navy);
  transition: background 0.15s;
}
.seller-card:hover {
  background: var(--cream-2);
}
.seller-card:nth-child(4n) {
  border-right: none;
}
.seller-card:nth-last-child(-n+4) {
  border-bottom: none;
}
.seller-card .badge {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--cream-2);
  border: 3px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 16px;
}
.seller-card strong {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--navy);
}
.seller-card span {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---------- Creators grid (Home component) ---------- */
.creators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.creator-card {
  border: 3px solid var(--navy);
  padding: 32px;
  background: var(--cream-3);
  position: relative;
  transition: transform 0.15s, box-shadow 0.15s;
}
.creator-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--navy);
}
.creator-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--rainbow);
}
.creator-card h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 21px;
  margin: 14px 0 10px;
  text-transform: uppercase;
  color: var(--navy);
}
.creator-card p {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 16px;
  line-height: 1.5;
}
.creator-card .platform {
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  background: var(--cream-2);
  border: 2px solid var(--navy);
  display: inline-block;
  color: var(--navy);
}

/* ---------- Creator badge grid (Home: authorized seller badges) ---------- */
.badge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.badge-card {
  border: 3px solid var(--navy);
  background: var(--cream-3);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  overflow: hidden;
}
.badge-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--navy);
  text-decoration: none;
}
.badge-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 980px) {
  .badge-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .badge-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

/* ---------- Custom Orders CTA (recurring component:
   appears on Home, About, Reviews, Contact bottom) ---------- */
.custom-cta {
  padding: 120px 0;
  background: var(--navy);
  color: var(--cream);
  border-bottom: none;
  border-top: 3px solid var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.custom-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--rainbow);
}
.custom-cta h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 8vw, 120px);
  color: var(--cream);
  margin-bottom: 24px;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.015em;
}
.custom-cta h2 em {
  font-style: normal;
  background: var(--rainbow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.custom-cta p {
  max-width: 640px;
  margin: 0 auto 44px;
  color: rgba(251, 246, 236, 0.78);
  font-size: 20px;
  line-height: 1.5;
}
.custom-cta .btn {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-size: 17px;
  padding: 20px 38px;
}
.custom-cta .btn:hover {
  background: var(--cream);
  border-color: var(--cream);
  box-shadow: 4px 4px 0 var(--cream-2);
  color: var(--navy);
}

/* ---------- About page (long-form story) ---------- */
.about-content {
  max-width: 760px;
  margin: 0 auto;
}
.about-content h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 3.6vw, 40px);
  text-transform: uppercase;
  line-height: 0.98;
  margin: 56px 0 20px;
  color: var(--navy);
}
.about-content h2:first-child {
  margin-top: 0;
}
.about-content p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 18px;
}
.about-content p strong {
  color: var(--navy);
}
.about-content .pull {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  font-style: italic;
  color: var(--navy-2);
  border-left: 4px solid var(--gold);
  padding-left: 22px;
  margin: 28px 0;
}
.about-content hr {
  border: none;
  border-top: 3px solid var(--navy);
  margin: 48px 0;
}

/* ---------- Custom Orders page ---------- */
.custom-form-block {
  border: 3px solid var(--navy);
  background: var(--cream-3);
  padding: 32px;
  margin-top: 32px;
}
.custom-form-block iframe {
  width: 100%;
  border: 0;
  min-height: 1200px;
  background: var(--cream);
}
.custom-form-block .form-fallback {
  font-size: 15px;
  color: var(--muted);
  margin-top: 14px;
}

/* ---------- Reviews page (what-people-are-saying) ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  border: 3px solid var(--navy);
  padding: 28px;
  background: var(--cream-3);
  position: relative;
}
.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--rainbow);
}
.review-stars {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}
.review-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 16px;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.review-author {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
}
.review-date {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.review-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 3px solid var(--navy);
  margin-bottom: 16px;
  background: var(--cream-2);
}
.reviews-empty {
  border: 3px dashed var(--navy);
  padding: 48px;
  text-align: center;
  color: var(--muted);
  background: var(--cream-3);
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.contact-card {
  border: 3px solid var(--navy);
  padding: 36px;
  background: var(--cream-3);
}
.contact-card h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.contact-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.contact-card .big-link {
  display: inline-block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  border-bottom: 4px solid var(--gold);
  padding-bottom: 4px;
}

/* ---------- Privacy / Terms pages (long-form legal) ---------- */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}
.legal-content h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  margin: 36px 0 14px;
  color: var(--navy);
}
.legal-content h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 24px 0 10px;
  color: var(--navy-2);
}
.legal-content p,
.legal-content li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 14px;
}
.legal-content ul {
  padding-left: 22px;
}
.legal-content .data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border: 3px solid var(--navy);
  background: var(--cream-3);
}
.legal-content .data-table th {
  text-align: left;
  padding: 14px 18px;
  background: var(--navy);
  color: var(--cream);
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.legal-content .data-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.legal-content .data-table tr:last-child td {
  border-bottom: none;
}
.legal-content .data-table th:first-child,
.legal-content .data-table td:first-child {
  border-right: 3px solid var(--navy);
}

/* ---------- Footer ---------- */
footer {
  background: var(--navy);
  color: var(--cream);
  padding: 64px 0 40px;
  border-top: none;
}
footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
footer h4 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: var(--cream);
}
footer a {
  color: rgba(251, 246, 236, 0.72);
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}
footer a:hover {
  color: var(--gold);
  text-decoration: none;
}
footer .brand .wordmark {
  color: var(--cream);
}
footer .brand .sub {
  color: rgba(251, 246, 236, 0.5);
}
footer .rainbow-bar {
  display: flex;
  height: 6px;
  margin-bottom: 40px;
}
footer .rainbow-bar div {
  flex: 1;
}
footer .rainbow-bar div:nth-child(1) { background: var(--c1); }
footer .rainbow-bar div:nth-child(2) { background: var(--c2); }
footer .rainbow-bar div:nth-child(3) { background: var(--c3); }
footer .rainbow-bar div:nth-child(4) { background: var(--c4); }
footer .rainbow-bar div:nth-child(5) { background: var(--c5); }
footer .rainbow-bar div:nth-child(6) { background: var(--c6); }
footer .bottom {
  border-top: 1px solid rgba(251, 246, 236, 0.14);
  padding-top: 28px;
  text-align: center;
  font-size: 12px;
  color: rgba(251, 246, 236, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 0;
  }
  .nav-links.open a {
    text-align: center;
    border-bottom: 1px solid var(--line);
  }
  footer .footer-grid {
    grid-template-columns: 1fr;
  }
  .sellers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sellers-grid .seller-card:nth-child(4n) {
    border-right: 3px solid var(--navy);
  }
  .sellers-grid .seller-card:nth-child(2n) {
    border-right: none;
  }
  .sellers-grid .seller-card:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .creators-grid,
  .tile-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  section {
    padding: 72px 0;
  }
  .custom-cta {
    padding: 80px 0;
  }
}

/* ---------- Print ---------- */
@media print {
  .nav,
  .marquee,
  footer,
  .ribbon,
  .custom-cta {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
  a {
    color: black;
    text-decoration: underline;
  }
}
