/* ---------------------------------------------------------
   Our Own Route — brand tokens
   Navy panel #192E37, gold accent #C29847, white type, Inter.
   Matches the on-video Info Graphics kit.
--------------------------------------------------------- */
:root {
  --navy: #192E37;
  --navy-92: rgba(25, 46, 55, 0.92);
  --navy-deep: #0f1c22;
  --gold: #C29847;
  --white: #ffffff;
  --paper: #f6f3ec;
  --ink: #1c2a30;
  --max-width: 1180px;
  --radius: 10px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--navy);
  border-bottom: 2px solid rgba(255,255,255,0.07);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand__mark { width: 40px; height: 40px; object-fit: cover; border-radius: 50%; }
.brand__mark--small { width: 32px; height: 32px; object-fit: cover; border-radius: 50%; margin-bottom: 8px; }
.brand__name {
  color: var(--white);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.site-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--gold);
}
.site-nav a.is-active {
  color: var(--gold);
  border-color: var(--gold);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--white); display: block;
}

/* ---------- Hero (home) ---------- */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 28px 0 40px;
}
.hero__intro { max-width: 820px; margin-bottom: 32px; }
.hero__kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0 0 10px;
}
.hero__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.1;
}
.hero__desc { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin: 0 0 22px; }

.hero--slim { padding: 28px 0; }
.hero-slim__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-slim__title { font-size: 1.3rem; font-weight: 700; margin: 0; line-height: 1.3; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(194,152,71,0.35); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
  padding: 10px 20px;
}
.btn--sm { padding: 7px 16px; font-size: 0.82rem; }

/* ---------- Section shells ---------- */
.section { padding: 56px 0; }
.section--tight { padding: 40px 0; }
.section__head { max-width: 640px; margin-bottom: 28px; }
.section__title {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--gold);
}
.section__desc { color: #4b5b62; margin: 0; }

/* ---------- Category tiles (home) ---------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 16 / 9;
  display: block;
}
.tile img { width: 100%; height: 100%; object-fit: cover; }
.tile__label {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(180deg, transparent, rgba(15,28,34,0.85));
  color: var(--white);
  font-weight: 700;
  padding: 34px 14px 12px;
}
.tile--soon {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
}
.tile--soon img { width: 48px; height: 48px; border-radius: 50%; flex: none; }
.tile--soon .tile__label {
  position: static;
  background: none;
  padding: 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}
.tile--soon .tile__label strong { display: block; color: var(--white); font-size: 1.05rem; margin-bottom: 4px; }

/* ---------- Coming soon (category empty state) ---------- */
.coming-soon {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 48px 24px;
  text-align: center;
  color: var(--white);
}
.coming-soon__mark { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px; }
.coming-soon__title { font-size: 1.2rem; font-weight: 700; margin: 0 0 8px; }
.coming-soon__desc { color: rgba(255,255,255,0.75); margin: 0 0 20px; }

/* ---------- Video cards ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 1px 3px rgba(25,46,55,0.08);
  border: 1px solid rgba(25,46,55,0.08);
}
.video-card__thumb-wrap { position: relative; }
.video-card__thumb { aspect-ratio: 16/9; object-fit: cover; }
.video-card__body { padding: 16px 18px 20px; }
.video-card__title {
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 6px;
  color: var(--navy);
}
.video-card__desc { font-size: 0.92rem; color: #5a6a70; margin: 0; }
.tag {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* ---------- Video detail page ---------- */
.video-hero {
  background: var(--navy);
  color: var(--white);
  padding: 44px 0;
}
.video-hero__title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; margin: 10px 0 14px; }
.video-hero__desc { color: rgba(255,255,255,0.85); max-width: 720px; margin: 0 0 20px; }
.video-embed {
  display: block;
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-deep);
}
.video-embed img,
.video-embed iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover;
}
.video-embed__play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.video-embed__play span {
  width: 74px; height: 74px; border-radius: 50%;
  background: rgba(15,28,34,0.55);
  display: flex; align-items: center; justify-content: center;
}
.video-embed__play svg { width: 26px; height: 26px; }

.video-pager {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
}
@media (max-width: 560px) {
  .video-pager { flex-direction: column; }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 10px;
}
@media (max-width: 700px) { .gallery { grid-template-columns: 1fr; } }
.gallery img { border-radius: var(--radius); aspect-ratio: 16/9; object-fit: cover; }

/* ---------- Store ---------- */
.disclosure {
  background: #fff8ea;
  border: 1px solid rgba(194,152,71,0.4);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.92rem;
  color: #6b532a;
  margin-bottom: 32px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(25,46,55,0.08);
  box-shadow: 0 1px 3px rgba(25,46,55,0.08);
  display: flex;
  flex-direction: column;
}
.product-card__img { aspect-ratio: 4/3; object-fit: cover; background: #f4f1ea; }
.product-card__body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-card__title { font-weight: 700; font-size: 1.02rem; margin: 0; color: var(--navy); }
.product-card__desc { font-size: 0.9rem; color: #5a6a70; margin: 0; flex: 1; }
.product-card__price { font-weight: 700; color: var(--navy); }

/* Reviewed products carry the on-video verdict badge — same navy/gold kit as the end-of-video cards. */
.product-card--reviewed {
  border-color: var(--navy);
  box-shadow: 0 4px 16px rgba(25,46,55,0.18);
}
.verdict-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
}
.verdict-strip__icon {
  flex: none;
  width: 26px;
  height: 26px;
  color: var(--gold);
}
.verdict-strip__icon svg { width: 100%; height: 100%; display: block; }
.verdict-strip__label {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.8); margin-top: 60px; }
.site-footer__inner {
  padding: 40px 0 34px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 24px;
}
.site-footer__tagline { margin: 0; color: rgba(255,255,255,0.7); font-size: 0.95rem; max-width: 340px; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 16px; align-content: start; }
.site-footer__links a { text-decoration: none; font-weight: 600; font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.site-footer__links a:hover { color: var(--gold); }
.site-footer__cta { justify-self: end; }
.site-footer__legal {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
  margin: 6px 0 0;
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .site-nav { position: absolute; inset: 62px 0 auto 0; background: var(--navy); display: none; }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; padding: 8px 24px 16px; }
  .site-nav a { display: block; padding: 12px 0; }
  .site-header { position: relative; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__cta { justify-self: start; }
}
