/*
Theme Name: Vancewood
Theme URI: https://vancewood.com
Author: Vance Wood
Author URI: https://vancewood.com
Description: A personal portfolio theme for Vance Wood — Investor, Entrepreneur, Author, Podcaster, and Golf Enthusiast. Editorial Estate design with warm ivory, deep forest green, burnished gold, and elegant serif typography.
Version: 1.7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vancewood
Tags: one-column, custom-menu, featured-images, full-width-template
*/

/* ===================================================================
   CSS RESET & BASE
   =================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

::selection {
  background-color: rgba(181, 143, 72, 0.3);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* ===================================================================
   CSS CUSTOM PROPERTIES
   =================================================================== */
:root {
  /* Colors */
  --color-ivory: #f0ead6;
  --color-parchment: #e8e0cc;
  --color-forest: #1a3a2a;
  --color-forest-light: #2a5a3a;
  --color-gold: #b58f48;
  --color-gold-light: #c9a85c;
  --color-charcoal: #2d2a26;
  --color-charcoal-light: #6b6560;
  --color-white: #ffffff;

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Source Serif 4', serif;
  --font-label: 'Cormorant Garamond', serif;

  /* Spacing */
  --container-max: 1280px;
  --section-py: 6rem;
  --section-py-lg: 8rem;
}

/* ===================================================================
   TYPOGRAPHY
   =================================================================== */
body {
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background-color: var(--color-ivory);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }
.font-label { font-family: var(--font-label); }

.section-label {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* ===================================================================
   LAYOUT
   =================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ===================================================================
   NAVBAR
   =================================================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  background: transparent;
}

.site-nav.scrolled {
  background: rgba(240, 234, 214, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 3.5rem;
}

.nav-logo img {
  height: 3.5rem;
  width: auto;
  transition: opacity 0.5s ease;
}

.nav-logo .nav-logo-black {
  display: none;
}

.site-nav.scrolled .nav-logo .nav-logo-white {
  display: none;
}

.site-nav.scrolled .nav-logo .nav-logo-black {
  display: block;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-family: var(--font-label);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

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

.site-nav.scrolled .nav-links a {
  color: var(--color-charcoal);
}

.site-nav.scrolled .nav-links a:hover {
  color: var(--color-gold);
}

/* Mobile menu toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.3s ease;
}

.site-nav.scrolled .nav-toggle span {
  background: var(--color-forest);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: rgba(240, 234, 214, 0.98);
  backdrop-filter: blur(12px);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}

.mobile-menu.open {
  max-height: 400px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 1023px) {
  .mobile-menu {
    display: block;
  }
}

.mobile-menu ul {
  list-style: none;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu a {
  font-family: var(--font-label);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--color-gold);
}

/* ===================================================================
   HERO SECTION
   =================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-subtitle {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.hero-title-accent {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 500;
  font-style: italic;
  color: var(--color-gold-light);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hero-divider {
  width: 3rem;
  height: 1px;
  background: var(--color-gold);
  margin: 0 auto 2rem;
}

.hero-description {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--color-white);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
}

.scroll-indicator .line {
  width: 1px;
  height: 2rem;
  background: rgba(255, 255, 255, 0.4);
}

.scroll-indicator .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===================================================================
   ABOUT SECTION
   =================================================================== */
.about-section {
  background: var(--color-ivory);
  padding: var(--section-py) 0;
}

@media (min-width: 768px) {
  .about-section {
    padding: var(--section-py-lg) 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-charcoal);
}

.section-header .divider {
  width: 3rem;
  height: 1px;
  background: var(--color-gold);
  margin: 1.5rem auto 0;
}

.about-grid {
  display: grid;
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.about-photo-wrapper {
  position: relative;
  padding: 0.75rem;
  border: 1px solid rgba(181, 143, 72, 0.3);
}

.about-photo-wrapper img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-photo-frame {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(181, 143, 72, 0.2);
  z-index: -1;
}

.about-text h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.125rem;
  color: var(--color-charcoal-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.tag {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(45, 42, 38, 0.2);
  color: var(--color-charcoal-light);
  transition: all 0.3s ease;
}

.tag:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* ===================================================================
   BUSINESS SECTION
   =================================================================== */
.business-section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .business-section {
    padding: 9rem 0;
  }
}

.business-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.business-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 58, 42, 0.9);
}

.business-section .container {
  position: relative;
  z-index: 10;
}

.business-section .section-header h2 {
  color: var(--color-white);
}

.business-section .section-header p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 42rem;
  margin: 2rem auto 0;
  line-height: 1.7;
}

.ventures-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .ventures-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.venture-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  transition: all 0.5s ease;
}

.venture-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(181, 143, 72, 0.3);
}

.venture-card .icon {
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  width: 2rem;
  height: 2rem;
}

.venture-card .logo-img {
  height: 3.5rem;
  width: auto;
  margin-bottom: 1.25rem;
}

.venture-card h3 {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.venture-card p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* ===================================================================
   BIOGRAPHY SECTION
   =================================================================== */
.section-biography {
  background: var(--color-ivory);
  padding: var(--section-py) 0;
}

@media (min-width: 768px) {
  .section-biography {
    padding: var(--section-py-lg) 0;
  }
}

.biography-intro {
  display: grid;
  gap: 3rem;
  max-width: 64rem;
  margin: 0 auto 4rem;
  align-items: center;
}

@media (min-width: 768px) {
  .biography-intro {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }
}

.biography-photo {
  position: relative;
}

.biography-photo .photo-frame {
  position: relative;
  padding: 0.75rem;
  border: 1px solid rgba(181, 143, 72, 0.3);
}

.biography-photo .photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.biography-photo .photo-offset {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(181, 143, 72, 0.2);
  z-index: -1;
}

.biography-text h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
}

.biography-text p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-charcoal-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.biography-text .bio-note {
  color: var(--color-gold);
  font-style: italic;
}

/* Timeline */
.biography-timeline {
  position: relative;
  max-width: 50rem;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(181, 143, 72, 0.3);
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .timeline-line {
    left: 1rem;
  }
}

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

.timeline-left {
  left: 0;
  text-align: right;
}

.timeline-right {
  left: 50%;
  text-align: left;
}

@media (max-width: 767px) {
  .timeline-item {
    width: 100%;
    left: 0;
    text-align: left;
    padding-left: 3rem;
    padding-right: 0;
  }
}

.timeline-dot {
  position: absolute;
  top: 2rem;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--color-gold);
  border-radius: 50%;
}

.timeline-left .timeline-dot {
  right: -0.375rem;
}

.timeline-right .timeline-dot {
  left: -0.375rem;
}

@media (max-width: 767px) {
  .timeline-dot {
    left: 0.625rem;
    right: auto;
  }
}

.timeline-content .timeline-period {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.timeline-content h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-charcoal);
  margin-bottom: 0.75rem;
}

.timeline-content p:not(.timeline-period) {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-charcoal-light);
  line-height: 1.7;
}

/* ===================================================================
   GOLF SECTION
   =================================================================== */
.golf-section {
  background: var(--color-parchment);
  padding: var(--section-py) 0;
}

@media (min-width: 768px) {
  .golf-section {
    padding: var(--section-py-lg) 0;
  }
}

.golf-feature {
  max-width: 64rem;
  margin: 0 auto 4rem;
  position: relative;
  overflow: hidden;
}

.golf-feature img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.golf-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.golf-feature-text {
  position: absolute;
  bottom: 1.5rem;
  left: 2rem;
}

.golf-feature-text .label {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.25rem;
}

.golf-feature-text .title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-white);
}

.golf-cards {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .golf-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.golf-card {
  cursor: pointer;
}

.golf-card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.golf-card-img img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.golf-card:hover .golf-card-img img {
  transform: scale(1.05);
}

.golf-card-img .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.golf-card:hover .golf-card-img .overlay {
  opacity: 1;
}

.golf-card-img .num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-label);
  font-size: 1.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.5s ease;
}

.golf-card:hover .golf-card-img .num {
  color: var(--color-gold);
}

.golf-card .location {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.golf-card h3 {
  font-size: 1.25rem;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.golf-card:hover h3 {
  color: var(--color-forest);
}

.golf-card p {
  font-size: 0.875rem;
  color: var(--color-charcoal-light);
  line-height: 1.7;
}

/* ===================================================================
   BOOKS SECTION
   =================================================================== */
.books-section {
  background: var(--color-ivory);
  padding: var(--section-py) 0;
}

@media (min-width: 768px) {
  .books-section {
    padding: var(--section-py-lg) 0;
  }
}

.books-section .section-header p {
  font-size: 1.125rem;
  color: var(--color-charcoal-light);
  max-width: 42rem;
  margin: 2rem auto 0;
  line-height: 1.7;
}

.book-row {
  display: grid;
  gap: 2.5rem;
  max-width: 64rem;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 768px) {
  .book-row {
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
  }
}

.book-row + .book-row {
  margin-top: 6rem;
}

.book-row.reversed {
  direction: ltr;
}

@media (min-width: 768px) {
  .book-row.reversed {
    grid-template-columns: 3fr 2fr;
  }

  .book-row.reversed .book-cover-wrapper {
    order: 2;
  }

  .book-row.reversed .book-text {
    order: 1;
  }
}

.book-cover-wrapper {
  position: relative;
  max-width: 280px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .book-cover-wrapper {
    margin: 0;
  }
}

.book-cover {
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.book-cover img {
  width: 100%;
  display: block;
}

.book-shadow {
  position: absolute;
  bottom: -0.75rem;
  left: 1rem;
  right: 1rem;
  height: 1.5rem;
  background: rgba(0, 0, 0, 0.15);
  filter: blur(16px);
  border-radius: 50%;
}

.book-text .book-category {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.book-text h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
}

.book-text .book-subtitle {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-charcoal-light);
  margin-bottom: 1.5rem;
}

.book-text p {
  font-size: 1.125rem;
  color: var(--color-charcoal-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.book-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.book-status .line {
  width: 2rem;
  height: 1px;
  background: var(--color-gold);
}

.book-status .text {
  font-family: var(--font-label);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* Pull quote */
.pull-quote {
  max-width: 48rem;
  margin: 5rem auto 0;
  border-left: 2px solid var(--color-gold);
  padding-left: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pull-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-style: italic;
  color: var(--color-charcoal);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.pull-quote cite {
  font-family: var(--font-label);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  color: var(--color-charcoal-light);
  font-style: normal;
}

/* ===================================================================
   PODCAST SECTION
   =================================================================== */
.podcast-section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  background: var(--color-forest);
}

@media (min-width: 768px) {
  .podcast-section {
    padding: 9rem 0;
  }
}

.podcast-section .container {
  position: relative;
  z-index: 10;
}

.podcast-section .section-header h2 {
  color: var(--color-white);
}

.podcast-grid {
  display: grid;
  gap: 2.5rem;
  max-width: 64rem;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 768px) {
  .podcast-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.podcast-img-wrapper {
  position: relative;
  overflow: hidden;
}

.podcast-img-wrapper img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.podcast-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 58, 42, 0.2);
}

.podcast-mic-icon {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(181, 143, 72, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.podcast-mic-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-white);
}

.podcast-text .podcast-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.podcast-text h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.podcast-text p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* Platform Badges */
.podcast-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  transition: border-color 0.3s ease;
}

.platform-badge:hover {
  border-color: rgba(181, 143, 72, 0.5);
}

.platform-badge svg {
  color: var(--color-gold);
}

.platform-badge span {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

/* Embedded Player Placeholder */
.podcast-player {
  max-width: 64rem;
  margin: 2.5rem auto 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.player-now-playing {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.player-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.player-art {
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
  background: var(--color-forest-light);
  border: 1px solid rgba(181, 143, 72, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-info {
  flex: 1;
  min-width: 0;
}

.player-label {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.player-info h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-show {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
}

.player-controls {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .player-controls {
    display: flex;
  }
}

.ctrl-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: color 0.3s;
}

.ctrl-btn:hover {
  color: var(--color-white);
}

.ctrl-play {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--color-gold);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.ctrl-play:hover {
  background: var(--color-gold-light);
}

.ctrl-play svg {
  color: var(--color-white);
  margin-left: 2px;
}

.player-progress {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.player-progress .time {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.progress-track {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--color-gold);
  border-radius: 2px;
}

/* Episode List */
.episode-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s;
  cursor: pointer;
}

.episode-row:hover {
  background: rgba(255, 255, 255, 0.05);
}

.episode-number {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}

.episode-row:hover .episode-number {
  border-color: rgba(181, 143, 72, 0.5);
}

.episode-number span {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}

.episode-row:hover .episode-number span {
  color: var(--color-gold);
}

.episode-info {
  flex: 1;
  min-width: 0;
}

.episode-info h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-white);
  transition: color 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.episode-row:hover .episode-info h5 {
  color: var(--color-gold);
}

.episode-info p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.episode-duration {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.episode-play {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.episode-row:hover .episode-play {
  opacity: 1;
}

.episode-play svg {
  color: var(--color-gold);
  margin-left: 1px;
}

.player-footer {
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.player-footer p {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

/* ===================================================================
   ON THE COURSE SECTION
   =================================================================== */
.section-on-the-course {
  background: var(--color-ivory);
  padding: var(--section-py) 0 3rem;
}

@media (min-width: 768px) {
  .section-on-the-course {
    padding: var(--section-py-lg) 0 3rem;
  }
}

.course-scroll-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 1rem 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  animation: course-scroll 40s linear infinite;
}

.course-scroll-strip:hover {
  animation-play-state: paused;
}

@keyframes course-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.course-photo-item {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
}

.course-photo-item.landscape {
  width: 28rem;
  height: 18rem;
}

.course-photo-item.portrait {
  width: 14rem;
  height: 18rem;
}

@media (max-width: 767px) {
  .course-photo-item.landscape {
    width: 20rem;
    height: 14rem;
  }
  .course-photo-item.portrait {
    width: 10rem;
    height: 14rem;
  }
}

.course-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.course-photo-item:hover img {
  transform: scale(1.05);
}

.course-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.course-photo-item:hover .course-photo-overlay {
  opacity: 1;
}

.course-photo-caption {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.scroll-hint {
  text-align: center;
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-charcoal-light);
  margin-top: 1.5rem;
  opacity: 0.6;
}

/* ===================================================================
   GALLERY SECTION
   =================================================================== */
.gallery-section {
  background: var(--color-parchment);
  padding: var(--section-py) 0;
}

@media (min-width: 768px) {
  .gallery-section {
    padding: var(--section-py-lg) 0;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
  }
}

.gallery-grid-6 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .gallery-grid-6 {
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .caption-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-item:hover .caption-overlay {
  opacity: 1;
}

.gallery-item .caption {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  font-family: var(--font-label);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-item:hover .caption {
  opacity: 1;
}

/* Gallery grid layout — 4 photos */
.gallery-grid .gallery-item:nth-child(1) {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.gallery-grid .gallery-item:nth-child(2) {
  grid-column: span 1;
  aspect-ratio: 3 / 4;
}

@media (min-width: 768px) {
  .gallery-grid .gallery-item:nth-child(1) {
    grid-column: span 7;
    aspect-ratio: 16 / 10;
  }

  .gallery-grid .gallery-item:nth-child(2) {
    grid-column: span 5;
    aspect-ratio: 4 / 5;
  }

  .gallery-grid .gallery-item:nth-child(3) {
    grid-column: span 5;
    aspect-ratio: 4 / 3;
  }

  .gallery-grid .gallery-item:nth-child(4) {
    grid-column: span 7;
    aspect-ratio: 16 / 10;
  }
}

/* Gallery grid layout — 6 photos */
.gallery-grid-6 .gallery-item:nth-child(1) {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.gallery-grid-6 .gallery-item:nth-child(2) {
  grid-column: span 1;
  aspect-ratio: 3 / 4;
}

.gallery-grid-6 .gallery-item:nth-child(3) {
  grid-column: span 1;
  aspect-ratio: 16 / 10;
}

.gallery-grid-6 .gallery-item:nth-child(4) {
  grid-column: span 1;
  aspect-ratio: 16 / 10;
}

.gallery-grid-6 .gallery-item:nth-child(5) {
  grid-column: span 1;
  aspect-ratio: 4 / 3;
}

.gallery-grid-6 .gallery-item:nth-child(6) {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

@media (min-width: 768px) {
  .gallery-grid-6 .gallery-item:nth-child(1) {
    grid-column: span 7;
    aspect-ratio: 16 / 10;
  }

  .gallery-grid-6 .gallery-item:nth-child(2) {
    grid-column: span 5;
    aspect-ratio: 4 / 5;
  }

  .gallery-grid-6 .gallery-item:nth-child(3) {
    grid-column: span 6;
    aspect-ratio: 16 / 10;
  }

  .gallery-grid-6 .gallery-item:nth-child(4) {
    grid-column: span 6;
    aspect-ratio: 16 / 10;
  }

  .gallery-grid-6 .gallery-item:nth-child(5) {
    grid-column: span 5;
    aspect-ratio: 4 / 3;
  }

  .gallery-grid-6 .gallery-item:nth-child(6) {
    grid-column: span 7;
    aspect-ratio: 16 / 10;
  }
}

/* ===================================================================
   CONTACT SECTION
   =================================================================== */
.contact-section {
  background: var(--color-forest);
  padding: 7rem 0;
}

@media (min-width: 768px) {
  .contact-section {
    padding: 9rem 0;
  }
}

.contact-section .section-header h2 {
  color: var(--color-white);
}

.contact-section .section-header .divider {
  margin-bottom: 2rem;
}

.contact-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  text-align: center;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-gold);
  margin-bottom: 2.5rem;
  transition: color 0.3s ease;
}

.contact-email:hover {
  color: var(--color-gold-light);
}

.contact-email svg {
  width: 1.25rem;
  height: 1.25rem;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.social-link {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-label);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
  background: var(--color-charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  text-align: center;
}

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

.footer-signature {
  height: 2rem;
  width: auto;
  opacity: 0.6;
}

.site-footer p {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* ===================================================================
   SCROLL ANIMATIONS
   =================================================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 1s ease, transform 1s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================================
   CUSTOM SCROLLBAR
   =================================================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-parchment);
}

::-webkit-scrollbar-thumb {
  background: rgba(181, 143, 72, 0.5);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(181, 143, 72, 0.7);
}

/* ===================================================================
   WORDPRESS SPECIFIC
   =================================================================== */
.wp-block-image img {
  max-width: 100%;
  height: auto;
}

.aligncenter {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
