/* ============================================
   TWO VINTAGE VAGABONDS — Master Stylesheet
   vintagevagabonds.com
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Montserrat:wght@300;400;500;600&display=swap');
/* ---- CSS Variables ---- */
:root {
  --travertine:   #F2E9D8;
  --parchment:    #FAF7F2;
  --cypress:      #1A3C34;
  --cypress-dark: #0F2420;
  --oxblood:      #6B1111;
  --crimson:      #B71C1C;
  --amber:        #FF8F00;
  --stone-mid:    #C8B99A;
  --stone-light:  #E8DECE;
  --ink:          #1C1C1C;
  --font-cinzel:    'Cinzel', serif;
  --font-garamond:  'EB Garamond', serif;
  --font-montserrat:'Montserrat', sans-serif;
  --transition: 0.35s ease;
  --shadow-soft: 0 4px 24px rgba(26,60,52,0.10);
  --shadow-card: 0 8px 40px rgba(26,60,52,0.13);
}
/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--parchment);
  color: var(--ink);
  font-family: var(--font-garamond);
  font-size: 1.125rem;
  line-height: 1.75;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 72px;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.45s ease, backdrop-filter 0.45s ease, border-color 0.45s ease;
}
.nav.nav--scrolled {
  background: rgba(15, 36, 32, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200,185,154,0.15);
}
.nav-logo {
  font-family: var(--font-cinzel);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--travertine);
  text-transform: uppercase;
}
.nav-logo span { color: var(--amber); font-style: italic; }
.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-montserrat);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-light);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--amber); }
.nav-cta {
  font-family: var(--font-montserrat);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--crimson);
  color: #fff;
  padding: 0.55rem 1.4rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--oxblood); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.25rem;
}
.nav-hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--travertine);
  transition: var(--transition);
}
/* ============================================
   HERO — Video + Text Overlay
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity 0.7s ease;
}
.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,36,32,0.45) 0%,
    rgba(15,36,32,0.30) 50%,
    rgba(15,36,32,0.80) 100%
  );
}
/* Fallback if video not supported */
.hero-video-wrap .hero-fallback {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-vineyard.jpg');
  background-size: cover;
  background-position: center;
  display: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 2rem 0 2vw;
  width: 100%;
  max-width: 1400px;  /* wider container so 40% crest col has room */
  animation: heroFade 1.4s ease forwards;
  opacity: 0;
}

/* ── Split layout: crest (40%) | line | text (60%) ── */
.hero-split {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: flex-start;
  width: 100%;
}
.hero-crest-col {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;  /* never clip the logo */
}
.hero-divider-line {
  flex: 0 0 2px;
  width: 2px;
  height: 260px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(200,168,90,0.6) 18%,
    rgba(200,168,90,0.9) 50%,
    rgba(200,168,90,0.6) 82%,
    transparent 100%
  );
  margin: 0 2.8rem;
  align-self: center;
}
.hero-text-col {
  flex: 0 0 57%;
  min-width: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@keyframes heroFade {
  to { opacity: 1; transform: translateY(0); }
  from { opacity: 0; transform: translateY(22px); }
}
.hero-eyebrow {
  font-family: var(--font-montserrat);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.1rem;
}
.hero-title {
  font-family: var(--font-cinzel);
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--travertine);
  margin-bottom: 1.2rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-shadow:
    0 2px 8px  rgba(0,0,0,0.70),
    0 4px 24px rgba(0,0,0,0.45);
}
.hero-vagabonds {
  color: var(--travertine);
  font-style: italic;
}
.hero-tagline {
  font-family: var(--font-garamond);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--stone-light);
  margin-bottom: 2rem;
  line-height: 1.5;
  text-shadow: 0 1px 6px rgba(0,0,0,0.60);
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.btn-primary {
  font-family: var(--font-montserrat);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--crimson);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  display: inline-block;
}
.btn-primary:hover { background: var(--oxblood); transform: translateY(-2px); }
.btn-secondary {
  font-family: var(--font-montserrat);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  color: var(--travertine);
  padding: 0.9rem 2.2rem;
  border: 1px solid rgba(242,233,216,0.55);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
  display: inline-block;
}
.btn-secondary:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--stone-mid);
  font-family: var(--font-montserrat);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--stone-mid), transparent);
  display: block;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
/* ============================================
   SECTION UTILITY
   ============================================ */
.section { padding: 6rem 2rem; }
.section--dark {
  background: var(--cypress-dark);
  color: var(--travertine);
}
.section--mid {
  background: var(--travertine);
}
.section--light {
  background: var(--parchment);
}
.container {
  max-width: 1160px;
  margin: 0 auto;
}
.section-label {
  font-family: var(--font-montserrat);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 0.75rem;
}
.section--dark .section-label { color: var(--amber); }
.section-title {
  font-family: var(--font-cinzel);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cypress);
  margin-bottom: 1rem;
}
.section--dark .section-title { color: var(--travertine); }
.section-intro {
  font-family: var(--font-garamond);
  font-size: 1.2rem;
  font-style: italic;
  color: #5a4a3a;
  max-width: 640px;
  line-height: 1.7;
}
.section--dark .section-intro { color: var(--stone-mid); }
.divider {
  width: 48px;
  height: 2px;
  background: var(--oxblood);
  margin: 1.25rem 0;
}
.section--dark .divider { background: var(--amber); }
/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3.5rem;
}
.about-image-stack {
  position: relative;
  height: 520px;
}
.about-image-stack .img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 400px;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}
.about-image-stack .img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 56%;
  height: 280px;
  object-fit: cover;
  box-shadow: var(--shadow-card);
  border: 6px solid var(--parchment);
}
.about-text h2 {
  font-family: var(--font-cinzel);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--cypress);
  margin-bottom: 0.5rem;
}
.about-text .host-title {
  font-family: var(--font-montserrat);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 1.25rem;
}
.about-text p {
  font-family: var(--font-garamond);
  font-size: 1.1rem;
  line-height: 1.8;
  color: #3e2e1e;
  margin-bottom: 1rem;
}
.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.credential-badge {
  font-family: var(--font-montserrat);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--travertine);
  color: var(--cypress);
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--stone-mid);
}
/* ============================================
   PHOTO RIBBON (between sections)
   ============================================ */
.photo-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 340px;
  overflow: hidden;
}
.photo-ribbon-item {
  overflow: hidden;
  position: relative;
}
.photo-ribbon-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.photo-ribbon-item:hover img { transform: scale(1.06); }
/* ============================================
   BLOG / DOSSIERS
   ============================================ */
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.blog-header .view-all {
  font-family: var(--font-montserrat);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson);
  border-bottom: 1px solid var(--crimson);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.blog-header .view-all:hover { color: var(--amber); border-color: var(--amber); }
.blog-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  gap: 1.5px;
  background: var(--stone-mid);
}
.blog-card {
  position: relative;
  overflow: hidden;
  background: var(--travertine);
  cursor: pointer;
}
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card:hover .blog-card-title { color: var(--oxblood); }
.blog-card-img-wrap {
  overflow: hidden;
  height: 220px;
}
.blog-card.blog-featured .blog-card-img-wrap { height: 310px; }
.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
}
.blog-card-tag {
  font-family: var(--font-montserrat);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 0.5rem;
}
.blog-card-title {
  font-family: var(--font-garamond);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--cypress);
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}
.blog-card.blog-featured .blog-card-title { font-size: 1.55rem; }
.blog-card-excerpt {
  font-family: var(--font-garamond);
  font-size: 0.98rem;
  color: #5a4a3a;
  line-height: 1.65;
  margin-bottom: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-meta {
  font-family: var(--font-montserrat);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #9a8a78;
  text-transform: uppercase;
}
/* ============================================
   EPISODES (DARK SECTION)
   ============================================ */
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.episode-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255,255,255,0.04);
  transition: transform var(--transition), box-shadow var(--transition);
}
.episode-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.episode-thumb {
  position: relative;
  overflow: hidden;
  height: 210px;
}
.episode-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  opacity: 0.8;
}
.episode-card:hover .episode-thumb img { transform: scale(1.05); opacity: 1; }
.episode-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  background: rgba(15,36,32,0.45);
}
.episode-card:hover .episode-play { opacity: 1; }
.episode-play-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--crimson);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.episode-play-btn svg { width: 22px; fill: #fff; margin-left: 3px; }
.episode-play-btn:hover { background: var(--amber); }
.episode-num {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  font-family: var(--font-cinzel);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  background: var(--oxblood);
  color: #fff;
  padding: 0.3rem 0.65rem;
}
.episode-body {
  padding: 1.2rem 1.25rem 1.4rem;
  border-top: 1px solid rgba(200,185,154,0.12);
}
.episode-region {
  font-family: var(--font-montserrat);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.4rem;
}
.episode-title {
  font-family: var(--font-garamond);
  font-size: 1.1rem;
  color: var(--travertine);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}
.episode-desc {
  font-family: var(--font-montserrat);
  font-size: 0.78rem;
  color: var(--stone-mid);
  line-height: 1.6;
}
.episodes-cta {
  text-align: center;
  margin-top: 2.5rem;
}
/* ============================================
   FULL-BLEED QUOTE BREAK
   ============================================ */
.quote-break {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.quote-break-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/illus-vineyard.jpg');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  filter: brightness(0.30) sepia(0.15);
}
.quote-break-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 740px;
  padding: 2rem 2rem;
}
.quote-break blockquote {
  font-family: var(--font-garamond);
  font-style: italic;
  font-size: clamp(1.55rem, 3.5vw, 2.2rem);
  color: var(--travertine);
  line-height: 1.45;
  margin-bottom: 1.2rem;
}
.quote-break cite {
  font-family: var(--font-montserrat);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  font-style: normal;
}
/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.newsletter-text .section-title { color: var(--cypress); }
.newsletter-text p {
  font-family: var(--font-garamond);
  font-size: 1.1rem;
  color: #4a3828;
  line-height: 1.75;
  margin-top: 1rem;
}
.newsletter-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: flex; gap: 0.75rem; }
.form-row input,
.newsletter-form input[type="email"] {
  font-family: var(--font-montserrat);
  font-size: 0.85rem;
  background: var(--parchment);
  border: 1px solid var(--stone-mid);
  color: var(--cypress-dark);
  padding: 0.85rem 1.1rem;
  flex: 1;
  outline: none;
  transition: border-color var(--transition);
}
.form-row input:focus,
.newsletter-form input:focus {
  border-color: var(--cypress);
}
.newsletter-form input::placeholder { color: #9a8a78; }
.newsletter-note {
  font-family: var(--font-montserrat);
  font-size: 0.65rem;
  color: #9a8a78;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--cypress-dark);
  padding: 4rem 2rem 2rem;
  color: var(--stone-mid);
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .footer-logo {
  font-family: var(--font-cinzel);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  color: var(--travertine);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.footer-brand .footer-logo span { color: var(--amber); }
.footer-brand p {
  font-family: var(--font-garamond);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--stone-mid);
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--font-montserrat);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--travertine);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a {
  font-family: var(--font-montserrat);
  font-size: 0.82rem;
  color: var(--stone-mid);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--amber); }
.footer-bottom {
  max-width: 1160px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200,185,154,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-family: var(--font-montserrat);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #6a5a4a;
}
/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cypress-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-cinzel);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: var(--travertine);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--amber); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  z-index: 10;            /* must clear the stacked menu links */
  font-family: var(--font-montserrat);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone-mid);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem 1rem;  /* larger tap target */
  transition: color var(--transition);
}
.mobile-close:hover { color: var(--amber); }
/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image-stack { height: 320px; }
  .about-image-stack .img-main { width: 80%; height: 280px; }
  .about-image-stack .img-accent { width: 55%; height: 200px; }
  .photo-ribbon { grid-template-columns: repeat(2, 1fr); height: 360px; }
  .blog-grid { grid-template-columns: 1fr; background: transparent; gap: 1.5rem; }
  .episodes-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .quote-break-bg { background-attachment: scroll; }
}
@media (max-width: 600px) {
  .section { padding: 4rem 1.25rem; }
  .hero-tagline { font-size: 1.1rem; }
  .photo-ribbon { grid-template-columns: 1fr 1fr; height: 240px; }
  .episodes-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   HERO CREST
   The full shield logo lives here — large,
   centred over the video, as a cinematic
   title-card. Never forced into the nav.
   ============================================ */

.hero-crest {
  display: block;
  width: clamp(185px, 26vw, 265px);
  height: auto;
  margin: 0 auto 2rem;
  /* Scale-reveal pairs with parent heroFade for a compound entrance */
  animation: crestScale 2s cubic-bezier(0.22, 1, 0.36, 1) both;
  filter: drop-shadow(0 14px 52px rgba(0,0,0,0.65));
}

@keyframes crestScale {
  0%   { transform: scale(0.84) rotate(-1.5deg); }
  65%  { transform: scale(1.03) rotate( 0.4deg); }
  100% { transform: scale(1.00) rotate( 0deg);   }
}

/* Footer monogram */
.footer-logo-img {
  display: block;
  height: 56px;
  width: auto;
  margin-bottom: 0.75rem;
}

/* Screen-reader-only — keeps h1 for SEO without visual duplication */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   HERO — Title & Logo Mark
   ============================================ */

/* Italic amber "Vagabonds" in h1 */
.hero-vagabonds {
  font-style: italic;
  color: var(--travertine);
}

/* Logo mark below the title */
.hero-logo-mark {
  display: block;
  /* Fills crest column — NO clamp, NO max-width cap */
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  filter:
    drop-shadow(0 6px 24px rgba(0,0,0,0.70))
    drop-shadow(0 2px 6px rgba(0,0,0,0.50));
  opacity: 0.97;
}


/* ============================================
   ILLUSTRATION TREATMENT
   Watercolor illustrations — warm framing,
   no aggressive object-fit cropping
   ============================================ */
img.illus {
  object-fit: cover;
  object-position: center top;
}
.about-image-stack img.illus {
  border-radius: 2px;
  box-shadow: 0 6px 28px rgba(60,40,20,0.28), 0 2px 8px rgba(60,40,20,0.15);
}

/* ── Ribbon captions ── */
.photo-ribbon-item {
  position: relative;
}
.ribbon-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(20,14,8,0.78) 0%, transparent 100%);
  color: var(--travertine);
  font-family: var(--font-cinzel);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 1.2rem 0.5rem 0.55rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.photo-ribbon-item:hover .ribbon-caption { opacity: 1; }

/* ── Episodes banner ── */
.episodes-banner {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 2.2rem auto 3rem;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}
.episodes-banner-img {
  width: 100%;
  height: auto;
  display: block;
}
.episodes-banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(12,8,4,0.82) 0%, transparent 60%);
  padding: 2.5rem 2rem 1.2rem;
  text-align: center;
}
.episodes-banner-overlay p {
  font-family: var(--font-garamond);
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: var(--travertine);
  letter-spacing: 0.04em;
  margin: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.70);
}

/* ============================================
   DISPATCH (BLOG POST) PAGE STYLES
   ============================================ */

.dispatch-header {
  background: var(--cypress-dark);
  padding: 5.5rem 2rem 3rem;
}
/* ── Logo | bar | text layout ── */
.dispatch-header-inner {
  display: flex;
  align-items: center;   /* vertically balance logo between title and text */
  gap: 0;
  max-width: 920px;
  margin: 0 auto;
}
.dispatch-header-logo {
  /* Landscape coat of arms — 450px (+150% of original 200px) */
  width: 450px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
  margin-left: calc(-1.5rem - 250px);  /* grows leftward, right edge held */
  filter:
    drop-shadow(0 4px 14px rgba(0,0,0,0.65))
    drop-shadow(0 1px 4px rgba(0,0,0,0.45));
}
.dispatch-header-bar {
  width: 1px;
  min-height: 120px;
  align-self: stretch;
  background: rgba(200, 185, 154, 0.40);
  margin: 0 2rem;
  flex-shrink: 0;
}
.dispatch-header-text {
  flex: 1;
  min-width: 0;
  text-align: left;
}
/* back link */
.dispatch-back {
  display: inline-block;
  font-family: var(--font-montserrat);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-mid);
  margin-bottom: 0.9rem;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.dispatch-back:hover { color: var(--amber); border-bottom-color: var(--amber); }
/* title */
.dispatch-title {
  font-family: var(--font-garamond);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--travertine);
  line-height: 1.15;
  margin-bottom: 0.7rem;
  max-width: none;
}
/* subtitle */
.dispatch-subtitle {
  font-family: var(--font-garamond);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--stone-mid);
  margin-bottom: 1.2rem;
}
/* meta sits in the text column */
.dispatch-meta {
  font-family: var(--font-montserrat);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone-mid);
  display: flex;
  gap: 0.75rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.dispatch-meta span { opacity: 0.7; }
/* tags below the inner block, centred */
.dispatch-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.8rem;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
/* mobile: hide logo + bar, text goes full-width */
@media (max-width: 680px) {
  .dispatch-header-logo,
  .dispatch-header-bar { display: none; }
  .dispatch-header-inner { display: block; }
  .dispatch-header-text { text-align: left; }
  .dispatch-meta { justify-content: flex-start; }
}
.dispatch-tag {
  font-family: var(--font-montserrat);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(200,185,154,0.12);
  color: var(--stone-mid);
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(200,185,154,0.25);
}
.dispatch-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}
.dispatch-body p {
  font-family: var(--font-garamond);
  font-size: 1.2rem;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.dispatch-body h2 {
  font-family: var(--font-garamond);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--cypress);
  margin: 3rem 0 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--travertine);
}
.dispatch-body a {
  color: var(--oxblood);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(107,17,17,0.35);
  transition: color var(--transition), text-decoration-color var(--transition);
}
.dispatch-body a:hover {
  color: var(--amber);
  text-decoration-color: var(--amber);
}
.dispatch-body strong { font-weight: 600; color: var(--cypress); }
.dispatch-body em { font-style: italic; color: var(--ink); }
.dispatch-lead {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--cypress-dark);
  border-left: 3px solid var(--amber);
  padding-left: 1.4rem;
  margin-bottom: 2.5rem;
}
.dispatch-wine-corner {
  background: var(--travertine);
  border-left: 4px solid var(--oxblood);
  padding: 2rem 2rem 0.5rem;
  margin: 2.5rem 0;
}
.dispatch-wine-corner h3 {
  font-family: var(--font-garamond);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--oxblood);
  margin-bottom: 1rem;
}
.dispatch-bio {
  border-top: 1px solid var(--stone-mid);
  padding-top: 2rem;
  margin-top: 3rem;
  font-size: 1rem;
  font-style: italic;
  color: #666;
}
.dispatch-sources {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--travertine);
}
.dispatch-sources h2 {
  font-size: 1.1rem;
  margin-top: 0;
}
.dispatch-sources ul {
  list-style: none;
  padding: 0;
}
.dispatch-sources li {
  font-family: var(--font-montserrat);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: #666;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(200,185,154,0.3);
}
.dispatch-sources li a {
  color: var(--oxblood) !important;
  text-decoration: none;
}
.dispatch-sources li a:hover { color: var(--amber) !important; }

/* ---- Blog card link styles ---- */
.blog-card-link { display: block; }
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--oxblood); }
.read-more-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-montserrat);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oxblood);
  border-bottom: 1px solid rgba(107,17,17,0.35);
  transition: color var(--transition), border-color var(--transition);
}
.read-more-link:hover { color: var(--amber); border-bottom-color: var(--amber); }

/* video plays once and freezes — no loop overlay needed */

/* ============================================
   FOOTER VV LOGO — shows circular mark from
   the logo-sheets SVG via background crop
   ============================================ */
.footer-logo-vv {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--cypress-dark); /* fills 1px gap outside SVG circle */
  background-image: url('../images/VV_logo_sheets.svg');
  background-size: 118px auto;
  background-position: -1px -1px;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-bottom: 0.75rem;
}

/* ============================================
   DESKTOP LEGIBILITY — hero text & nav
   Applied only above 600px (mobile is fine as-is)
   Three-layer approach:
   1. Text shadows on hero copy
   2. hero-title and hero-vagabonds: var(--travertine) parchment throughout
   3. Top vignette darkens the nav zone
   4. Nav text shadow when transparent
   ============================================ */

/* Top vignette — darkens hero where the transparent nav floats */
.hero-video-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

@media (min-width: 601px) {

  /* Eyebrow tagline */
  .hero-eyebrow {
    text-shadow: 0 1px 8px rgba(0,0,0,0.75);
  }

  /* Title — parchment on all viewports, no exceptions */
  .hero-title,
  .hero-title .hero-vagabonds {
    color: var(--travertine);
  }

  /* Italic tagline below title */
  .hero-tagline {
    text-shadow: 0 1px 6px rgba(0,0,0,0.60);
  }

  /* Nav links: bolder + shadow when floating over video */
  .nav-links a {
    font-weight: 600;
  }
  .nav:not(.nav--scrolled) .nav-logo {
    text-shadow: 0 1px 10px rgba(0,0,0,0.80);
  }
  .nav:not(.nav--scrolled) .nav-links a {
    text-shadow: 0 1px 8px rgba(0,0,0,0.80);
  }
  .nav:not(.nav--scrolled) .nav-cta {
    /* CTA button already has solid bg — just subtle shadow */
    box-shadow: 0 2px 12px rgba(0,0,0,0.40);
  }
}

/* ============================================
   HERO SPLIT — MOBILE STACK
   Below 768px: stack crest on top, text below,
   hide divider line, center everything
   ============================================ */

@media (max-width: 768px) {
  .hero-split {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-crest-col {
    flex: 0 0 auto;
    margin-bottom: 0.75rem;
  }
  .hero-divider-line {
    display: none;
  }
  .hero-text-col {
    flex: 0 0 auto;
    align-items: center;
    text-align: center;
    white-space: normal;
  }
  .hero-title {
    white-space: normal;
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero-logo-mark {
    width: clamp(200px, 72vw, 320px);
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-content {
    padding: 0 1.25rem;
  }
}
