/* ==========================================================================
   Slowmile — Main Stylesheet
   ========================================================================== */

/* --- Skip link (accessibility) --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--yellow);
  color: var(--black);
  padding: 8px 16px;
  z-index: 10000;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--black);
  color: var(--bone);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
}

/* --- Utility --- */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 720px;
}

/* --- Top bar --- */
.topbar {
  background: transparent;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 101;
  max-height: 32px;
}

.topbar__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  animation: topbar-scroll 70s linear infinite;
  padding: 7px 0;
  width: max-content;
}

.topbar:hover .topbar__track {
  animation-play-state: paused;
}

.topbar__item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  padding: 0 40px;
  flex-shrink: 0;
}

@keyframes topbar-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 60px;
  padding: 0 40px;
}

.hero-page .site-header {
  background: transparent;
  border-bottom: none;
}

.hero-page .site-header.scrolled,
.site-header.scrolled {
  background: rgba(12, 12, 11, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--charcoal);
}

body:not(.hero-page) .site-header {
  background: rgba(12, 12, 11, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--charcoal);
}

/* Hero pulls up behind sticky header */
.hero-page .hero {
  margin-top: -60px;
}

.nav-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
}

.site-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.09em;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}

.site-wordmark .dot,
.dot {
  color: var(--yellow);
}

/* Custom logo (Customizer) — size controlled via inline style from PHP */
.site-logo {
  flex-shrink: 0;
  line-height: 0;
}

.site-logo .custom-logo-link {
  display: block;
}

.site-logo .custom-logo {
  display: block;
}

.mobile-nav__logo {
  margin-bottom: 48px;
  text-align: center;
}

.mobile-nav__logo .custom-logo-link {
  display: inline-block;
}

.mobile-nav__logo .custom-logo {
  display: block;
}

.footer-logo .custom-logo-link {
  display: inline-block;
}

.footer-logo .custom-logo {
  display: block;
  height: 36px !important;
  width: auto !important;
  max-width: 200px !important;
}

.nav-cart {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.nav-cart svg {
  stroke: #f6f3ec;
}

.nav-cart:hover svg {
  stroke: #F8CD02;
}

.cart-count {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #f6f3ec;
}

/* Hamburger — always visible */
.nav-toggle {
  display: block;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 110;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 100%;
  height: 2px;
  background: #f6f3ec;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
}

.hamburger {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger::before {
  content: '';
  top: -8px;
}

.hamburger::after {
  content: '';
  bottom: -8px;
  top: auto;
}

.nav-toggle.active .hamburger {
  background: transparent;
}

.nav-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
  bottom: 0;
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--bone);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  z-index: 106;
  padding: 8px;
  transition: color 0.15s;
}

.mobile-nav__close:hover {
  color: var(--yellow);
}

.mobile-nav__inner {
  text-align: center;
}

.mobile-nav__wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: 0.09em;
  color: var(--white);
  display: block;
  margin-bottom: 48px;
}

.mobile-nav__links {
  margin-bottom: 24px;
}

.mobile-nav__links li {
  margin-bottom: 16px;
}

.mobile-nav__links a,
.mobile-nav__links li a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bone);
  transition: color 0.15s;
}

.mobile-nav__links a:hover,
.mobile-nav__links li a:hover {
  color: var(--yellow);
}

.mobile-nav__cart {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-top: 24px;
  display: inline-block;
}

/* --- Ticker --- */
.ticker-wrap {
  background: var(--white);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 90;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  animation: ticker 14s linear infinite;
  padding: 14px 0;
}

.ticker-wrap:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 20px;
  flex-shrink: 0;
}

.ticker-item--mark {
  padding: 0 12px;
  display: flex;
  align-items: center;
}

.ticker-mark {
  display: block;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.05);
  animation: hero-kenburns 18s ease-in-out infinite alternate;
}

@keyframes hero-kenburns {
  0% {
    transform: scale(1.05) translate(0, 0);
  }
  100% {
    transform: scale(1.12) translate(-1%, -0.5%);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 24px 12vh;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(60px, 10vw, 140px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* Hero line break — visible on mobile only */
.hero__br {
  display: none;
}

.hero__sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero__sub--light {
  color: var(--white);
  opacity: 0.85;
  font-weight: 700;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 40px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn--outline {
  border: 1px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn--outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn--add-to-cart {
  display: block;
  width: 100%;
  background: var(--black);
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 40px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn--add-to-cart:hover {
  background: var(--yellow);
  color: var(--black);
}

/* Text link */
.text-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  transition: color 0.15s;
}

.text-link:hover {
  color: var(--yellow-dark);
}

.text-link--center {
  display: block;
  text-align: center;
  margin-top: 48px;
}

/* --- Sections --- */
.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--black);
}

.section--bone {
  background: var(--bone);
}

.section-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--yellow);
  flex-shrink: 0;
}

.section-label--yellow {
  color: var(--yellow);
}

.section-label--yellow::before {
  background: var(--yellow);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 48px;
}

.section-title--dark {
  color: var(--black);
}

.section-title--sm {
  font-size: clamp(28px, 3vw, 40px);
}

/* --- About strip --- */
.about-strip__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 32px;
  line-height: 1.55;
  color: var(--bone);
  border-left: 2px solid var(--yellow);
  padding-left: 28px;
  max-width: 600px;
  margin-bottom: 32px;
}

.about-strip__body p {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--light);
}

.text-lg {
  font-size: 19px;
  line-height: 1.75;
  color: var(--bone);
  max-width: 700px;
}

/* --- Product carousel --- */
.product-carousel {
  overflow: hidden;
  width: 100%;
  margin: 0 0 40px;
}

.product-carousel__track {
  display: flex;
  gap: 16px;
  animation: product-scroll 40s linear infinite;
  width: max-content;
}

.product-carousel:hover .product-carousel__track {
  animation-play-state: paused;
}

.product-carousel__item {
  flex-shrink: 0;
  width: 280px;
}

@keyframes product-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .product-carousel {
    overflow: visible !important;
    margin: 0 0 24px !important;
    padding: 0 16px !important;
  }

  .product-carousel__track {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    animation: none !important;
    width: auto !important;
    transform: none !important;
  }

  .product-carousel__item {
    width: auto !important;
    flex-shrink: unset !important;
  }

  .product-carousel__item:nth-child(n+5) {
    display: none !important;
  }
}

/* --- Product grid --- */
.product-grid {
  display: grid;
  gap: 3px;
}

.product-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  display: block;
  position: relative;
  overflow: hidden;
}

.product-card__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease;
}

.product-card:hover .product-card__image img {
  filter: brightness(0.85);
}

.product-card__info {
  padding: 16px 4px 8px;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__info {
  transform: translateY(-4px);
}

.product-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.product-card__price {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--yellow);
}

/* --- Journal grid --- */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.journal-card__link {
  display: block;
}

.journal-card__image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin-bottom: 16px;
}

.journal-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.journal-card:hover .journal-card__image img {
  transform: scale(1.03);
}

.journal-card__date {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}

.section--bone .journal-card__date {
  color: var(--muted);
}

.journal-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 8px;
}

.section--bone .journal-card__title {
  color: var(--black);
}

.journal-card__excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: var(--light);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section--bone .journal-card__excerpt {
  color: var(--mid);
}

/* Journal archive — featured first post */
.journal-grid--archive .journal-card--featured {
  grid-column: 1 / -1;
  position: relative;
}

.journal-card--featured .journal-card__image {
  aspect-ratio: 21 / 9;
}

.journal-card--featured .journal-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.journal-card--featured .journal-card__title {
  font-size: clamp(28px, 4vw, 48px);
}

/* --- Newsletter --- */
.newsletter-section__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 40px;
  max-width: 600px;
}

.newsletter-form input[type="email"] {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--charcoal);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 16px 20px;
  margin-bottom: 12px;
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--muted);
}

.newsletter-form button[type="submit"],
.newsletter-form input[type="submit"] {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.newsletter-form button[type="submit"]:hover,
.newsletter-form input[type="submit"]:hover {
  background: var(--yellow-dark);
}

/* Newsletter layout — text left, form right */
.newsletter-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.newsletter-layout__text .section-title {
  margin-bottom: 20px;
}

.newsletter-layout__text .newsletter-section__sub {
  margin-bottom: 0;
}

/* MailerLite form */
.newsletter-form {
  max-width: 500px;
}

/* --- Trust strip --- */
.trust-strip {
  background: var(--off-black);
  border-bottom: 1px solid var(--charcoal);
  padding: 32px 0;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-strip__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.trust-strip__icon {
  flex-shrink: 0;
  color: var(--yellow);
  margin-top: 2px;
}

.trust-strip__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-strip__text strong {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--white);
}

.trust-strip__text span {
  font-size: 12px;
  color: var(--muted);
}

/* --- Product badge --- */
.product-card {
  position: relative;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  z-index: 2;
}

.product-card__meta {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* --- Instagram CTA --- */
.ig-cta {
  border-top: 1px solid var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
}

.ig-cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

.ig-cta__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ig-cta__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 28px;
}

.ig-cta__btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.ig-cta__handle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.ig-cta__handle span {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .ig-cta__inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .ig-cta__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .ig-cta__handle {
    display: none;
  }
}

/* --- Rebuild banner --- */
.rebuild-banner {
  background: var(--dark);
  border-top: 1px solid var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  padding: 64px 0;
}

.rebuild-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.rebuild-banner__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--yellow);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.rebuild-banner__desc {
  font-size: 15px;
  color: var(--light);
  line-height: 1.75;
  max-width: 640px;
  margin: 0;
}

/* --- FAQ --- */
.faq-list {
  border-top: 1px solid var(--charcoal);
}

.faq-item {
  border-bottom: 1px solid var(--charcoal);
}

.faq-item__q {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--white);
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item__q::after {
  content: '+';
  font-size: 22px;
  color: var(--muted);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}

.faq-item[open] .faq-item__q::after {
  content: '−';
  color: var(--yellow);
}

.faq-item__a {
  font-size: 14px;
  color: var(--light);
  line-height: 1.8;
  padding: 0 0 20px;
  max-width: none;
  margin: 0;
}

/* --- Product trust signals --- */
.product-trust {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--charcoal);
}

.product-trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 13px;
}

.product-trust__item svg {
  color: var(--yellow);
  flex-shrink: 0;
}

.product-trust__item strong {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--white);
}

/* --- Sponsor logos --- */
.sponsor-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.sponsor-item {
  opacity: 0.5;
  filter: grayscale(1);
  transition: all 0.3s ease;
}

.sponsor-item:hover {
  opacity: 1;
  filter: grayscale(0);
}

.sponsor-item img {
  max-height: 48px;
}

/* --- Sponsor tiers --- */
.sponsor-tier {
  margin-bottom: 60px;
}

.sponsor-tier:last-child {
  margin-bottom: 0;
}

.sponsor-tier__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  text-align: center;
}

.sponsor-tier__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.sponsor-logo {
  filter: grayscale(1) brightness(2);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.sponsor-logo:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

.sponsor-logo img {
  max-height: 44px;
  width: auto;
  display: block;
}

.sponsor-logo--main img {
  max-height: 80px;
}

.sponsor-tier--small .sponsor-logo img {
  max-height: 32px;
}

.sponsor-tier--small .sponsor-tier__logos {
  gap: 32px;
}

/* --- Homepage sponsor grid (white bg cards) --- */
.sponsor-home-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sponsor-home-card {
  background: #fff;
  border-radius: 4px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-home-card img {
  max-height: 28px;
  width: auto;
  display: block;
  filter: none;
  opacity: 1;
}

/* Sponsors page — larger cards */
.sponsor-home-grid--page {
  gap: 12px;
}

.sponsor-home-card--page {
  padding: 20px 32px;
}

.sponsor-home-card--page img {
  max-height: 44px;
}

.sponsor-home-card--main {
  padding: 28px 48px;
}

.sponsor-home-card--main img {
  max-height: 80px;
}

.text-muted {
  color: var(--muted);
  font-size: 14px;
}

/* --- About: Is / Isn't --- */
.about-is-isnt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
}

.about-is,
.about-isnt {
  background: var(--dark);
  border: 1px solid var(--charcoal);
  padding: 36px;
}

.about-is__title,
.about-isnt__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.about-is__title {
  color: var(--yellow);
}

.about-isnt__title {
  color: #c44;
}

.about-is li,
.about-isnt li {
  font-size: 14px;
  color: var(--light);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  line-height: 1.6;
}

.about-is li:last-child,
.about-isnt li:last-child {
  border-bottom: none;
}

.about-is li::before {
  content: '✓  ';
  color: var(--yellow);
}

.about-isnt li::before {
  content: '✗  ';
  color: #c44;
}

/* --- Slow cards --- */
.slow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.slow-card {
  background: var(--off-black);
  border: 1px solid var(--charcoal);
  padding: 32px 26px;
}

.slow-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
}

.slow-card__text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
  max-width: none;
}

/* --- Manifesto --- */
.manifesto {
  max-width: 1000px;
}

.manifesto__line {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3.5vw, 48px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--white);
  padding: 28px 0;
  border-bottom: 1px solid var(--charcoal);
}

.manifesto__line:first-child {
  border-top: 1px solid var(--charcoal);
}

.manifesto__line--accent {
  color: var(--yellow);
}

.manifesto__note {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(14px, 1.6vw, 18px);
  color: var(--muted);
  margin-top: 8px;
  letter-spacing: 0;
  line-height: 1.55;
}

/* --- Values grid --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.value-card {
  background: var(--off-black);
  border: 1px solid var(--charcoal);
  padding: 40px 32px;
}

.value-card__number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.035);
  margin-bottom: 16px;
}

.value-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--yellow);
  margin-bottom: 12px;
}

.value-card__text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  max-width: none;
  margin: 0;
}

/* --- Timeline badges --- */
.timeline__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 10px;
  border-radius: 1px;
}

.timeline__badge--done {
  border: 1px solid rgba(248, 205, 2, 0.4);
  color: var(--yellow);
}

.timeline__badge--paused {
  border: 1px solid rgba(255, 80, 60, 0.35);
  color: rgba(255, 80, 60, 0.7);
}

.timeline__badge--next {
  border: 1px solid rgba(248, 205, 2, 0.4);
  color: var(--yellow);
}

/* --- Pull quote cite --- */
.pull-quote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 12px;
  width: auto;
}

/* --- Page hero --- */
.page-hero {
  background: var(--black);
  display: flex;
  align-items: flex-end;
  padding-top: 100px;
  padding-bottom: 60px;
}

.page-hero--text {
  min-height: auto;
}

.page-hero--half {
  min-height: 50vh;
}

.page-hero--large {
  min-height: 60vh;
}

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 80px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--white);
  text-transform: uppercase;
}

.page-hero__title--massive {
  font-size: clamp(60px, 10vw, 140px);
}

/* --- About page editorial --- */
.about-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-editorial p {
  max-width: 700px;
  margin-bottom: 24px;
}

/* --- Timeline --- */
.timeline {
  position: relative;
  margin-top: 48px;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
}

.timeline__item {
  padding-bottom: 56px;
  position: relative;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -45px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid var(--black);
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}

.timeline__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.03em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.timeline__body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
}

/* --- Single post --- */
.single-post__hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.single-post__hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-post__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.75));
}

.single-post__hero-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  max-width: 800px;
}

.single-post__date {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 12px;
}

.single-post__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
  text-transform: uppercase;
}

.single-post__body {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px;
}

.entry-content {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.9;
  color: var(--bone);
}

.entry-content p {
  margin-bottom: 28px;
  max-width: 720px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 48px;
  margin-bottom: 20px;
}

.entry-content h2 {
  font-size: 36px;
}

.entry-content h3 {
  font-size: 28px;
}

.entry-content h4 {
  font-size: 22px;
}

.entry-content blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.6;
  color: var(--bone);
  border-left: 2px solid var(--yellow);
  padding-left: 28px;
  margin: 40px 0;
}

.entry-content img {
  margin: 40px 0;
}

.entry-content a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content a:hover {
  color: var(--yellow-dark);
}

.entry-content ul,
.entry-content ol {
  padding-left: 24px;
  margin-bottom: 28px;
}

.entry-content li {
  margin-bottom: 8px;
  list-style: disc;
}

.entry-content ol li {
  list-style: decimal;
}

.single-post__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--charcoal);
}

.single-post__share {
  display: flex;
  gap: 20px;
  align-items: center;
}

.copy-link-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  cursor: pointer;
  background: none;
  border: none;
}

/* --- Contact --- */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--charcoal);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 16px 20px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--yellow);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input[type="submit"],
.contact-form button[type="submit"] {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form input[type="submit"]:hover,
.contact-form button[type="submit"]:hover {
  background: var(--yellow-dark);
}

.contact-links {
  display: flex;
  gap: 32px;
  margin-top: 48px;
}

/* --- Footer --- */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--charcoal);
}

.footer-top {
  padding: 64px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-col--brand {
  padding-right: 32px;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.09em;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo .custom-logo {
  display: block;
  height: 36px !important;
  width: auto !important;
  max-width: 200px !important;
}

.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: none;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: var(--muted);
  transition: color 0.15s;
}

.footer-social a:hover {
  color: var(--yellow);
}

.footer-col__title {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col__links a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.15s;
}

.footer-col__links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--charcoal);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.footer-bottom__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-payments {
  display: flex;
  gap: 6px;
  align-items: center;
  opacity: 0.5;
}

.footer-payments svg {
  height: 20px;
  width: auto;
}

/* --- Meets page --- */
.meets-card {
  background: var(--dark);
  border: 1px solid var(--charcoal);
  padding: 48px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.meets-card__label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--yellow);
  margin-bottom: 16px;
}

.meets-card__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.meets-card__text {
  font-size: 15px;
  color: var(--light);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto 32px;
}

.meets-card__cta-text {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--white);
  margin-bottom: 16px;
}

/* --- Legal pages --- */
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  margin-top: 28px;
  margin-bottom: 8px;
}

.legal-content p {
  font-size: 14px;
  color: var(--light);
  line-height: 1.85;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 14px;
  color: var(--light);
  line-height: 1.85;
  margin-bottom: 6px;
  list-style: disc;
}

.legal-updated {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}


/* --- Cart toast notification --- */
.cart-toast {
  position: fixed;
  top: 80px;
  right: 24px;
  z-index: 200;
  background: var(--dark);
  border: 1px solid var(--charcoal);
  border-left: 3px solid var(--yellow);
  padding: 20px 28px;
  max-width: 360px;
  transform: translateX(120%);
  transition: transform 0.4s ease;
  pointer-events: none;
}

.cart-toast.show {
  transform: translateX(0);
  pointer-events: auto;
}

.cart-toast__title {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.03em;
  color: var(--yellow);
  margin-bottom: 6px;
}

.cart-toast__text {
  font-size: 13px;
  color: var(--light);
  line-height: 1.6;
  margin: 0;
}

.cart-toast__link {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--yellow);
}

/* --- Pagination --- */
.pagination {
  margin-top: 60px;
  text-align: center;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagination a,
.pagination span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding: 8px 14px;
  border: 1px solid var(--charcoal);
  transition: all 0.2s;
}

.pagination a:hover {
  color: var(--white);
  border-color: var(--white);
}

.pagination .current {
  color: var(--yellow);
  border-color: var(--yellow);
}

/* --- No results --- */
.no-results {
  text-align: center;
  padding: 80px 0;
}

.no-results p {
  font-size: 18px;
  color: var(--muted);
  margin: 0 auto 24px;
}

/* --- Search form --- */
.search-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
}

.search-form input[type="search"] {
  flex: 1;
  background: var(--dark);
  border: 1px solid var(--charcoal);
  border-right: none;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 20px;
}

.search-form input[type="submit"] {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--yellow);
  padding: 14px 24px;
  cursor: pointer;
}

/* --- Shop filters --- */
.shop-filters {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--charcoal);
}

.shop-filter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s;
}

.shop-filter:hover {
  color: var(--white);
}

.shop-filter--active {
  color: var(--yellow);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .product-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-nav {
    padding: 0 20px;
  }

  .about-is-isnt,
  .slow-grid,
  .values-grid,
  .newsletter-layout {
    grid-template-columns: 1fr;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .rebuild-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .hero__content {
    padding: 0 20px 10vh;
  }

  .hero__br {
    display: block;
  }

  .section {
    padding: 64px 0;
  }

  .about-strip__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pull-quote {
    font-size: 24px;
  }

  .journal-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-editorial {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }

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

  .footer-bottom {
    padding: 16px 20px;
  }

  .page-hero {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .single-post__hero-content {
    padding: 24px;
  }

  .single-post__body {
    padding: 48px 20px;
  }

  .single-post__footer {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .container {
    padding: 0 20px;
  }

  .shop-filters {
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .product-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: clamp(36px, 10vw, 48px);
  }

  .footer-wordmark {
    font-size: 36px;
  }

  .mobile-nav__links a,
  .mobile-nav__links li a {
    font-size: 28px;
  }
}
