/* ===== VELLUTO™ WEBSITE STYLES ===== */

/* CSS Variables for Brand Colors */
:root {
  /* Brand Colors */
  --primary-black: #1a1a1a;
  --charcoal: #2c2c2c;
  --cream: #faf8f5;
  --ivory: #f5f3f0;
  --gold: #d4af37;
  --gold-light: #e6c659;
  --gold-dark: #b8941f;
  
  /* Text Colors */
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-light: #6a6a6a;
  --text-white: #ffffff;
  
  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #faf8f5;
  --bg-dark: #1a1a1a;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 20px;
  --border-radius: 8px;
  
  /* Shadows */
  --shadow-light: 0 2px 10px rgba(26, 26, 26, 0.1);
  --shadow-medium: 0 4px 20px rgba(26, 26, 26, 0.15);
  --shadow-heavy: 0 8px 30px rgba(26, 26, 26, 0.2);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 500; }
h5 { font-size: 1.125rem; font-weight: 500; }
h6 { font-size: 1rem; font-weight: 500; }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--gold-dark);
}

/* ===== LAYOUT COMPONENTS ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-medium);
  white-space: nowrap;
  min-height: 48px;
}

.btn-primary {
  background-color: var(--primary-black);
  color: var(--text-white);
  border-color: var(--primary-black);
}

.btn-primary:hover {
  background-color: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background-color: var(--gold);
  color: var(--text-white);
  border-color: var(--gold);
}

.btn-secondary:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-black);
  border-color: var(--primary-black);
}

.btn-outline:hover {
  background-color: var(--primary-black);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.125rem;
  min-height: 56px;
}

.btn i {
  margin-right: 8px;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
  z-index: 1000;
  transition: var(--transition-medium);
}

.nav {
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-black);
  text-decoration: none;
}

.logo-text {
  color: var(--primary-black);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-black);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 4px;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--primary-black);
  margin: 3px 0;
  transition: var(--transition-fast);
}

/* ===== HERO SECTIONS ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 100%);
  padding-top: 80px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-logo {
  margin-bottom: 2rem;
}

.hero-brand-image {
  max-width: 400px;
  width: 100%;
  height: auto;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--primary-black);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-video-showcase {
  text-align: center;
  position: relative;
}

.hero-video-showcase {
  text-align: center;
  position: relative;
}

.video-container {
  position: relative;
  display: inline-block;
  max-width: 500px;
  width: 100%;
}

.hero-video {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
  transition: var(--transition-medium);
}

.hero-video:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.video-fallback {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

.video-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.video-caption {
  color: white;
  font-size: 0.9rem;
  font-style: italic;
  margin: 0;
  font-family: var(--font-display);
}

.product-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

/* ===== PAGE HEADERS ===== */
.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 100%);
  text-align: center;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--primary-black);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SECTION STYLES ===== */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-black);
}

.section-description {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* ===== GRID LAYOUTS ===== */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* ===== CARDS ===== */
.card {
  background-color: var(--bg-primary);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

/* ===== HOME PAGE SPECIFIC STYLES ===== */
.what-is-velluto {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.velluto-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.showcase-content {
  text-align: left;
}

.brand-identity {
  margin-top: 2rem;
}

.brand-logo {
  max-width: 350px;
  width: 100%;
  height: auto;
}

.showcase-products {
  text-align: center;
}

.product-grid {
  display: grid;
  gap: 2rem;
}

.flavor-showcase {
  text-align: center;
}

.flavor-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
  margin-bottom: 1rem;
}

.flavor-image:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-heavy);
}

.flavor-name {
  font-size: 1.125rem;
  color: var(--text-primary);
  font-family: var(--font-display);
  margin: 0;
}

/* Premium Showcase Section */
.premium-showcase {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.showcase-text {
  text-align: left;
}

.showcase-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.elegant-branding {
  margin-top: 2rem;
}

.elegant-logo {
  max-width: 200px;
  width: 100%;
  height: auto;
}

.showcase-visual {
  text-align: center;
}

.product-video-container {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 400px;
  cursor: pointer;
}

.product-video {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
}

.product-video:hover {
  box-shadow: var(--shadow-heavy);
  transform: translateY(-2px);
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: var(--transition-medium);
  pointer-events: none;
}

.product-video-container:hover .play-button-overlay {
  opacity: 1;
}

.product-video-container.playing .play-button-overlay {
  opacity: 0;
}

.play-button {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.play-button i {
  margin-left: 3px; /* Slight offset to center the play icon visually */
}

/* ===== VIDEO LOADING & PERFORMANCE STYLES ===== */

/* Video loading placeholder */
.video-loading-placeholder {
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: var(--transition-medium);
}

.video-loading-placeholder:hover {
  transform: scale(1.02);
}

.poster-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  display: block;
}

.video-loading-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: white;
  text-align: center;
  z-index: 2;
}

.play-button-large {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  backdrop-filter: blur(15px);
  border: 3px solid rgba(255, 255, 255, 0.4);
  transition: var(--transition-medium);
  cursor: pointer;
}

.play-button-large:hover {
  background: rgba(0, 0, 0, 0.9);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}

.play-button-large i {
  margin-left: 4px; /* Center the play icon */
}

.video-size-info {
  background: rgba(0, 0, 0, 0.7);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Loading spinner */
.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  backdrop-filter: blur(15px);
  border: 3px solid rgba(255, 255, 255, 0.4);
}

.loading-spinner i {
  font-size: 1.8rem;
  color: white;
}

/* Error message */
.error-message {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(231, 76, 60, 0.8);
  border-radius: 50%;
  backdrop-filter: blur(15px);
  border: 3px solid rgba(255, 255, 255, 0.4);
}

.error-message i {
  font-size: 1.8rem;
  color: white;
}

/* Hero video specific styles */
.hero-video-container {
  position: relative;
  display: inline-block;
  max-width: 500px;
  width: 100%;
}

.hero-video-container .video-loading-placeholder {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

/* Performance optimization hints */
.video-performance-hint {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  opacity: 0.8;
}

/* Connection speed adaptive styles */
@media (prefers-reduced-motion: reduce) {
  .video-loading-placeholder:hover {
    transform: none;
  }
  
  .play-button-large:hover {
    transform: none;
  }
}

/* Low bandwidth mode */
.low-bandwidth .video-size-info {
  background: rgba(255, 193, 7, 0.9);
  color: var(--primary-black);
  font-weight: 600;
}

.low-bandwidth .play-button-large {
  border-color: rgba(255, 193, 7, 0.8);
}

/* ===== VIDEO CONTROLS ===== */

.video-controls {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  gap: 8px;
  z-index: 10;
  opacity: 0;
  transition: var(--transition-medium);
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.7);
  padding: 6px 10px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-container:hover .video-controls,
.video-container.playing .video-controls,
.product-video-container:hover .video-controls,
.product-video-container.playing .video-controls,
.hero-video-container:hover .video-controls,
.hero-video-container.playing .video-controls {
  opacity: 1;
}

.control-button {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-medium);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  outline: none;
  user-select: none;
}

.control-button:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.control-button:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.control-button.active {
  background: rgba(212, 175, 55, 0.9);
  border-color: rgba(212, 175, 55, 0.6);
}

.control-button.active:hover {
  background: rgba(212, 175, 55, 1);
}

/* Volume slider */
.volume-slider {
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.volume-slider::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: var(--transition-fast);
}

.volume-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  background: var(--gold);
}

.volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.volume-slider::-moz-range-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  border: none;
}

.volume-slider:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* Mute toggle specific styles */
.mute-toggle.muted {
  color: #ff6b6b;
}

.mute-toggle:not(.muted) {
  color: #51cf66;
}

/* Volume indicator */
.volume-indicator {
  position: absolute;
  bottom: 10px;
  right: 15px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  opacity: 0;
  transition: var(--transition-fast);
  pointer-events: none;
  backdrop-filter: blur(10px);
}

.volume-indicator.show {
  opacity: 1;
}

/* Unmute hint */
.unmute-hint {
  pointer-events: none;
}

.unmute-hint .hint-content {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Pulse animation for unmute hint */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

/* Mobile optimizations for video loading */
@media (max-width: 768px) {
  .play-button-large {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }
  
  .loading-spinner, .error-message {
    width: 70px;
    height: 70px;
  }
  
  .loading-spinner i, .error-message i {
    font-size: 1.5rem;
  }
  
  .video-size-info {
    font-size: 0.8rem;
    padding: 5px 10px;
  }
  
  .video-controls {
    top: 10px;
    right: 10px;
  }
  
  .control-button {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }
  
  .volume-control {
    padding: 4px 8px;
  }
  
  .volume-slider {
    width: 50px;
  }
}

/* ===== FACES & STORIES SECTION ===== */
.faces-stories {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 100%);
  text-align: center;
}

.faces-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.face-showcase {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
}

.face-showcase:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
}

.face-image {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.lifestyle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.face-showcase:hover .lifestyle-image {
  transform: scale(1.05);
}

.face-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(250, 248, 245, 0.95));
  color: var(--primary-black);
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: var(--transition-medium);
}

.face-showcase:hover .face-overlay {
  transform: translateY(0);
}

.face-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.face-description {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.4;
}

/* Experience Gateway (Family Story Button) */
.experience-gateway {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
}

.experience-gateway:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
}

.family-story-button {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.family-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.experience-gateway:hover .family-image {
  transform: scale(1.05);
}

.story-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(250, 248, 245, 0.4) 0%, rgba(245, 243, 240, 0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-black);
  text-align: center;
  transition: var(--transition-medium);
}

.experience-gateway:hover .story-overlay {
  background: linear-gradient(45deg, rgba(250, 248, 245, 0.6) 0%, rgba(245, 243, 240, 0.7) 100%);
}

.story-content {
  padding: 2rem;
}

.story-title {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-black);
  font-weight: 500;
}

.story-subtitle {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.story-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--primary-black);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition-medium);
}

.experience-gateway:hover .story-cta {
  background: white;
  transform: translateY(-2px);
}

.cta-text {
  font-size: 0.9rem;
}

.story-cta i {
  font-size: 0.8rem;
  transition: var(--transition-fast);
}

.experience-gateway:hover .story-cta i {
  transform: translateX(3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .faces-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .story-title {
    font-size: 1.5rem;
  }
  
  .story-subtitle {
    font-size: 1rem;
  }
  
  .story-content {
    padding: 1.5rem;
  }
}

/* ===== FOUNDER IMAGES STYLES ===== */

/* About Page Founder Section */
.story-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
  padding: 3rem;
  background: var(--cream);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.founder-visual {
  text-align: center;
}

.founder-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
}

.founder-image:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.founder-quote-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.founder-quote-content blockquote {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--gold);
  margin: 0;
}

.founder-quote-content blockquote p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.founder-quote-content cite {
  color: var(--gold);
  font-weight: 600;
  font-style: normal;
}

.product-showcase {
  text-align: center;
}

.story-product {
  max-width: 200px;
  width: 100%;
  height: auto;
  transition: var(--transition-medium);
}

.story-product:hover {
  transform: scale(1.05);
}

/* Café Partnerships Page Partnership Action Section */
.partnership-action {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.action-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.action-image {
  text-align: center;
}

.partnership-meeting {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
}

.partnership-meeting:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.action-content {
  padding: 0 2rem;
}

.action-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.action-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
}

.highlight-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-medium);
}

.highlight-item i {
  color: var(--gold);
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.highlight-item span {
  font-weight: 500;
  color: var(--text-primary);
}

/* Membership Page Founder Trust Section */
.founder-trust {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 100%);
}

.trust-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.trust-image {
  text-align: center;
}

.founder-product-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
  transition: var(--transition-medium);
}

.founder-product-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(26, 26, 26, 0.25);
}

.trust-content {
  padding: 0 2rem;
}

.trust-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--primary-black);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.trust-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.trust-guarantees {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border-left: 4px solid var(--gold);
  transition: var(--transition-medium);
}

.guarantee-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-medium);
}

.guarantee-item i {
  color: var(--gold);
  font-size: 1.3rem;
  width: 24px;
  text-align: center;
}

.guarantee-item span {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1.1rem;
}

/* Mobile Responsive for Founder Sections */
@media (max-width: 768px) {
  .story-highlight {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  
  .action-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .trust-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .action-content {
    padding: 0;
  }
  
  .trust-content {
    padding: 0;
  }
  
  .founder-quote-content blockquote p {
    font-size: 1.125rem;
  }
  
  .trust-title {
    font-size: 2rem;
  }
  
  .trust-description {
    font-size: 1.125rem;
  }
}

.montrose-pickup {
  padding: 80px 0;
  background-color: var(--bg-secondary);
  text-align: center;
}

.pickup-location {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.social-proof {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.testimonials-showcase {
  margin-top: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.product-styling {
  text-align: center;
}

.styled-product {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

.minimal-jar {
  text-align: center;
}

.clean-jar {
  max-width: 250px;
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.testimonial {
  background-color: var(--ivory);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  border-left: 4px solid var(--gold);
}

.testimonial-text {
  font-style: italic;
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.testimonial-author {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== MEMBERSHIP PAGE STYLES ===== */
.lottery-explanation {
  padding: 80px 0;
  background-color: var(--bg-secondary);
}

.lottery-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.lottery-text {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.pricing-section {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.pricing-card {
  max-width: 500px;
  margin: 0 auto;
  background-color: var(--ivory);
  padding: 3rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-medium);
}

.pricing-title {
  margin-bottom: 2rem;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-black);
  margin-bottom: 1rem;
}

.price-period {
  font-size: 1.5rem;
  color: var(--text-secondary);
}

.pricing-features {
  margin: 2rem 0;
}

.feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.feature i {
  color: var(--gold);
}

.membership-action {
  margin-top: 2rem;
}

.membership-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.tasting-note {
  padding: 60px 0;
  background-color: var(--bg-secondary);
}

.note-box {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--bg-primary);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  border: 2px solid var(--gold);
}

.benefits-section {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.benefits-with-visual {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefits-visual {
  text-align: center;
}

.benefits-product {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

.benefit {
  text-align: center;
  padding: 2rem;
}

.benefit-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.benefit-title {
  margin-bottom: 1rem;
}

/* ===== PICKUP PAGE STYLES ===== */
.location-details {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--ivory);
  border-radius: var(--border-radius);
}

.info-icon {
  font-size: 1.5rem;
  color: var(--gold);
  min-width: 2rem;
}

.info-content h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-black);
}

.map-container h3 {
  margin-bottom: 1rem;
}

.map-embed {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  margin-bottom: 1rem;
}

.map-links {
  text-align: center;
}

/* Process Steps */
.pickup-process {
  padding: 80px 0;
  background-color: var(--bg-secondary);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  background-color: var(--gold);
  color: var(--text-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 0.5rem;
}

/* Parking and Access */
.parking-access {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.access-info {
  text-align: center;
  padding: 2rem;
  background-color: var(--ivory);
  border-radius: var(--border-radius);
}

.access-info h3 {
  margin-bottom: 1rem;
  color: var(--primary-black);
}

.access-info i {
  color: var(--gold);
  margin-right: 0.5rem;
}

/* ===== CAFE PARTNERSHIPS STYLES ===== */
.partnership-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--primary-black) 0%, var(--charcoal) 100%);
  color: var(--text-white);
  text-align: center;
}

.partnership-hero .page-title,
.partnership-hero .page-subtitle {
  color: var(--text-white);
}

.philosophy-section {
  padding: 80px 0;
  background-color: var(--bg-secondary);
}

.philosophy-hero {
  text-align: center;
}

.philosophy-statement {
  margin-bottom: 3rem;
}

.brand-statement {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

.philosophy-text {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.philosophy-flavors {
  margin-top: 3rem;
}

.flavor-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.philosophy-flavor {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
}

.philosophy-flavor:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-heavy);
}

.brand-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

.market-opportunity {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.market-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--ivory);
  border-radius: var(--border-radius);
  transition: var(--transition-medium);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.stat-card.highlight {
  background-color: var(--gold);
  color: var(--text-white);
}

.stat-card.highlight .stat-number,
.stat-card.highlight .stat-label,
.stat-card.highlight .stat-growth {
  color: var(--text-white);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-black);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.stat-growth {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.market-insight,
.market-position {
  text-align: center;
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.market-insight {
  font-style: italic;
  color: var(--text-primary);
}

/* Partnership Process Timeline */
.partnership-process {
  padding: 80px 0;
  background-color: var(--bg-secondary);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.timeline-step {
  text-align: center;
  padding: 2rem;
  background-color: var(--bg-primary);
  border-radius: var(--border-radius);
  position: relative;
}

.timeline-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--gold);
  border-radius: 2px;
}

.step-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* Partnership Benefits */
.partnership-benefits {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.benefit-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--ivory);
  border-radius: var(--border-radius);
  transition: var(--transition-medium);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

/* Cost Structure */
.cost-structure {
  padding: 80px 0;
  background-color: var(--bg-secondary);
}

.profit-breakdown {
  max-width: 800px;
  margin: 0 auto;
}

.cost-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cost-item {
  text-align: center;
  padding: 2rem;
  background-color: var(--bg-primary);
  border-radius: var(--border-radius);
  min-width: 150px;
}

.cost-item.highlight {
  background-color: var(--gold);
  color: var(--text-white);
}

.cost-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.cost-item.highlight .cost-label,
.cost-item.highlight .cost-desc {
  color: var(--text-white);
}

.cost-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-black);
  margin-bottom: 0.5rem;
}

.cost-item.highlight .cost-value {
  color: var(--text-white);
}

.cost-desc {
  font-size: 0.8rem;
  color: var(--text-light);
}

.flow-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: bold;
}

.profit-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

/* Onboarding Timeline */
.onboarding-timeline {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.timeline-item {
  text-align: center;
  padding: 2rem;
  background-color: var(--ivory);
  border-radius: var(--border-radius);
  position: relative;
}

.timeline-week {
  background-color: var(--primary-black);
  color: var(--text-white);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.timeline-content h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-black);
}

/* Partnership CTA */
.partnership-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-black) 0%, var(--charcoal) 100%);
  color: var(--text-white);
  text-align: center;
}

.cta-content h2,
.cta-content p {
  color: var(--text-white);
}

.cta-content h2 {
  margin-bottom: 1rem;
}

.cta-content p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

/* ===== FAQ PAGE STYLES ===== */
.faq-section {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-button {
  padding: 12px 24px;
  border: 2px solid var(--primary-black);
  background-color: transparent;
  color: var(--primary-black);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-primary);
  font-weight: 500;
}

.tab-button.active,
.tab-button:hover {
  background-color: var(--primary-black);
  color: var(--text-white);
}

.faq-content {
  display: none;
}

.faq-content.active {
  display: block;
}

.faq-section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-black);
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background-color: var(--ivory);
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-question:hover {
  background-color: rgba(26, 26, 26, 0.05);
}

.faq-question h3 {
  margin: 0;
  color: var(--primary-black);
}

.faq-question i {
  color: var(--gold);
  transition: var(--transition-fast);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-medium);
  background-color: var(--bg-primary);
}

.faq-answer.active {
  padding: 1.5rem;
  max-height: 500px;
}

.faq-answer p,
.faq-answer ul {
  margin-bottom: 0;
}

.faq-cta {
  padding: 80px 0;
  background-color: var(--bg-secondary);
  text-align: center;
}

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

/* ===== CONTACT PAGE STYLES ===== */
.contact-methods {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-method {
  text-align: center;
  padding: 2rem;
  background-color: var(--ivory);
  border-radius: var(--border-radius);
  transition: var(--transition-medium);
}

.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.contact-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact-link {
  font-weight: 600;
  font-size: 1.125rem;
}

/* Contact Form */
.contact-form-section {
  padding: 80px 0;
  background-color: var(--bg-secondary);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  background-color: var(--bg-primary);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid rgba(26, 26, 26, 0.1);
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: var(--transition-fast);
  background-color: var(--bg-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.response-times {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.response-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.response-item {
  text-align: center;
  padding: 2rem;
  background-color: var(--ivory);
  border-radius: var(--border-radius);
}

.response-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.business-hours {
  padding: 80px 0;
  background-color: var(--bg-secondary);
}

.hours-content {
  max-width: 800px;
  margin: 0 auto;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.hours-item {
  padding: 2rem;
  background-color: var(--bg-primary);
  border-radius: var(--border-radius);
  text-align: center;
}

.hours-item h3 {
  margin-bottom: 1rem;
  color: var(--primary-black);
}

.quick-actions {
  padding: 80px 0;
  background-color: var(--bg-primary);
  text-align: center;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== LEGAL PAGE STYLES ===== */
.legal-nav {
  padding: 40px 0;
  background-color: var(--bg-secondary);
}

.legal-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.legal-content {
  display: none;
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.legal-content.active {
  display: block;
}

.legal-document {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.legal-document h2 {
  margin-bottom: 1rem;
  color: var(--primary-black);
}

.legal-updated {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 2rem;
}

.legal-document h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-black);
}

.legal-document h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.legal-document ul {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.legal-document li {
  margin-bottom: 0.5rem;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 100%);
  text-align: center;
}

.founder-story {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.story-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-paragraph {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.story-highlight {
  background-color: var(--ivory);
  padding: 2rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--gold);
}

.story-visual {
  text-align: center;
  margin-bottom: 2rem;
}

.story-product {
  max-width: 200px;
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

.story-highlight blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--primary-black);
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.story-highlight cite {
  color: var(--text-light);
  font-size: 0.9rem;
}

.mission-philosophy {
  padding: 80px 0;
  background-color: var(--bg-secondary);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.philosophy-item {
  text-align: center;
  padding: 2rem;
  background-color: var(--bg-primary);
  border-radius: var(--border-radius);
}

.philosophy-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.values-section {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.values-content {
  max-width: 800px;
  margin: 0 auto;
}

.value-item {
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.value-item:last-child {
  border-bottom: none;
}

.value-item h3 {
  color: var(--primary-black);
  margin-bottom: 0.5rem;
}

.science-section {
  padding: 80px 0;
  background-color: var(--bg-secondary);
}

.science-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.science-intro {
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.science-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.science-feature {
  text-align: center;
  padding: 2rem;
  background-color: var(--bg-primary);
  border-radius: var(--border-radius);
}

.feature-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.science-feature h4 {
  margin-bottom: 1rem;
  color: var(--primary-black);
}

.vision-section {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.vision-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.vision-text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.vision-cta {
  background-color: var(--ivory);
  padding: 3rem;
  border-radius: var(--border-radius);
  margin-top: 3rem;
}

.vision-cta h3 {
  margin-bottom: 1rem;
  color: var(--primary-black);
}

.vision-cta p {
  margin-bottom: 2rem;
}

/* ===== CTA SECTIONS ===== */
.cta-section {
  padding: 80px 0;
  background-color: var(--bg-secondary);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--primary-black);
  color: var(--text-white);
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-info a {
  color: var(--text-white);
  margin: 0 0.5rem;
}

.contact-info a:hover {
  color: var(--gold);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-link {
  color: var(--text-white);
  transition: var(--transition-fast);
}

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

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .velluto-showcase,
  .benefits-with-visual,
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .showcase-content,
  .showcase-text {
    text-align: center;
  }
  
  .product-experience {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .flavor-pair {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cost-flow {
    flex-direction: column;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
    --container-padding: 0 16px;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: var(--transition-medium);
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(9px, 6px);
  }
  
  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -6px);
  }
  
  .hero {
    min-height: 80vh;
    padding-top: 100px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-brand-image {
    max-width: 300px;
  }
  
  .page-header {
    padding: 100px 0 40px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .faq-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .legal-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons,
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    width: 100%;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .product-experience {
    grid-template-columns: 1fr;
  }
  
  .flavor-pair {
    grid-template-columns: 1fr;
  }
  
  .market-stats {
    grid-template-columns: 1fr;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
  }
  
  .timeline-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for better accessibility */
.btn:focus,
input:focus,
select:focus,
textarea:focus,
.nav-link:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
  .header,
  .footer,
  .nav,
  .cta-section,
  .partnership-cta {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  .container {
    max-width: none;
    padding: 0;
  }
}