/* ============================================================
   CHOCK CHAPPLE — DESIGN SYSTEM
   Editorial Luxury · Warm · Dignified · Emotionally Resonant
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --warm-white: #FAFAF7;
  --off-white: #F3F1EC;
  --charcoal: #1A1A1A;
  --charcoal-dark: #2C2824;
  --charcoal-mid: #3D3830;
  --warm-gray: #8A8578;
  --warm-gray-light: #C4BEB4;
  --gold: #C5A572;
  --gold-light: #D4B98A;
  --gold-pale: #EDE0CC;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --transition-base: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1200px;
  --section-pad: 120px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  background-color: var(--warm-white);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- SCROLL ANIMATIONS ---- */
/* Elements start visible, JS adds .js-animate class to body to enable animations */
.reveal-fade {
  transition: opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.js-animate .reveal-fade {
  opacity: 0;
  transform: translateY(28px);
}

.js-animate .reveal-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ---- NAVIGATION ---- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  transition: background var(--transition-base), box-shadow var(--transition-base), padding var(--transition-base);
}

.site-nav.scrolled {
  background: rgba(250, 250, 247, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(26, 26, 26, 0.08);
  padding: 0 40px;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--warm-white);
  transition: color var(--transition-base);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(250, 250, 247, 0.85);
  transition: color var(--transition-base);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.nav-link:hover::after { transform: scaleX(1); }
.nav-link:hover { color: rgba(250, 250, 247, 1); }

.site-nav.scrolled .nav-link {
  color: var(--warm-gray);
}

.site-nav.scrolled .nav-link:hover {
  color: var(--charcoal);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--warm-white);
  transition: background var(--transition-base), transform var(--transition-base), opacity var(--transition-base);
}

.site-nav.scrolled .hamburger span {
  background: var(--charcoal);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--charcoal-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-close {
  position: absolute;
  top: 28px;
  right: 32px;
  color: var(--warm-white);
  font-size: 32px;
  font-weight: 300;
  opacity: 0.7;
  transition: opacity var(--transition-base);
}

.mobile-nav-close:hover { opacity: 1; }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--warm-white);
  letter-spacing: 0.04em;
  transition: color var(--transition-base);
}

.mobile-nav-link:hover { color: var(--gold); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  border-radius: 2px;
  transition: all var(--transition-base);
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal-dark);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(197, 165, 114, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--warm-white);
  border: 1px solid rgba(250, 250, 247, 0.4);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.btn-full { width: 100%; justify-content: center; }

/* ---- GOLD RULE ---- */
.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0 32px;
}

/* ---- SECTION COMMON ---- */
.section {
  padding: var(--section-pad) 40px;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.section-title em {
  font-style: italic;
  font-weight: 300;
}

.section-title-light {
  color: var(--warm-white);
}

.section-subtitle {
  font-size: 19px;
  color: rgba(250, 250, 247, 0.7);
  max-width: 560px;
  margin-top: 16px;
  line-height: 1.7;
}

.section-subtitle-dark {
  font-size: 19px;
  color: var(--warm-gray);
  max-width: 560px;
  margin-top: 16px;
  line-height: 1.7;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 40px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(26,23,20,0.55) 0%, rgba(26,23,20,0.7) 100%),
    url('https://variety.com/wp-content/uploads/2024/11/GettyImages-2183953028.jpg') center/cover no-repeat;
  z-index: 0;
}

/* SVG noise texture overlay */
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 820px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--warm-white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero-tagline {
  font-size: 19px;
  font-weight: 300;
  color: rgba(250, 250, 247, 0.65);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.05); }
}

.hero-scroll-indicator span {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.4);
}

/* ---- ABOUT SECTION ---- */
.about-section {
  background: var(--warm-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.about-text p {
  font-size: 18px;
  color: var(--charcoal);
  line-height: 1.85;
  margin-bottom: 20px;
}

.lead-paragraph {
  font-size: 21px !important;
  font-weight: 300;
  color: var(--charcoal) !important;
}

.about-continuation {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
  margin-bottom: 80px;
}

.about-text-wide p {
  font-size: 18px;
  color: var(--charcoal);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-text-wide em {
  font-style: italic;
  color: var(--charcoal-mid);
}

.about-narrative p em {
  font-style: italic;
  color: var(--charcoal-mid);
}

/* Fact Cards */
.about-facts-sidebar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 20px;
}

.fact-card {
  background: var(--off-white);
  border: 1px solid var(--gold-pale);
  padding: 24px 20px;
  border-radius: 2px;
}

.fact-number {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.fact-sup {
  font-size: 18px;
  vertical-align: super;
}

.fact-label {
  font-size: 12px;
  color: var(--warm-gray);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* Image frames */
.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.image-frame-portrait {
  aspect-ratio: 3/4;
}

.image-frame-tall {
  aspect-ratio: 3/4;
  margin-bottom: 20px;
}

.image-frame-landscape {
  aspect-ratio: 16/9;
}

.editorial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-frame:hover .editorial-img {
  transform: scale(1.03);
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(26,26,26,0.6));
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(250,250,247,0.8);
}

/* Image fallback */
.img-fallback {
  background: linear-gradient(135deg, #2C2824 0%, #3D3830 50%, #2C2824 100%) !important;
  min-height: 200px;
}

.img-fallback::after {
  content: '✦';
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 200px;
  font-size: 32px;
  color: var(--gold);
  opacity: 0.4;
}

/* Photo row */
.photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 16/9;
  background: var(--off-white);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: linear-gradient(transparent, rgba(26,26,26,0.65));
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(250,250,247,0.8);
}

/* Pull quotes */
.pull-quote {
  border-left: none;
  padding: 60px 0;
  margin: 20px 0;
  text-align: center;
  position: relative;
}

.pull-quote::before {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 40px;
}

.pull-quote::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 40px auto 0;
}

.pull-quote p {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.5vw, 34px);
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto 20px;
}

.pull-quote cite {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--warm-gray);
  font-style: normal;
  text-transform: uppercase;
}

.pull-quote-light p { color: var(--warm-white); }
.pull-quote-light cite { color: rgba(250,250,247,0.5); }
.pull-quote-light::before, .pull-quote-light::after { background: var(--gold); opacity: 0.5; }

.inline-quote {
  padding: 28px 32px;
  border-left: 2px solid var(--gold);
  margin: 32px 0;
  background: var(--off-white);
}

.inline-quote p {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 10px;
}

.inline-quote cite {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
  font-style: normal;
  text-transform: uppercase;
}

/* ---- JOURNEY SECTION ---- */
.journey-section {
  background: var(--charcoal-dark);
}

.journey-section .section-label { color: var(--gold); }

.journey-intro {
  max-width: 680px;
  margin: 40px 0 64px;
}

.journey-intro p {
  font-size: 19px;
  color: rgba(250, 250, 247, 0.7);
  line-height: 1.8;
  margin-bottom: 16px;
}

.journey-intro em {
  font-style: italic;
  color: rgba(250, 250, 247, 0.9);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 0;
  margin-bottom: 80px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  margin-bottom: 0;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6px;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.timeline-line {
  flex: 1;
  width: 1px;
  background: rgba(197, 165, 114, 0.25);
  margin-top: 8px;
}

.timeline-content {
  padding: 0 0 56px 0;
}

.timeline-tag {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.timeline-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--warm-white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.timeline-content p {
  font-size: 18px;
  color: rgba(250, 250, 247, 0.65);
  line-height: 1.85;
  max-width: 600px;
}

/* Journey editorial photo */
.journey-editorial {
  margin-bottom: 0;
}

.journey-photo-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 2px;
  background: linear-gradient(135deg, #3D3830 0%, #2C2824 100%);
  margin-bottom: 16px;
}

.journey-editorial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.img-fallback-dark {
  background: linear-gradient(135deg, #3D3830 0%, #2C2824 100%);
}

.journey-editorial-caption {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.caption-outlet {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.caption-text {
  font-size: 13px;
  color: rgba(250, 250, 247, 0.45);
}

/* ---- JOAN & CHOCK SECTION ---- */
.couple-section {
  background: var(--warm-white);
}

.couple-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

.couple-text p {
  font-size: 18px;
  color: var(--charcoal);
  line-height: 1.85;
  margin-bottom: 20px;
}

.couple-image-col {
  padding-top: 20px;
}

/* ---- VIDEOS SECTION ---- */
.videos-section {
  background: var(--warm-white);
  border-top: 1px solid var(--gold-pale);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 48px 0 48px;
}

.video-card {
  background: var(--off-white);
  border: 1px solid var(--gold-pale);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.video-card:hover {
  box-shadow: 0 8px 32px rgba(197, 165, 114, 0.12);
  transform: translateY(-2px);
}

a.video-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--off-white);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(26, 26, 26, 0.7);
  border: 2px solid rgba(250, 250, 247, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-white);
  transition: background var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
}

.video-play svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

.video-card:hover .video-play {
  background: rgba(197, 165, 114, 0.9);
  border-color: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
  padding: 20px 24px;
}

.video-source {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.video-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.35;
}

.videos-instagram-note {
  text-align: center;
  font-size: 16px;
  color: var(--warm-gray);
  margin-top: 8px;
}

.videos-instagram-note a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-pale);
  transition: color var(--transition-base), border-color var(--transition-base);
}

.videos-instagram-note a:hover {
  color: var(--charcoal);
  border-color: var(--charcoal);
}

/* Instagram button */
.btn-instagram {
  gap: 10px;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Inline text links */
.inline-link {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-pale);
  transition: color var(--transition-base), border-color var(--transition-base);
}

.inline-link:hover {
  color: var(--charcoal);
  border-color: var(--charcoal);
}

/* ---- MEDIA SECTION ---- */
.media-section {
  background: var(--off-white);
  border-top: 1px solid var(--gold-pale);
  border-bottom: 1px solid var(--gold-pale);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0 64px;
}

.media-card {
  background: var(--warm-white);
  border: 1px solid var(--gold-pale);
  padding: 32px;
  border-radius: 2px;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.media-card:hover {
  box-shadow: 0 8px 32px rgba(197, 165, 114, 0.12);
  transform: translateY(-2px);
}

.media-outlet {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.media-type {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.media-excerpt {
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.media-divider {
  width: 100%;
  height: 1px;
  background: var(--gold-pale);
  margin-bottom: 16px;
}

.media-link {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  transition: color var(--transition-base);
}

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

/* Media editorial photo */
.media-editorial-photo {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 16/6;
  background: linear-gradient(135deg, #2C2824 0%, #3D3830 100%);
}

.media-wide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.media-photo-credit {
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.45);
}

/* ---- PODCASTS SECTION ---- */
.podcasts-section {
  background: var(--charcoal-dark);
}

.podcasts-section .section-label { color: var(--gold); }

.podcasts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 48px 0 0;
}

.podcast-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: rgba(250, 250, 247, 0.04);
  border: 1px solid rgba(197, 165, 114, 0.15);
  border-radius: 2px;
  transition: background var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
  text-decoration: none;
  color: inherit;
}

.podcast-card:hover {
  background: rgba(250, 250, 247, 0.07);
  border-color: rgba(197, 165, 114, 0.3);
  transform: translateY(-2px);
}

.podcast-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  flex-shrink: 0;
}

.podcast-icon svg {
  width: 100%;
  height: 100%;
}

.podcast-details {
  flex: 1;
  min-width: 0;
}

.podcast-show {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.podcast-episode {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--warm-white);
  line-height: 1.3;
}

.podcast-listen {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(250, 250, 247, 0.4);
  white-space: nowrap;
  transition: color var(--transition-base);
}

.podcast-card:hover .podcast-listen {
  color: var(--gold);
}

/* ---- SPEAKING SECTION ---- */
.speaking-section {
  background: var(--charcoal-dark);
}

.speaking-section .section-label { color: var(--gold); }

.speaking-header {
  max-width: 680px;
  margin-bottom: 64px;
}

.speaking-intro {
  font-size: 19px;
  color: rgba(250, 250, 247, 0.65);
  line-height: 1.8;
  margin-top: 20px;
}

.speaking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.speaking-card {
  background: rgba(250, 250, 247, 0.04);
  border: 1px solid rgba(197, 165, 114, 0.15);
  padding: 36px;
  border-radius: 2px;
  transition: background var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
}

.speaking-card:hover {
  background: rgba(250, 250, 247, 0.07);
  border-color: rgba(197, 165, 114, 0.3);
  transform: translateY(-2px);
}

.speaking-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 20px;
}

.speaking-icon svg {
  width: 100%;
  height: 100%;
}

.speaking-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--warm-white);
  line-height: 1.3;
  margin-bottom: 14px;
}

.speaking-card p {
  font-size: 16px;
  color: rgba(250, 250, 247, 0.5);
  line-height: 1.75;
}

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

.speaking-cta p {
  font-size: 16px;
  color: rgba(250, 250, 247, 0.6);
  margin-bottom: 28px;
}

/* ---- SHOP SECTION ---- */
.shop-section {
  background: var(--off-white);
  border-top: 1px solid var(--gold-pale);
  border-bottom: 1px solid var(--gold-pale);
}

.shop-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
  margin-top: 32px;
}

.shop-text p {
  font-size: 18px;
  color: var(--charcoal);
  line-height: 1.85;
  margin-bottom: 20px;
}

.shop-text strong {
  font-weight: 500;
  color: var(--charcoal);
}

.shop-cta {
  margin-top: 32px;
}

.shop-card {
  padding-top: 8px;
}

.shop-card-inner {
  background: var(--warm-white);
  border: 1px solid var(--gold-pale);
  padding: 40px 32px;
  border-radius: 2px;
  text-align: center;
}

.shop-card-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin: 0 auto 20px;
}

.shop-card-icon svg {
  width: 100%;
  height: 100%;
}

.shop-card-brand {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.shop-card-tagline {
  font-size: 14px;
  color: var(--warm-gray);
  margin-bottom: 24px;
}

.shop-card-divider {
  width: 100%;
  height: 1px;
  background: var(--gold-pale);
  margin: 20px 0;
}

.shop-wine-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.shop-wine-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(237, 224, 204, 0.5);
}

.shop-wine-list li:last-child {
  border-bottom: none;
}

.wine-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--charcoal);
}

.wine-note {
  font-size: 12px;
  color: var(--warm-gray);
  letter-spacing: 0.04em;
  text-align: right;
  flex-shrink: 0;
  margin-left: 12px;
}

.shop-card-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gold);
  transition: color var(--transition-base);
}

.shop-card-link:hover {
  color: var(--charcoal);
}

/* ---- CONTACT SECTION ---- */
.contact-section {
  background: var(--warm-white);
}

.contact-inner { }

.contact-header {
  max-width: 560px;
  margin-bottom: 56px;
}

.contact-note {
  font-size: 17px;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-top: 12px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}

/* Form */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--warm-white);
  border: 1px solid var(--gold-pale);
  border-radius: 2px;
  outline: none;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 165, 114, 0.1);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8578' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-textarea {
  resize: vertical;
  min-height: 160px;
}

.form-status {
  margin-top: 16px;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 2px;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(197, 165, 114, 0.1);
  border: 1px solid rgba(197, 165, 114, 0.3);
  color: var(--charcoal);
}

.form-status.error {
  display: block;
  background: rgba(200, 80, 60, 0.07);
  border: 1px solid rgba(200, 80, 60, 0.2);
  color: #8B3030;
}

/* Contact sidebar */
.contact-sidebar {
  padding-top: 20px;
}

.contact-info-block {
  margin-bottom: 36px;
}

.contact-info-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.contact-info-text {
  font-size: 15px;
  color: var(--charcoal);
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--charcoal);
  transition: color var(--transition-base);
}

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

.social-icon {
  width: 20px;
  height: 20px;
}

.contact-available-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-available-list li {
  font-size: 14px;
  color: var(--warm-gray);
  padding-left: 16px;
  position: relative;
}

.contact-available-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.sidebar-quote {
  margin-top: 40px;
  padding: 24px;
  background: var(--off-white);
  border-left: 2px solid var(--gold);
}

.sidebar-quote p {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 10px;
}

.sidebar-quote cite {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
  text-transform: uppercase;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--charcoal-dark);
  padding: 64px 40px 48px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 60px;
  align-items: start;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--warm-white);
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(250, 250, 247, 0.4);
  font-style: italic;
  font-family: var(--font-serif);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 13px;
  color: rgba(250, 250, 247, 0.5);
  transition: color var(--transition-base);
}

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

.footer-social {
  display: flex;
  align-items: flex-start;
}

.footer-social-link {
  display: flex;
  align-items: center;
  color: rgba(250, 250, 247, 0.4);
  transition: color var(--transition-base);
}

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

.footer-social-link svg {
  width: 22px;
  height: 22px;
}

.footer-rule {
  width: 100%;
  height: 1px;
  background: rgba(250, 250, 247, 0.08);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 12px;
  color: rgba(250, 250, 247, 0.3);
}

.footer-location {
  font-size: 12px;
  color: rgba(250, 250, 247, 0.3);
  letter-spacing: 0.08em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  :root { --section-pad: 88px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image-col { max-width: 400px; }
  .about-image-col .image-frame-portrait { aspect-ratio: 4/3; }

  .about-continuation { grid-template-columns: 1fr; }
  .about-facts-sidebar { grid-template-columns: repeat(4, 1fr); }

  .couple-layout { grid-template-columns: 1fr; }
  .couple-image-col { max-width: 500px; }

  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .speaking-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-layout { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .contact-sidebar { max-width: 500px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  .section { padding: var(--section-pad) 24px; }
  .site-nav { padding: 0 24px; }
  .site-footer { padding: 48px 24px 40px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 100px 24px 80px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 280px; justify-content: center; }

  .about-facts-sidebar { grid-template-columns: repeat(2, 1fr); }

  .photo-row { grid-template-columns: 1fr; }

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

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

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

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

  .form-row-2 { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .timeline-item { grid-template-columns: 40px 1fr; }

  .journey-editorial-caption { flex-direction: column; gap: 4px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 38px; }
  .section-title { font-size: 32px; }
  .pull-quote p { font-size: 22px; }
  .about-facts-sidebar { grid-template-columns: repeat(2, 1fr); }
  .mobile-nav-link { font-size: 28px; }
}

/* ---- ACCESSIBILITY ---- */
@media (prefers-reduced-motion: reduce) {
  .js-animate .reveal-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .scroll-line { animation: none; }
  .editorial-img { transition: none; }
  .photo-card img { transition: none; }
}

/* ---- FINE DETAILS ---- */
::selection {
  background: var(--gold-pale);
  color: var(--charcoal-dark);
}

/* Smooth transitions for all interactive states */
a, button, input, select, textarea {
  transition: all var(--transition-base);
}

/* Focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
