/* ============================================================
   STIX Outdoors page — echoes stix.tv on KayakVault
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Aldrich&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --stix-ink: #0a0c10;
  --stix-slate: #151920;
  --stix-panel: #1b212c;
  --stix-foam: #f4f6f8;
  --stix-mute: rgba(244, 246, 248, 0.68);
  --stix-line: rgba(255, 255, 255, 0.1);
  --stix-teal: #2cc9b4;
  --stix-teal-deep: #1fa894;
  --font-display: 'Aldrich', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--stix-foam);
  background: var(--stix-ink);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.stix-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  background: rgba(10, 12, 16, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--stix-line);
}

.stix-nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.stix-nav-brand img {
  height: 32px;
  width: auto;
  max-width: min(180px, 42vw);
}

.stix-nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stix-nav-links a:hover { color: var(--stix-teal); }

.stix-nav-kv {
  color: var(--stix-mute);
}

.stix-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: 7rem 1.5rem 4rem;
  overflow: hidden;
}

.stix-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,12,16,0.35) 0%, rgba(10,12,16,0.55) 45%, rgba(10,12,16,0.96) 100%),
    url('/images/stix-hero.webp') center center / cover no-repeat;
}

.stix-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.stix-hero-logo {
  width: min(220px, 48vw);
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.45));
}

.stix-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  letter-spacing: 0.08em;
  line-height: 1.15;
  max-width: 14ch;
  margin-bottom: 1rem;
}

.stix-hero p {
  max-width: 38rem;
  color: var(--stix-mute);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.stix-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.stix-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.stix-btn:hover { transform: translateY(-1px); }

.stix-btn--primary {
  background: var(--stix-teal);
  color: #041311;
}

.stix-btn--primary:hover { background: var(--stix-teal-deep); color: #fff; }

.stix-btn--ghost {
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.04);
}

.stix-btn--ghost:hover { border-color: var(--stix-teal); color: var(--stix-teal); }

.stix-section {
  padding: 4.5rem 1.5rem;
}

.stix-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.stix-kicker {
  font-family: var(--font-display);
  color: var(--stix-teal);
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  margin-bottom: 0.65rem;
}

.stix-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.stix-section-lead {
  color: var(--stix-mute);
  max-width: 42rem;
  margin-bottom: 2rem;
}

.stix-about {
  background: linear-gradient(180deg, var(--stix-ink), var(--stix-slate));
}

.stix-about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.stix-about-copy p {
  color: var(--stix-mute);
  margin-bottom: 1rem;
}

.stix-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.stix-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--stix-line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.03);
}

.stix-social a:hover {
  border-color: var(--stix-teal);
  color: var(--stix-teal);
}

.stix-partner {
  padding: 1.25rem;
  border: 1px solid var(--stix-line);
  border-radius: 16px;
  background: var(--stix-panel);
}

.stix-partner h3 {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.stix-partner p {
  color: var(--stix-mute);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.stix-videos {
  background: var(--stix-slate);
}

.stix-featured {
  margin-bottom: 2rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--stix-line);
  background: #000;
}

.stix-featured-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.stix-featured-frame iframe,
.stix-featured-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.stix-featured-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.28);
  cursor: pointer;
  border: 0;
  color: #fff;
}

.stix-featured-play span {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--stix-teal);
  color: #041311;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.stix-featured-meta {
  padding: 1rem 1.15rem 1.2rem;
  background: var(--stix-panel);
}

.stix-featured-meta h3 {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.stix-featured-meta p {
  color: var(--stix-mute);
  font-size: 0.9rem;
}

.stix-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stix-video-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--stix-line);
  background: var(--stix-panel);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.stix-video-card:hover {
  transform: translateY(-3px);
  border-color: rgba(44, 201, 180, 0.45);
}

.stix-video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.stix-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stix-video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.22);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.stix-video-card:hover .stix-video-play { opacity: 1; }

.stix-video-play i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--stix-teal);
  color: #041311;
}

.stix-video-info {
  padding: 0.8rem 0.9rem 1rem;
}

.stix-video-title {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.stix-video-date {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: var(--stix-mute);
}

.stix-empty {
  padding: 2rem;
  border: 1px dashed var(--stix-line);
  border-radius: 14px;
  color: var(--stix-mute);
  text-align: center;
}

.stix-contact {
  background:
    radial-gradient(ellipse at top right, rgba(44,201,180,0.12), transparent 50%),
    var(--stix-ink);
}

.stix-contact-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid var(--stix-line);
  background: rgba(27, 33, 44, 0.7);
}

.stix-contact address {
  font-style: normal;
  color: var(--stix-mute);
  line-height: 1.7;
}

.stix-contact a.mail {
  color: var(--stix-teal);
  font-weight: 600;
}

.stix-footer {
  padding: 2rem 1.5rem 2.5rem;
  border-top: 1px solid var(--stix-line);
  text-align: center;
  color: var(--stix-mute);
  font-size: 0.85rem;
}

.stix-footer a { color: var(--stix-foam); }
.stix-footer a:hover { color: var(--stix-teal); }

@media (max-width: 900px) {
  .stix-about-grid,
  .stix-contact-card {
    grid-template-columns: 1fr;
  }

  .stix-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .stix-nav-links a:not(.stix-nav-kv) { display: none; }
  .stix-hero { min-height: 78vh; padding-top: 6rem; }
  .stix-video-grid { grid-template-columns: 1fr; }
}
