/* ===== Stories Page ===== */
:root {
  --st-gold: #C9A84C;
  --st-gold-light: #E8C97A;
  --st-gold-dim: #8A6E32;
  --st-bg: #1A1A1A;
  --st-bg2: #111111;
  --st-bg3: #222222;
  --st-text: #F0EBE0;
  --st-text-muted: #8A8278;
  --st-text-dim: #5A5550;
  --st-border: rgba(201,168,76,0.18);
}

.stories-page {
  background: var(--st-bg2);
  color: var(--st-text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
}

/* Override navbar for dark page */
.stories-page .ig-nav {
  background: var(--st-bg);
  border-bottom: 1px solid var(--st-border);
}

/* ===== HERO ===== */
.st-hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.st-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.st-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 30%, rgba(17,17,17,0.7) 70%, var(--st-bg2) 100%),
    linear-gradient(to right, rgba(17,17,17,0.4), transparent);
}

.st-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 64px;
  max-width: 700px;
}

.st-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--st-gold);
  font-weight: 400;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.st-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--st-gold);
}

.st-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  line-height: 1.05;
  color: var(--st-text);
  margin: 0 0 20px;
  letter-spacing: -1px;
}

.st-hero-title em {
  font-style: italic;
  color: var(--st-gold-light);
}

.st-hero-sub {
  font-size: 14px;
  color: rgba(240,235,224,0.7);
  max-width: 460px;
  line-height: 1.8;
  letter-spacing: 0.3px;
  margin: 0;
}

/* ===== FILTER BAR ===== */
.st-filter-bar {
  background: var(--st-bg);
  border-bottom: 1px solid var(--st-border);
  padding: 0 80px;
  display: flex;
  gap: 0;
  align-items: center;
  height: 52px;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.st-filter-bar::-webkit-scrollbar { display: none; }

.st-filter-tag {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--st-text-muted);
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
  text-decoration: none;
  text-transform: uppercase;
}

.st-filter-tag:hover { color: var(--st-text); }
.st-filter-tag.active { color: var(--st-gold); border-bottom-color: var(--st-gold); }

/* ===== MAIN ===== */
.st-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 80px 96px;
}

/* ===== FEATURED STORY ===== */
.st-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 96px;
  border: 1px solid var(--st-border);
}

.st-featured-img {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.st-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.st-featured:hover .st-featured-img img { transform: scale(1.03); }

.st-featured-label {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--st-gold);
  color: var(--st-bg);
  font-size: 10px;
  letter-spacing: 2.5px;
  padding: 6px 14px;
  font-weight: 500;
}

.st-featured-body {
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--st-bg3);
}

/* ===== STORY META ===== */
.st-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.st-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--st-border);
}

.st-host-info { display: flex; flex-direction: column; }

.st-host-name {
  font-size: 12px;
  color: var(--st-gold);
  letter-spacing: 1px;
  font-weight: 400;
  text-decoration: none;
}

.st-host-name:hover { text-decoration: underline; }

.st-date {
  font-size: 11px;
  color: var(--st-text-dim);
  letter-spacing: 0.5px;
}

.st-dest {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--st-text-dim);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

.st-dest::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--st-text-dim);
  display: inline-block;
}

/* ===== STORY TITLES ===== */
.st-title-lg {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--st-text);
  margin: 0 0 20px;
}

.st-title-lg em { font-style: italic; color: var(--st-gold-light); }

.st-excerpt {
  font-size: 14px;
  color: var(--st-text-muted);
  line-height: 1.85;
  margin-bottom: 32px;
}

.st-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--st-gold);
  text-decoration: none;
  font-weight: 400;
  transition: gap 0.2s;
}

.st-read-more::after {
  content: '\2192';
  font-size: 14px;
  transition: transform 0.2s;
}

.st-read-more:hover::after { transform: translateX(4px); }

/* ===== SECTION HEADER ===== */
.st-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
}

.st-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--st-text);
  letter-spacing: -0.5px;
  margin: 0;
}

.st-see-all {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--st-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.st-see-all:hover { color: var(--st-gold); }

/* ===== STORY GRID ===== */
.st-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.st-card {
  background: var(--st-bg);
  border: 1px solid var(--st-border);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s;
  text-decoration: none;
  display: block;
}

.st-card:hover { border-color: var(--st-gold-dim); }

.st-card-img-wrap { overflow: hidden; position: relative; }

.st-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.st-card:hover .st-card-img { transform: scale(1.04); }

.st-card-tag {
  position: absolute;
  bottom: 0; left: 0;
  background: rgba(17,17,17,0.75);
  padding: 5px 12px;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--st-gold);
  font-weight: 400;
  backdrop-filter: blur(4px);
  text-transform: uppercase;
}

.st-card-body { padding: 24px 26px 28px; }

.st-card-dest {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--st-text-dim);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.st-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--st-text);
  line-height: 1.25;
  margin: 0 0 10px;
}

.st-card-excerpt {
  font-size: 13px;
  color: var(--st-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.st-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--st-border);
}

.st-card-host {
  display: flex;
  align-items: center;
  gap: 8px;
}

.st-card-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--st-border);
}

.st-card-host-name {
  font-size: 11px;
  color: var(--st-text-muted);
  letter-spacing: 0.5px;
}

.st-card-views {
  font-size: 11px;
  color: var(--st-text-dim);
  letter-spacing: 0.5px;
}

/* ===== PULLQUOTE ===== */
.st-pullquote {
  margin: 0 0 80px;
  padding: 64px 80px;
  border-top: 1px solid var(--st-border);
  border-bottom: 1px solid var(--st-border);
  text-align: center;
  position: relative;
  background: var(--st-bg);
}

.st-pullquote::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 200px;
  font-weight: 300;
  color: rgba(201,168,76,0.07);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}

.st-pullquote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  font-style: italic;
  color: var(--st-text);
  line-height: 1.4;
  max-width: 780px;
  margin: 0 auto 24px;
  position: relative;
}

.st-pullquote .st-quote-attr {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--st-gold);
  font-weight: 400;
}

/* ===== HORIZONTAL SCROLL ===== */
.st-scroll-section { margin-bottom: 80px; }

.st-scroll-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}

.st-scroll-track::-webkit-scrollbar { display: none; }

.st-scroll-card {
  flex: 0 0 300px;
  border: 1px solid var(--st-border);
  overflow: hidden;
  background: var(--st-bg);
  transition: border-color 0.3s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.st-scroll-card:hover { border-color: var(--st-gold-dim); }

.st-scroll-img-wrap { overflow: hidden; }

.st-scroll-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.st-scroll-card:hover .st-scroll-img { transform: scale(1.04); }

.st-scroll-body { padding: 20px 22px 24px; }

.st-scroll-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--st-text);
  margin: 0 0 6px;
  line-height: 1.25;
}

.st-scroll-dest {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--st-text-dim);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.st-scroll-host {
  font-size: 11px;
  color: var(--st-gold);
  letter-spacing: 0.5px;
}

/* ===== CTA BANNER ===== */
.st-cta {
  background: var(--st-bg);
  border: 1px solid var(--st-border);
  padding: 64px 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  margin-bottom: 80px;
}

.st-cta-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--st-gold);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.st-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--st-text);
  line-height: 1.2;
  margin: 0 0 12px;
}

.st-cta-body {
  font-size: 13px;
  color: var(--st-text-muted);
  max-width: 480px;
  line-height: 1.8;
  margin: 0;
}

.st-cta-btn {
  background: var(--st-gold);
  color: var(--st-bg);
  padding: 16px 36px;
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
  display: inline-block;
  text-transform: uppercase;
}

.st-cta-btn:hover { background: var(--st-gold-light); }

/* ===== FOOTER OVERRIDE ===== */
.stories-page .ig-footer {
  background: var(--st-bg);
  border-top: 1px solid var(--st-border);
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .st-hero { height: 400px; }
  .st-hero-content { padding: 0 24px 40px; }
  .st-hero-title { font-size: 42px; }
  .st-filter-bar { padding: 0 24px; }
  .st-main { padding: 40px 20px 60px; }
  .st-featured {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
  }
  .st-featured-img { height: 280px; }
  .st-featured-body { padding: 28px 24px; }
  .st-title-lg { font-size: 28px; }
  .st-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }
  .st-pullquote { padding: 40px 24px; }
  .st-pullquote blockquote { font-size: 24px; }
  .st-cta {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 24px;
    text-align: center;
  }
  .st-cta-title { font-size: 28px; }
  .st-section-header { flex-direction: column; gap: 8px; }
}
