/*
  preview-shared.css
  Shared design system for all preview pages.
  Import: <link rel="stylesheet" href="./preview-shared.css">
*/

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: #fff;
  color: rgb(16,16,16);
  -webkit-font-smoothing: antialiased;
}

/* ── BRAND TOKENS ─────────────────────────────────────────── */
:root {
  --dust:      rgb(235, 80, 75);
  --dust-dark: rgb(210, 60, 55);
  --ink:       rgb(16, 16, 16);
  --ink-light: rgb(50, 50, 50);
  --paper:     rgb(10, 10, 10);
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.t-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.t-headline {
  font-family: 'Anton', Impact, sans-serif;
  letter-spacing: 0.02em;
}
.t-body {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgb(80, 80, 80);
}

/* ── NAV ────────────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #f0f0f0;
  height: 68px;
  display: flex; align-items: center;
}
.site-nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2.5rem;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.site-nav-logo {
  flex-shrink: 0;
  display: flex; align-items: center;
  text-decoration: none;
  opacity: 1; transition: opacity 0.2s;
}
.site-nav-logo:hover { opacity: 0.75; }
/* Logo image */
.site-nav-logo img { height: 46px; width: auto; display: block; }
/* CSS fallback if SVG doesn't render */
.site-nav-logo-fallback {
  font-family: 'Anton', Impact, sans-serif;
  color: var(--dust);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  line-height: 0.88;
}
.nav-links {
  display: flex; align-items: center; gap: 1.75rem;
  list-style: none;
}
.nav-link {
  font-family: 'Manrope', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  transition: color 0.15s;
}
.nav-link:hover  { color: var(--dust); }
.nav-link--active { color: var(--dust); }
.nav-btn-dust {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none;
  padding: 0.6rem 1.25rem;
  background: var(--dust); color: white;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav-btn-dust:hover { background: var(--dust-dark); color: white; }
.nav-btn-outline {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none;
  padding: 0.6rem 1.25rem;
  border: 1.5px solid var(--ink); color: var(--ink);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-btn-outline:hover { background: var(--ink); color: white; }
/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer; padding: 4px;
  color: var(--ink);
}
.mobile-menu {
  display: none;
  /* Drop below the fixed 68px bar as a full-width panel instead of being a flex
     sibling of the (width:100%) inner bar, which squashed it to zero width. */
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border-top: 1px solid #f0f0f0;
  background: rgba(255,255,255,0.98);
  padding: 1rem 2rem 1.5rem;
  max-height: calc(100vh - 68px);
  overflow-y: auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.mobile-menu.is-open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu li + li { margin-top: 1rem; }
.mobile-menu a {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; color: var(--ink); display: block; padding: 0.25rem 0;
}
.mobile-menu a:hover, .mobile-menu a.is-active { color: var(--dust); }
.mobile-menu .sep { border-top: 1px solid #eee; margin: 0.75rem 0; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

/* ── PAGE HEADER (sub-pages) ─────────────────────────────── */
.page-header {
  position: relative; overflow: hidden;
  background: #0d0d0d;
  padding-top: 68px; /* nav height */
}
.page-header-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(100%) brightness(0.22);
  transform: scale(1.03);
}
.page-header-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.92) 100%);
}
.page-header-body {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  padding: 4rem 2.5rem 5rem;
}
.page-header-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.page-header-breadcrumb a {
  font-family: 'Manrope', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); text-decoration: none;
  transition: color 0.15s;
}
.page-header-breadcrumb a:hover { color: rgba(255,255,255,0.6); }
.page-header-breadcrumb span { color: rgba(255,255,255,0.18); font-size: 0.8rem; }
.page-header-breadcrumb em {
  font-family: 'Manrope', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-style: normal;
}
.page-header-title {
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(5rem, 14vw, 13rem);
  line-height: 0.82;
  color: var(--dust);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.page-header-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem; line-height: 1.75;
  color: rgba(255,255,255,0.45);
  max-width: 560px;
  margin-top: 1.75rem;
}

/* ── SECTION PATTERN ─────────────────────────────────────── */
.section {
  padding: 5rem 0;
}
.section--lg { padding: 7rem 0; }
.section--sm { padding: 3rem 0; }
.section--white  { background: #fff; }
.section--paper  { background: #f5f5f5; }
.section--ink    { background: var(--ink); }
.section--dust   { background: var(--dust); position: relative; overflow: hidden; }

.container {
  max-width: 1280px; margin: 0 auto; padding: 0 2.5rem;
}

/* Section header (within page) */
.sec-header { margin-bottom: 3.5rem; }
.sec-header .sec-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dust); display: block; margin-bottom: 1rem;
}
.sec-header h2 {
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  line-height: 0.85; letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}
.sec-header h2.on-dark { color: #fff; }
.sec-header p {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem; line-height: 1.8;
  color: rgb(90, 90, 90); max-width: 560px;
  margin-top: 1.25rem;
}
.sec-header p.on-dark { color: rgba(255,255,255,0.5); }
.sec-rule { height: 1px; background: #e5e7eb; margin-bottom: 3rem; }
.sec-rule--dark { background: rgba(255,255,255,0.08); }

/* ── GRID HELPERS ─────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-5-7 { display: grid; grid-template-columns: 5fr 7fr; gap: 4rem; align-items: start; }
.grid-7-5 { display: grid; grid-template-columns: 7fr 5fr; gap: 4rem; align-items: start; }
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-5-7, .grid-7-5 { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── PHOTO ────────────────────────────────────────────────── */
.photo { overflow: hidden; background: #eee; }
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(100%); transition: filter 0.7s ease; }
.photo img:hover { filter: grayscale(0%); }
.photo-4-3 { aspect-ratio: 4/3; }
.photo-3-4 { aspect-ratio: 3/4; }
.photo-16-9 { aspect-ratio: 16/9; }

/* ── STAT ─────────────────────────────────────────────────── */
.stat-val {
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1; color: var(--dust);
}
.stat-lbl {
  font-family: 'Manrope', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #9ca3af; display: block; margin-top: 0.5rem;
}

/* ── CARD ─────────────────────────────────────────────────── */
.card {
  border: 1px solid #e5e7eb;
  padding: 2rem 1.75rem;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: var(--dust);
  box-shadow: 0 4px 24px rgba(235,80,75,0.08);
}
.card--dark {
  border-color: rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.card--dark:hover {
  border-color: rgba(235,80,75,0.4);
  background: rgba(235,80,75,0.05);
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.95rem 2.25rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn-dust       { background: var(--dust);   color: white; border: 1.5px solid var(--dust); }
.btn-dust:hover { background: var(--dust-dark); border-color: var(--dust-dark); }
.btn-white       { background: white; color: var(--dust); border: 1.5px solid white; }
.btn-white:hover { background: var(--dust); color: white; border-color: var(--dust); }
.btn-ink        { background: var(--ink); color: white; border: 1.5px solid var(--ink); }
.btn-ink:hover  { background: #333; border-color: #333; }
.btn-outline-ink  { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline-ink:hover  { background: var(--ink); color: white; }
.btn-outline-white  { background: transparent; color: rgba(255,255,255,0.7); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline-white:hover { color: white; border-color: white; }

/* ── LINK ARROW ───────────────────────────────────────────── */
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; color: var(--dust);
  transition: gap 0.2s;
}
.link-arrow:hover { gap: 0.8rem; }
.link-arrow.on-dark { color: rgba(255,255,255,0.5); }
.link-arrow.on-dark:hover { color: white; }


/* ── PRESS CARD ───────────────────────────────────────────── */
.press-card {
  display: block; text-decoration: none;
  border: 1px solid #e5e7eb; padding: 1.75rem;
  background: #fff; transition: border-color 0.2s;
}
.press-card:hover { border-color: var(--dust); }
.press-card-source {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #9ca3af; display: block; margin-bottom: 0.75rem;
}
.press-card-title {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 2rem; line-height: 0.9;
  text-transform: uppercase; color: var(--ink);
  display: block; margin-bottom: 1.25rem;
  transition: color 0.15s;
}
.press-card:hover .press-card-title { color: var(--dust); }

/* ── TIER CARDS ────────────────────────────────────────────── */
.tier-card {
  border: 1.5px solid #e5e7eb;
  padding: 2rem 1.75rem;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.tier-card:hover {
  border-color: var(--dust);
  box-shadow: 0 6px 28px rgba(235,80,75,0.1);
}
.tier-card--featured {
  border-color: var(--dust);
  background: white;
  box-shadow: 0 8px 36px rgba(235,80,75,0.12);
}
.tier-name {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 3.5rem; line-height: 1;
  text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--ink);
}
.tier-price {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 2.5rem; line-height: 1;
  letter-spacing: 0.02em; color: var(--dust);
  margin-bottom: 0.25rem;
}
.tier-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #9ca3af; display: block; margin-bottom: 1.5rem;
}
.tier-feature {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem; line-height: 1.6; color: rgb(70,70,70);
}

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--paper);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 3rem 0 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2rem;
}
.footer-logo img {
  height: 40px; width: auto; display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}
.footer-tagline {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  display: block; margin-bottom: 1rem;
}
.footer-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem; line-height: 1.75;
  color: rgba(255,255,255,0.3); max-width: 280px;
}
.footer-col-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.18); display: block; margin-bottom: 1.25rem;
}
.footer-links { list-style: none; }
.footer-links li + li { margin-top: 0.75rem; }
.footer-links a {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem; text-decoration: none;
  color: rgba(255,255,255,0.4);
  transition: color 0.15s;
}
.footer-links a:hover { color: white; }
.footer-contact {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem; line-height: 1.75;
  color: rgba(255,255,255,0.4);
}
.footer-contact a {
  color: var(--dust); text-decoration: none;
  transition: color 0.15s; display: block; margin-top: 0.75rem;
}
.footer-contact a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 1.5rem;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 1rem;
}
.footer-copy, .footer-meta {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem; color: rgba(255,255,255,0.18);
}
.footer-meta { display: flex; align-items: center; gap: 1.5rem; }
.footer-meta a { color: rgba(255,255,255,0.18); text-decoration: none; transition: color 0.15s; }
.footer-meta a:hover { color: rgba(255,255,255,0.45); }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}
