*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050711;
  color: #f9fafb;
}

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

a {
  color: #ff4b3a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin: 0 auto;
}

/* Header / Nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 7, 17, 0.96);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  color: inherit;
}

.brand-logo {
  width: 176px;
  height: 176px;
  border-radius: 10px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: Anton, system-ui;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 2rem;
}

.brand-subtitle {
  font-size: 1rem;
  color: #a3a7b3;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

.main-nav {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.main-nav a {
  color: #a3a7b3;
  position: relative;
}

.main-nav a.active,
.main-nav a:hover {
  color: #ffffff;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #f9fafb;
}

/* Hero */

.hero {
  padding: 1.6rem 0 2.1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #a3a7b3;
}

.hero h1 {
  font-family: Anton, system-ui;
  font-size: clamp(2.0rem, 4vw, 2.8rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0.4rem 0 0.8rem;
  line-height: 1.05;
}

.hero-subtitle {
  color: #a3a7b3;
  font-size: 1rem;
  max-width: 32rem;
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.btn.primary {
  background: linear-gradient(135deg, #ff4b3a, #ffb347);
  color: #111;
}

.btn.ghost {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  color: #f9fafb;
}

.hero-image-frame {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  background: #10121c;
}

.hero-badge {
  margin-top: 0.6rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #a3a7b3;
}

/* Sections */

.section {
  padding: 2.2rem 0;
  scroll-margin-top: 120px;
}


.section-header h2 {
  font-family: Anton, system-ui;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1.6rem;
  margin-bottom: 0.2rem;
}

.section-header p {
  margin: 0;
  color: #a3a7b3;
  font-size: 0.9rem;
}

/* Videos grid */

.videos-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.video-toggle-group {
  display: inline-flex;
  background: #181920;
  border-radius: 999px;
  padding: 0.15rem;
  border: 1px solid #272838;
}

.video-toggle {
  border: none;
  background: transparent;
  color: #a3a7b3;
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
}

.video-toggle.active {
  background: linear-gradient(135deg, #ff4b3a, #ffb347);
  color: #111;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.1rem;
}

.video-card {
  background: #181920;
  border-radius: 1rem;
  padding: 0.5rem;
  border: 1px solid #272838;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.video-thumb-wrap {
  position: relative;
  border-radius: 0.8rem;
  overflow: hidden;
  background: #10121c;
}

.video-duration {
  position: absolute;
  right: 0.5rem;
  bottom: 0.45rem;
  background: rgba(0,0,0,0.7);
  border-radius: 0.4rem;
  padding: 0.12rem 0.4rem;
  font-size: 0.68rem;
}

.video-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #a3a7b3;
}

.video-grid-loading {
  color: #a3a7b3;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: center;
}

.about-image-wrap {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  background: #10121c;
}

.about-content h2 {
  font-family: Anton, system-ui;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.6rem;
}

.about-content p {
  color: #a3a7b3;
  font-size: 1rem;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.8rem 0 2.1rem;
  margin-top: 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 1.6rem;
}

.footer-logo {
  width: 72px;
  height: 72px;
  border-radius: 10px;
}

.footer-brand p {
  color: #a3a7b3;
  font-size: 0.86rem;
}

.footer-links h3,
.footer-meta h3 {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  color: #a3a7b3;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.social-links {
  display: flex;
  gap: 0.9rem;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid #272838;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-links i {
  font-size: 1.5rem;
}

.footer-meta p {
  margin: 0 0 0.3rem;
  font-size: 0.82rem;
  color: #a3a7b3;
}

.footer-copy {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  color: #7a7f90;
}

/* Shared sections */

.section-centered {
  text-align: center;
}

.section-centered .container.narrow {
  max-width: 640px;
}

/* Links page */

.links-page {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.links-main {
  width: 100%;
  padding: 2rem 1.2rem;
}

.links-card {
  width: min(480px, 100%);
  margin: 0 auto;
  background: #181920;
  border-radius: 1.6rem;
  border: 1px solid #272838;
  padding: 1.8rem 1.6rem;
  text-align: center;
}

.links-avatar {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  margin: 0 auto 0.8rem;
}

.links-card h1 {
  font-family: Anton, system-ui;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1rem;
}

.links-tagline {
  color: #a3a7b3;
  font-size: 0.95rem;
}

.links-list {
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.link-pill {
  display: block;
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid #393b4f;
  background: #252637;
  color: #f9fafb;
  font-size: 1rem;
  text-align: center;
}

.link-pill.primary {
  background: linear-gradient(135deg, #ff4b3a, #ffb347);
  border-color: transparent;
  color: #111;
}

.link-pill i {
  margin-right: 0.4rem;
}

.links-footer {
  font-size: 0.78rem;
  color: #a3a7b3;
}

/* Legal (privacy) */

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

.section-legal h1 {
  font-family: Anton, system-ui;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.6rem;
}

.section-legal h2 {
  font-size: 1.05rem;
}

.section-legal p {
  font-size: 0.94rem;
  color: #a3a7b3;
}

/* Gear */

.gear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.4rem;
}

.gear-item {
  background: #181920;
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid #272838;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.gear-image {
  border-radius: 0.8rem;
  overflow: hidden;
  margin-bottom: 0.4rem;
  min-height: 180px;
  background: #10121c;
}

.gear-item h2 {
  font-size: 1rem;
  margin: 0;
}

.gear-item p {
  font-size: 0.86rem;
  color: #a3a7b3;
  margin: 0 0 0.4rem;
}

.gear-item .btn {
  align-self: flex-start;
  font-size: 0.85rem;
}

/* Responsive */

@media (max-width: 1024px) {
  .brand-logo {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 1.5rem, 640px);
  }
  .main-nav {
    position: absolute;
    top: 60px;
    right: 1rem;
    background: #181920;
    border-radius: 0.9rem;
    padding: 0.5rem 0.9rem;
    flex-direction: column;
    gap: 0.3rem;
    display: none;
  }
  .main-nav.open {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 520px) {
  .video-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* Ensure anchored sections are not hidden behind the sticky header */
#videos,
#about {
  scroll-margin-top: 140px;
}


/* Gear page layout: 2-column rows with categories */
.gear-section {
  margin-top: 2rem;
}

.gear-intro h1 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.gear-intro p {
  margin: 0 0 1.0rem;
  font-size: 0.95rem;
}

.gear-category {
  margin-bottom: 2.5rem;
}

.gear-category-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.gear-item-row {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, #1e1f22 0%, #17181b 100%);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.gear-item-row + .gear-item-row {
  margin-top: 1rem;
}

.gear-item-text h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.gear-item-text p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.4;
}


/* Responsive stacking on smaller screens */
@media (max-width: 768px) {
  .gear-item-row {
    grid-template-columns: 1fr;
  }
  .gear-item-image .gear-img-tile {
    width: 225px;
    height: 225px;
    padding: 10px;
    border-radius: 16px;
  }
  .gear-item-image .gear-img-tile img {
    border-radius: 10px;
  }
}
/* SEO context blocks (v10.13.1) */
.seo-intro{max-width:100%;margin:14px 0 0;line-height:1.5;}
@media (max-width:740px){.seo-intro{padding:0 14px;}}

.gear-item-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gear-item-image .gear-img-tile {
  width: 250px;
  height: 250px;
  background: #ffffff;
  border-radius: 18px;
  padding: 12px;
  box-sizing: border-box;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.gear-item-image .gear-img-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

