/* === NicheBridge — editorial agency === */

:root {
  --navy: #0B2A5B;
  --navy-deep: #061A3A;
  --orange: #FF6A2A;
  --orange-deep: #E8580C;
  --cream: #F4EFE6;
  --cream-warm: #EFE7D6;
  --ink: #0A1628;
  --muted: #5A6478;
  --line: rgba(11, 42, 91, 0.14);
  --line-strong: rgba(11, 42, 91, 0.32);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter Tight", -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Typography */
.serif { font-family: "Instrument Serif", "Fraunces", Georgia, serif; font-weight: 400; letter-spacing: -0.01em; }
.fraunces { font-family: "Fraunces", Georgia, serif; }
.mono { font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; }

h1, h2, h3, h4 { font-weight: 400; line-height: 1; }

.eyebrow {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: 2px;
}

/* Layout */
.wrap { max-width: 1440px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 800px) { .wrap { padding: 0 24px; } }

section { position: relative; }

/* === NAV === */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: "Instrument Serif", serif;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-decoration: none;
}
.logo-mark {
  width: 28px; height: 28px;
  background: var(--orange);
  border-radius: 50%;
  position: relative;
}
.logo-mark::after {
  content: "";
  position: absolute; inset: 6px;
  background: var(--navy);
  border-radius: 50%;
  transform: translateX(50%);
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a:not(.btn) {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a:not(.btn):hover { color: var(--orange); }
.nav-links a.btn-dark { color: var(--cream); }
.nav-links a.btn-dark:hover { color: var(--cream); }
@media (max-width: 800px) { .nav-links a:not(.btn) { display: none; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: white !important; }
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-1px); }
.btn-dark { background: var(--navy); color: var(--cream) !important; }
.btn-dark:hover { background: var(--navy-deep); color: var(--cream) !important; }
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid var(--line-strong); }
.btn-ghost:hover { background: var(--navy); color: var(--cream) !important; border-color: var(--navy); }
.btn-arrow { width: 14px; height: 14px; }

/* === HERO === */
.hero { padding: 56px 0 80px; position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
}
.hero-headline {
  font-family: "Instrument Serif", serif;
  font-size: clamp(3.2rem, 8.5vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--navy);
}
.hero-headline em {
  font-style: italic;
  color: var(--orange);
  font-family: "Instrument Serif", serif;
}
.hero-headline .underline {
  position: relative;
  display: inline-block;
}
.hero-headline .underline::after {
  content: ""; position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
}
.hero-side {
  display: flex; flex-direction: column; gap: 24px;
}
.hero-lede {
  font-size: 1.15rem;
  color: var(--ink);
  max-width: 36ch;
  line-height: 1.45;
}
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image-strip {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr 0.9fr;
  gap: 16px;
  height: 420px;
}
.hero-image-strip .img-tile { border-radius: 4px; }
.hero-image-strip .img-tile:nth-child(1) { transform: translateY(-24px); }
.hero-image-strip .img-tile:nth-child(2) { transform: translateY(36px); }
.hero-image-strip .img-tile:nth-child(3) { transform: translateY(-12px); }
.hero-image-strip .img-tile:nth-child(4) { transform: translateY(48px); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-strip { grid-template-columns: 1fr 1fr; height: 280px; }
  .hero-image-strip .img-tile:nth-child(3),
  .hero-image-strip .img-tile:nth-child(4) { display: none; }
}

/* Image tile */
.img-tile {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  overflow: hidden;
}
.img-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.img-tile.skeleton::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 8px, transparent 8px 16px),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.img-caption {
  position: absolute;
  bottom: 12px; left: 12px;
  background: var(--cream);
  color: var(--navy);
  padding: 4px 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === MARQUEE === */
.marquee {
  background: var(--navy);
  color: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  font-family: "Instrument Serif", serif;
  font-size: 2.4rem;
  font-style: italic;
  align-items: center;
}
.marquee-track .dot {
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  flex: 0 0 auto;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === STATS BAND === */
.stats {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 24px 32px 24px 0;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: "Instrument Serif", serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.stat-num em { color: var(--orange); font-style: italic; }
.stat-label {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 22ch;
}
@media (max-width: 800px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); padding-bottom: 32px; margin-bottom: 32px; }
}

/* === HOW IT WORKS === */
.how { padding: 120px 0; background: var(--cream-warm); }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  margin-bottom: 80px;
  align-items: end;
}
.section-title {
  font-family: "Instrument Serif", serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.section-title em { color: var(--orange); font-style: italic; }
.section-desc {
  font-size: 1.05rem;
  color: var(--ink);
  max-width: 50ch;
  line-height: 1.5;
}
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 28px; left: 28px; right: 28px;
  height: 1px;
  background: var(--line-strong);
  z-index: 0;
}
.step { position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: "Instrument Serif", serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 24px;
}
.step:hover .step-num { background: var(--orange); color: white; border-color: var(--orange); }
.step h3 {
  font-family: "Instrument Serif", serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.1;
}
.step p { color: var(--muted); font-size: 0.95rem; line-height: 1.5; }
@media (max-width: 800px) {
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before { display: none; }
}

/* === PRICING === */
.pricing { padding: 120px 0; background: var(--navy); color: var(--cream); }
.pricing .section-title { color: var(--cream); }
.pricing .section-title em { color: var(--orange); }
.pricing .section-desc { color: rgba(244, 239, 230, 0.78); }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(244, 239, 230, 0.16);
  border: 1px solid rgba(244, 239, 230, 0.16);
}
.tier {
  background: var(--navy);
  padding: 40px 32px 32px;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: background 0.18s ease;
  position: relative;
  min-height: 520px;
}
.tier:hover { background: var(--navy-deep); }
.tier.active {
  background: var(--orange);
  color: white;
}
.tier.active .tier-price,
.tier.active .tier-name,
.tier.active .tier-feature,
.tier.active .tier-feature-label,
.tier.active .tier-tagline { color: white; }
.tier-tag {
  position: absolute;
  top: 24px; right: 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}
.tier-name {
  font-family: "Instrument Serif", serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 4px;
}
.tier-tagline {
  font-size: 0.85rem;
  color: rgba(244, 239, 230, 0.6);
  margin-bottom: 32px;
}
.tier-price {
  font-family: "Instrument Serif", serif;
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.tier-price .small { font-size: 0.45em; opacity: 0.6; }
.tier-divider {
  height: 1px;
  background: rgba(244, 239, 230, 0.2);
  margin: 24px 0;
}
.tier.active .tier-divider { background: rgba(255,255,255,0.3); }
.tier-features {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
  flex: 1;
}
.tier-feature {
  font-size: 0.92rem;
  color: rgba(244, 239, 230, 0.85);
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.tier-feature-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.55;
  min-width: 80px;
  flex-shrink: 0;
  padding-top: 2px;
}
.tier-cta {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid rgba(244, 239, 230, 0.2);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 4px;
}
.tier:hover .tier-cta { border-color: var(--orange); color: var(--orange); }
.tier.active .tier-cta { border-color: white; color: white; }

@media (max-width: 1000px) {
  .tier-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .tier-grid { grid-template-columns: 1fr; }
}

/* === CREATORS GRID === */
.creators { padding: 120px 0; }
.niche-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.niche-pill {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.18s ease;
}
.niche-pill:hover { border-color: var(--navy); }
.niche-pill.active {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.creator-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.creator-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--navy);
  cursor: pointer;
}
.creator-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.creator-card:hover img { transform: scale(1.04); }
.creator-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 26, 58, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: white;
}
.creator-handle {
  font-family: "Instrument Serif", serif;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}
.creator-meta {
  display: flex; justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.85;
}
.creator-niche-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--orange);
  color: white;
  padding: 4px 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 1000px) { .creator-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .creator-grid { grid-template-columns: 1fr; } }

/* === CASE STUDIES === */
.cases { padding: 120px 0; background: var(--cream-warm); }
.case-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line-strong);
}
.case-row {
  display: grid;
  grid-template-columns: 80px 1.2fr 1fr 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-strong);
  cursor: pointer;
  transition: padding 0.18s ease;
  position: relative;
}
.case-row:hover {
  padding-left: 16px;
}
.case-row:hover .case-arrow { transform: translateX(8px); color: var(--orange); }
.case-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.case-title {
  font-family: "Instrument Serif", serif;
  font-size: 1.6rem;
  color: var(--navy);
  line-height: 1.1;
}
.case-meta {
  font-size: 0.88rem;
  color: var(--muted);
}
.case-stat {
  font-family: "Instrument Serif", serif;
  font-size: 1.4rem;
  color: var(--orange);
  font-style: italic;
}
.case-arrow {
  font-size: 1.4rem;
  color: var(--navy);
  transition: all 0.2s ease;
}
@media (max-width: 800px) {
  .case-row { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .case-row .case-arrow { display: none; }
}

/* === LOGOS === */
.logos { padding: 64px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logos-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
}
.logo-cell {
  display: flex; align-items: center; justify-content: center;
  height: 48px;
  font-family: "Instrument Serif", serif;
  font-size: 1.4rem;
  color: var(--navy);
  opacity: 0.55;
  letter-spacing: -0.01em;
  border-right: 1px solid var(--line);
}
.logo-cell:last-child { border-right: none; }
.logo-cell:hover { opacity: 1; color: var(--orange); }
@media (max-width: 800px) {
  .logos-row { grid-template-columns: repeat(3, 1fr); }
  .logo-cell:nth-child(3) { border-right: none; }
}

/* === TESTIMONIALS === */
.testimonials { padding: 120px 0; }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.testimonial-feature {
  background: var(--navy);
  color: var(--cream);
  padding: 56px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
}
.testimonial-feature .quote-mark {
  font-family: "Instrument Serif", serif;
  font-size: 8rem;
  color: var(--orange);
  line-height: 0.6;
  margin-bottom: 24px;
}
.testimonial-quote {
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.testimonial-quote em { color: var(--orange); font-style: italic; }
.testimonial-attribution {
  display: flex; align-items: center; gap: 16px;
  margin-top: 32px;
}
.attribution-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  overflow: hidden;
}
.attribution-avatar img { width: 100%; height: 100%; object-fit: cover; }
.attribution-name {
  font-family: "Instrument Serif", serif;
  font-size: 1.2rem;
}
.attribution-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
}

.testimonial-side {
  display: flex; flex-direction: column; gap: 16px;
}
.testimonial-mini {
  background: var(--cream-warm);
  padding: 28px;
  flex: 1;
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.testimonial-mini-quote {
  font-family: "Instrument Serif", serif;
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--navy);
}
.testimonial-mini-attr {
  margin-top: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-feature { padding: 32px; min-height: auto; }
}

/* === FAQ === */
.faq { padding: 120px 0; background: var(--cream-warm); }
.faq-list {
  border-top: 1px solid var(--line-strong);
}
.faq-item {
  border-bottom: 1px solid var(--line-strong);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  color: var(--navy);
  text-align: left;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.faq-q:hover { color: var(--orange); }
.faq-toggle {
  flex-shrink: 0;
  margin-left: 24px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--navy);
  transition: all 0.2s ease;
}
.faq-item.open .faq-toggle {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 70ch;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 0 32px 0;
}

/* === FINAL CTA === */
.final-cta { padding: 140px 0; background: var(--orange); color: white; position: relative; overflow: hidden; }
.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}
.final-cta h2 {
  font-family: "Instrument Serif", serif;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.95;
  color: white;
  letter-spacing: -0.02em;
}
.final-cta h2 em {
  font-style: italic;
  color: var(--navy);
}
.cta-form {
  display: flex; flex-direction: column;
  gap: 14px;
  background: white;
  padding: 32px;
  color: var(--ink);
}
.cta-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cta-form label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  display: block;
}
.cta-form input,
.cta-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  background: white;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: 0;
}
.cta-form input:focus,
.cta-form select:focus {
  outline: none;
  border-color: var(--orange);
}
.cta-form .btn { justify-content: center; padding: 16px 22px; }

@media (max-width: 800px) {
  .final-cta-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-form-row { grid-template-columns: 1fr; }
}

/* === FOOTER === */
.footer { background: var(--navy-deep); color: var(--cream); padding: 80px 0 40px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.16);
}
.footer-brand {
  font-family: "Instrument Serif", serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
}
.footer-brand em { color: var(--orange); font-style: italic; }
.footer-col h5 {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.5);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col a {
  display: block;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 4px 0;
}
.footer-col a:hover { color: var(--orange); }
.footer-bot {
  padding-top: 32px;
  display: flex; justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.5);
}
@media (max-width: 800px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

/* Smooth scroll offset for sticky nav */
section[id] { scroll-margin-top: 72px; }

/* === ALL CATEGORIES LIST === */
.all-cats {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.all-cats-head {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 32px;
}
.all-cats-rule {
  flex: 1; height: 1px;
  background: var(--line);
}
.all-cats-list {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.cat-chip {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: inherit;
  transition: all 0.18s ease;
  cursor: default;
}
.cat-chip:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.cat-chip-more {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}
.cat-chip-more:hover {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
}

/* === BRANDS MARQUEE === */
.brands-section {
  padding: 80px 0 96px;
  background: var(--cream-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brands-marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.brands-track {
  display: flex;
  gap: 64px;
  animation: brands-marquee 50s linear infinite;
  width: max-content;
}
.brand-cell {
  font-family: "Instrument Serif", serif;
  font-size: 2rem;
  color: var(--navy);
  opacity: 0.6;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: all 0.18s ease;
}
.brand-cell:hover { opacity: 1; color: var(--orange); }
@keyframes brands-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.in {
  opacity: 1;
  transform: translateY(0);
}
