/* =============================================
   HOP STEW — Static Site Stylesheet
   ============================================= */

/* Fonts are loaded via <link> in the HTML head (with preconnect) */

/* --- Design Tokens --- */
:root {
  --red:        #a12527;
  --red-dark:   #7a1b1d;
  --gold:       #b57c15;
  --dark:       #27241d;
  --gray1:      #423d33;
  --gray2:      #504a40;
  --gray3:      #625d52;
  --light:      #e8e6e1;
  --off-white:  #faf9f7;
  --white:      #ffffff;

  --font-head:  'Lora', serif;
  --font-body:  'Inter', sans-serif;

  --radius:     6px;
  --max-w:      1290px;
  --section-py: 5rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray1);
  background: var(--off-white);
}

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

a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* --- Utility --- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: var(--radius);
  padding: 15px 36px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.btn:hover, .btn:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
}

/* Fade-up reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  padding: 1rem 0 0.75rem;
  transition: box-shadow 0.2s, padding 0.3s ease;
}

.site-header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.45);
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.header-top {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 350px;
  width: auto;
  transition: height 0.3s ease;
}

.site-header.scrolled .header-logo img {
  height: 70px;
}

.header-socials {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.social-icon:hover, .social-icon:focus-visible {
  color: var(--gold);
  background: rgba(255,255,255,0.08);
}

.social-icon svg { width: 18px; height: 18px; fill: currentColor; }

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--gold);
  border-color: var(--gold);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../images/headerbg.jpg') center/cover no-repeat;
  background-image: image-set(
    url('../images/headerbg.avif') type('image/avif'),
    url('../images/headerbg.webp') type('image/webp'),
    url('../images/headerbg.jpg') type('image/jpeg')
  );
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.60);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem;
  max-width: 860px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--light);
  margin-bottom: 2rem;
  max-width: 640px;
  margin-inline: auto;
}

/* =============================================
   PLATFORM CARDS  (id="listennow")
   ============================================= */
.platforms {
  background: var(--off-white);
  padding: var(--section-py) 0;
}

.platforms h2 {
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 2.5rem;
}

.cards-grid {
  display: flex;
  gap: 1.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  width: 260px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: var(--dark);
}

.platform-card:hover, .platform-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
  color: var(--dark);
}

.platform-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
}

.platform-card span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  position: relative;
  background: url('../images/bg.jpg') center/cover no-repeat;
  background-image: image-set(
    url('../images/bg.avif') type('image/avif'),
    url('../images/bg.webp') type('image/webp'),
    url('../images/bg.jpg') type('image/jpeg')
  );
  padding: var(--section-py) 0;
  overflow: hidden;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(39, 36, 29, 0.88);
}

.about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.about-text p {
  color: var(--light);
  margin-bottom: 1rem;
}

.about-extended {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.about-extended p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-extended p:last-child {
  margin-bottom: 0;
}

.stat {
  margin-top: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light);
}

.about-photo img {
  border-radius: 12px;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: top center;
}

/* =============================================
   FEATURED VIDEOS
   ============================================= */
.videos {
  background: var(--light);
  padding: var(--section-py) 0;
}

.section-heading {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 2.5rem;
  text-align: center;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.video-item figcaption {
  margin-top: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--gray2);
  line-height: 1.4;
}

.video-item figcaption strong {
  color: var(--dark);
  font-weight: 600;
  display: block;
  margin-bottom: 0.15rem;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
}

.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.videos-cta {
  text-align: center;
}

/* =============================================
   TWITCH
   ============================================= */
.twitch-section {
  background: var(--dark);
  padding: var(--section-py) 0;
}

.twitch-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.twitch-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 1.25rem;
}

.twitch-text p {
  color: var(--light);
  margin-bottom: 1.75rem;
}

.twitch-image img {
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
}

/* =============================================
   PODOMATIC
   ============================================= */
.podomatic-section {
  background: var(--off-white);
  padding: var(--section-py) 0;
  text-align: center;
}

.podomatic-section .section-heading {
  margin-bottom: 0.75rem;
}

.podomatic-section .podo-sub {
  color: var(--gray2);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-inline: auto;
}

.podomatic-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.podomatic-logo img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
}

.podomatic-embeds {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.podo-episode strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--dark);
}

.podo-embed-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
}

.podo-embed-wrap iframe {
  display: block;
  width: 100%;
  max-width: 504px;
  height: 208px;
  border: 0;
}

.podomatic-cta {
  margin-top: 2rem;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--dark);
  padding: 3rem 0 2rem;
  text-align: center;
  color: var(--light);
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 90px;
  width: auto;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-credits {
  font-size: 0.875rem;
  color: var(--gray3);
  line-height: 1.8;
}

.footer-credits a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-credits a:hover, .footer-credits a:focus-visible {
  color: var(--white);
}

/* =============================================
   SHOP PAGE
   ============================================= */
.shop-hero {
  background: url('../images/headerbg.jpg') center/cover no-repeat;
  background-image: image-set(
    url('../images/headerbg.avif') type('image/avif'),
    url('../images/headerbg.webp') type('image/webp'),
    url('../images/headerbg.jpg') type('image/jpeg')
  );
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.shop-hero .hero-overlay {
  background: rgba(0,0,0,0.65);
}

.shop-hero .hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
}

.shop-body {
  background: var(--off-white);
  padding: var(--section-py) 0;
  text-align: center;
}

.shop-body h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 1rem;
}

.shop-body p {
  color: var(--gray2);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.shop-cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.shop-back {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shop-back:hover, .shop-back:focus-visible { color: var(--red-dark); }

/* =============================================
   EPISODES PAGE
   ============================================= */
.episodes-hero {
  background: url('../images/headerbg.jpg') center/cover no-repeat;
  background-image: image-set(
    url('../images/headerbg.avif') type('image/avif'),
    url('../images/headerbg.webp') type('image/webp'),
    url('../images/headerbg.jpg') type('image/jpeg')
  );
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.episodes-hero .hero-overlay {
  background: rgba(0,0,0,0.65);
}

.episodes-hero .hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
}

.episodes-body {
  background: var(--off-white);
  padding: var(--section-py) 0;
  text-align: center;
}

.episodes-body .section-heading {
  margin-bottom: 0.75rem;
}

.episodes-body .episodes-sub {
  color: var(--gray2);
  margin-bottom: 3rem;
  max-width: 560px;
  margin-inline: auto;
}

.episodes-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: left;
}

.episode-card {
  background: var(--white);
  border: 1px solid rgba(98, 93, 82, 0.2);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.episode-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  border-color: rgba(181, 124, 21, 0.3);
}

.episode-header {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.episode-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-right: 2rem;
  border-right: 1px solid rgba(98, 93, 82, 0.15);
}

.episode-number {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.episode-date {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray3);
}

.episode-duration {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--gold);
}

.episode-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.episode-title {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.25;
}

.episode-notes {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray2);
}

.episode-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
  align-self: flex-start;
}

.episode-link:hover,
.episode-link:focus-visible {
  color: var(--red-dark);
}

.episode-embed {
  margin-top: 0.5rem;
}

.episode-embed .podo-embed-wrap {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
}

.episode-embed .podo-embed-wrap iframe {
  display: block;
  width: 100%;
  max-width: 504px;
  margin-inline: auto;
  height: 208px;
  border: 0;
}

.episodes-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.episodes-back {
  display: inline-block;
  margin-top: 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.episodes-back:hover,
.episodes-back:focus-visible {
  color: var(--red-dark);
}

/* =============================================
   ABOUT PAGE
   ============================================= */

/* --- Hero --- */
.about-hero {
  background: url('../images/headerbg.jpg') center/cover no-repeat;
  background-image: image-set(
    url('../images/headerbg.avif') type('image/avif'),
    url('../images/headerbg.webp') type('image/webp'),
    url('../images/headerbg.jpg') type('image/jpeg')
  );
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-hero .hero-overlay {
  background: rgba(0, 0, 0, 0.65);
}

.about-hero .hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
}

/* --- Bio Section --- */
.about-bio {
  background: var(--off-white);
  padding: var(--section-py) 0;
}

.about-bio-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-bio-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--dark);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.bio-lede {
  font-size: 1.15rem;
  color: var(--gray1);
  margin-bottom: 1rem;
}

.about-bio-text p {
  color: var(--gray1);
  margin-bottom: 1rem;
}

.bio-collab-heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.bio-artists {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.bio-artists li {
  display: inline-block;
  padding: 6px 16px;
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  transition: border-color 0.2s, color 0.2s;
}

.bio-artists li:hover {
  border-color: var(--gold);
  color: var(--red);
}

.about-bio-photo img {
  border-radius: 12px;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: top center;
}

/* --- Timeline Section --- */
.about-timeline {
  background: var(--dark);
  padding: var(--section-py) 0;
}

.about-timeline .section-heading {
  color: var(--white);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 0;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--gold);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 3rem 2.5rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-marker {
  position: absolute;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--dark);
  box-shadow: 0 0 0 2px var(--gold);
  z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-marker {
  right: -7px;
}

.timeline-item:nth-child(even) .timeline-marker {
  left: -7px;
}

.timeline-content {
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.timeline-item:nth-child(odd) .timeline-content {
  border-left: none;
  border-right: 3px solid var(--gold);
}

.timeline-year {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.timeline-content h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.timeline-content p {
  color: var(--light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.timeline-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.timeline-content a:hover,
.timeline-content a:focus-visible {
  color: var(--white);
}

/* --- Gear Section --- */
.about-gear {
  background: var(--off-white);
  padding: var(--section-py) 0;
}

.gear-sub {
  text-align: center;
  color: var(--gray2);
  max-width: 500px;
  margin: -1.5rem auto 2.5rem;
  font-size: 0.95rem;
}

.gear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.gear-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.gear-card:hover,
.gear-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

.gear-icon {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.gear-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.gear-card p {
  color: var(--gray2);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* --- Press Quotes Section --- */
.about-quotes {
  background: var(--light);
  padding: var(--section-py) 0;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.quote-card {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.quote-mark {
  display: block;
  font-family: var(--font-head);
  font-size: 4rem;
  line-height: 0.8;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.quote-card p {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.quote-card cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
}

/* --- Booking CTA Section --- */
.about-booking {
  background: var(--dark);
  padding: var(--section-py) 0;
  text-align: center;
}

.booking-inner {
  max-width: 640px;
  margin-inline: auto;
}

.booking-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.booking-inner p {
  color: var(--light);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.booking-cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Outline button variant */
.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* Bio link on homepage */
.about-bio-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.about-bio-link:hover,
.about-bio-link:focus-visible {
  color: var(--white);
}

/* --- About page responsive (1024px+) --- */
@media (max-width: 1024px) {
  .about-bio-inner { grid-template-columns: 1fr; }
  .about-bio-photo { order: -1; }

  .timeline-line {
    left: 20px;
    transform: none;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding: 0 0 2rem 3rem;
  }

  .timeline-item .timeline-marker {
    left: 13px !important;
    right: auto !important;
  }

  .timeline-content {
    border-left: 3px solid var(--gold) !important;
    border-right: none !important;
  }

  .gear-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes-grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
}

@media (max-width: 767px) {
  .booking-cta-row { flex-direction: column; align-items: center; }
  .gear-grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
}

/* =============================================
   VIDEOS PAGE
   ============================================= */
.page-hero {
  background: url('../images/headerbg.jpg') center/cover no-repeat;
  background-image: image-set(
    url('../images/headerbg.avif') type('image/avif'),
    url('../images/headerbg.webp') type('image/webp'),
    url('../images/headerbg.jpg') type('image/jpeg')
  );
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero .hero-overlay {
  background: rgba(0, 0, 0, 0.65);
}

.page-hero .hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
}

.breadcrumb {
  background: var(--off-white);
  padding: 1.25rem 0 0;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray3);
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--gray3);
}

.breadcrumb a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumb [aria-current="page"] {
  color: var(--dark);
  font-weight: 600;
}

.videos-page {
  background: var(--light);
  padding: 2.5rem 0 var(--section-py);
}

.video-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.video-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.video-card:hover,
.video-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

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

.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-card-thumb img {
  transform: scale(1.03);
}

.video-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.2s;
}

.video-card:hover .video-card-play {
  background: rgba(161, 37, 39, 0.45);
}

.video-card-play svg {
  width: 64px;
  height: 64px;
  fill: var(--white);
  opacity: 0.9;
  transition: opacity 0.2s, transform 0.2s;
}

.video-card:hover .video-card-play svg {
  opacity: 1;
  transform: scale(1.1);
}

.video-card-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.80);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.video-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.video-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.video-card-featured {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.video-card-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--gray2);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}

.video-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.video-card-date {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--gray3);
  letter-spacing: 0.5px;
}

.video-card-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.video-card-link:hover,
.video-card-link:focus-visible {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.videos-page-cta {
  text-align: center;
  padding-top: 1rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  :root { --section-py: 3.5rem; }

  .about-inner,
  .twitch-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-photo { order: -1; }

  .videos-grid {
    gap: 1.5rem;
  }

  .video-cards-grid {
    gap: 1.5rem;
  }

  .podomatic-embeds {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  :root { --section-py: 2.5rem; }

  .header-logo img { height: 280px; }
  .site-header.scrolled .header-logo img { height: 56px; }
  .header-socials { position: static; }
  .header-top {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero { min-height: 420px; }

  .platform-card { width: 100%; max-width: 320px; }

  .videos-grid { grid-template-columns: 1fr; }

  .video-cards-grid { grid-template-columns: 1fr; }

  .twitch-inner,
  .about-inner {
    grid-template-columns: 1fr;
  }

  .podomatic-embeds { grid-template-columns: 1fr; }

  .shop-cta-row { flex-direction: column; align-items: center; }

  .episode-card {
    padding: 1.5rem;
  }

  .episode-header {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .episode-meta {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    padding-right: 0;
    padding-bottom: 1rem;
    border-right: none;
    border-bottom: 1px solid rgba(98, 93, 82, 0.15);
  }

  .episode-meta .episode-number::after {
    content: "·";
    margin-left: 0.5rem;
    color: var(--gray3);
  }

  .episode-meta .episode-date::after {
    content: "·";
    margin-left: 0.5rem;
    color: var(--gray3);
  }

  .episode-embed .podo-embed-wrap iframe {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .episode-header {
    grid-template-columns: 160px 1fr;
    gap: 1.5rem;
  }
}
