/* 
 * Cowley Road Studios — Brand System
 * Old School Soul × New School System
 */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700&family=Inter:wght@400;500&family=Josefin+Sans:wght@400;600&display=swap');

/* === CSS VARIABLES — CRS Brand Palette === */
:root {
  /* Brand Colors */
  --nettle-green: #6B8E23;
  --mustard-gold: #C5A32F;
  --espresso-brown: #4B3621;
  --soft-beige: #F6F2E9;
  --charcoal: #1F1F23;
  
  /* Typography */
  --font-header: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-label: 'Josefin Sans', sans-serif;
  
  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 80px;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--soft-beige);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

h1 {
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.01em;
}

p {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.7;
  margin: 0;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--nettle-green);
  color: white;
  border-color: var(--nettle-green);
}

.btn-primary:hover {
  background: #5a7a1f;
  border-color: #5a7a1f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 142, 35, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--mustard-gold);
  border-color: var(--mustard-gold);
}

.btn-secondary:hover {
  background: var(--mustard-gold);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 163, 47, 0.3);
}

/* === HERO SECTION === */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* Default background removed — specific hero classes now define their own backgrounds */
  background: var(--soft-beige);
}

/* Subtle geometric background pattern */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(107, 142, 35, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(197, 163, 47, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Subtle waveform motif (Digital Pulse hint) */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to right, 
    transparent 0%, 
    rgba(107, 142, 35, 0.02) 20%, 
    rgba(197, 163, 47, 0.02) 40%,
    rgba(107, 142, 35, 0.02) 60%,
    transparent 100%
  );
  clip-path: polygon(
    0% 100%, 
    0% 70%, 
    10% 65%, 
    20% 75%, 
    30% 60%, 
    40% 70%, 
    50% 55%, 
    60% 65%, 
    70% 58%, 
    80% 68%, 
    90% 63%, 
    100% 72%, 
    100% 100%
  );
  opacity: 0.4;
  pointer-events: none;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-3xl) 120px;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hero-title {
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}

.hero-subhead {
  font-family: var(--font-header);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 600;
  color: var(--nettle-green);
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

/* Subtle golden divider accent */
.hero-subhead::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--mustard-gold), transparent);
}

.hero-body {
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
  max-width: 580px;
}

.hero-tag {
  font-family: var(--font-label);
  font-size: 14px;
  color: var(--espresso-brown);
  opacity: 0.85;
  margin-bottom: var(--space-lg);
}

.hero-cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(31, 31, 35, 0.15);
  position: relative;
}

/* Gold vignette overlay for brand cohesion */
.hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(
    circle at center,
    transparent 40%,
    rgba(197, 163, 47, 0.08) 100%
  );
  pointer-events: none;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--mustard-gold);
  font-family: var(--font-label);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
  animation: bounce 2s infinite;
  z-index: 10;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  stroke: var(--mustard-gold);
  stroke-width: 2;
  fill: none;
}

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

/* === RESPONSIVE === */

/* Tablet */
@media (max-width: 1199px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    padding: 60px;
    gap: 40px;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .hero-subhead {
    font-size: 24px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hero {
    min-height: auto;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 40px;
  }
  
  .hero-content {
    order: 1;
  }
  
  .hero-image {
    order: 2;
    min-height: 300px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subhead {
    font-size: 20px;
  }
  
  .hero-body {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .scroll-indicator {
    display: none;
  }
  
  .hero::after {
    height: 60px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-container {
    padding: 32px 20px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subhead {
    font-size: 18px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 16px;
  }
}

/* === SECTION 2: HYBRID ECOSYSTEM === */
.ecosystem {
  background: white;
  padding: var(--space-3xl) 0;
}

.ecosystem-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ecosystem-content h2 {
  color: var(--espresso-brown);
  margin-bottom: var(--space-md);
}

.ecosystem-content p {
  color: var(--charcoal);
  margin-bottom: var(--space-lg);
  max-width: 520px;
}

.ecosystem-list {
  list-style: none;
  margin: 0 0 var(--space-lg) 0;
  padding: 0;
}

.ecosystem-list li {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
  padding-left: 32px;
  position: relative;
  line-height: 1.8;
}

.ecosystem-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--mustard-gold);
  font-size: 12px;
  top: 8px;
}

.ecosystem-image {
  position: relative;
  width: 100%;
  height: 400px;
}

.ecosystem-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(31, 31, 35, 0.1);
}

.ecosystem-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at center, transparent 50%, rgba(197, 163, 47, 0.1) 100%);
  pointer-events: none;
}

/* === SECTION 3: SERVICES CARDS === */
.services {
  background: var(--soft-beige);
  padding: var(--space-3xl) 0;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 4px 20px rgba(31, 31, 35, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(31, 31, 35, 0.12);
}

.service-card h3 {
  font-family: var(--font-header);
  font-size: 24px;
  color: var(--espresso-brown);
  margin-bottom: var(--space-xs);
}

.service-card p {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.6;
  flex-grow: 1;
}

.service-card .btn {
  margin-top: var(--space-sm);
  padding: 12px 24px;
  font-size: 16px;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-sm);
  color: var(--mustard-gold);
  font-size: 32px;
}

/* === SECTION 4: HERITAGE STRIP === */
.heritage {
  background: var(--espresso-brown);
  color: white;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.heritage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://pub-b79b90db3c594763bf7e4c9e96ae461d.r2.dev/workshop-cafe-storefront.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
}

.heritage-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.heritage h2 {
  color: white;
  margin-bottom: var(--space-md);
}

.heritage p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.8;
}

/* === SECTION 5: DIGITAL PULSE PREVIEW === */
.digital-pulse {
  background: white;
  padding: var(--space-3xl) 0;
}

.digital-pulse-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.digital-pulse-image {
  position: relative;
  width: 100%;
  height: 400px;
  order: 1;
}

.digital-pulse-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(31, 31, 35, 0.1);
}

.digital-pulse-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(107, 142, 35, 0.05) 0%, rgba(197, 163, 47, 0.05) 100%);
  pointer-events: none;
}

.digital-pulse-content {
  order: 2;
}

.digital-pulse-content h2 {
  color: var(--espresso-brown);
  margin-bottom: var(--space-md);
}

.digital-pulse-content p {
  color: var(--charcoal);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

/* === SECTION 6: SUPPORT THE BUILD === */
.support {
  background: var(--soft-beige);
  padding: var(--space-3xl) 0;
}

.support-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
}

.support h2 {
  color: var(--espresso-brown);
  margin-bottom: var(--space-md);
}

.support p {
  color: var(--charcoal);
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

/* === SECTION 7: FINAL CTA === */
.final-cta {
  background: var(--nettle-green);
  color: white;
  padding: var(--space-3xl) 0;
}

.final-cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
}

.final-cta h2 {
  color: white;
  margin-bottom: var(--space-lg);
}

.final-cta-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta .btn {
  background: white;
  color: var(--nettle-green);
  border-color: white;
}

.final-cta .btn:hover {
  background: var(--soft-beige);
  border-color: var(--soft-beige);
}

.final-cta .btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.final-cta .btn-secondary:hover {
  background: white;
  color: var(--nettle-green);
}

/* === SECTION 8: FOOTER === */
.footer {
  background: var(--espresso-brown);
  color: white;
  padding: var(--space-2xl) 0 var(--space-lg) 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-lg);
}

.footer-about h3 {
  font-family: var(--font-header);
  font-size: 24px;
  color: var(--mustard-gold);
  margin-bottom: var(--space-sm);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.7;
}

.footer-links h4 {
  font-family: var(--font-header);
  font-size: 18px;
  color: white;
  margin-bottom: var(--space-sm);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--space-xs);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* === RESPONSIVE === */

/* Tablet */
@media (max-width: 1199px) {
  .ecosystem-container,
  .digital-pulse-container {
    padding: 0 40px;
    gap: 40px;
  }
  
  .services-container,
  .heritage-container,
  .support-container,
  .final-cta-container,
  .footer-container {
    padding: 0 40px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .ecosystem {
    padding: 50px 0;
  }
  
  .ecosystem-container {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 40px;
  }
  
  .ecosystem-image {
    order: 2;
    height: 300px;
  }
  
  .ecosystem-content {
    order: 1;
  }
  
  .services {
    padding: 50px 0;
  }
  
  .services-container {
    padding: 0 24px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .heritage {
    padding: 50px 0;
  }
  
  .heritage-container {
    padding: 0 24px;
  }
  
  .digital-pulse {
    padding: 50px 0;
  }
  
  .digital-pulse-container {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 40px;
  }
  
  .digital-pulse-image {
    order: 1;
    height: 300px;
  }
  
  .digital-pulse-content {
    order: 2;
  }
  
  .support {
    padding: 50px 0;
  }
  
  .support-container {
    padding: 0 24px;
  }
  
  .final-cta {
    padding: 50px 0;
  }
  
  .final-cta-container {
    padding: 0 24px;
  }
  
  .final-cta-buttons {
    flex-direction: column;
  }
  
  .final-cta .btn {
    width: 100%;
  }
  
  .footer {
    padding: 40px 0 24px 0;
  }
  
  .footer-container {
    padding: 0 24px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* === CROWDFUNDER WIDGET === */
.crowdfunder-widget-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0 32px 0;
  margin: 0;
}

.crowdfunder-widget {
  max-width: 100%;
  text-align: center;
}

/* Ensure widget scales on mobile */
@media (max-width: 767px) {
  .crowdfunder-widget-wrapper {
    padding: 20px 0 28px 0;
  }
  
  .crowdfunder-widget {
    width: 100%;
  }
}

/* ========================================
   WORKSHOP CAFÉ PAGE STYLES
   ======================================== */

/* === PAGE HERO === */
.page-hero {
  background: linear-gradient(135deg, var(--soft-beige) 0%, #FAF6ED 100%);
  padding: var(--space-3xl) 0 var(--space-2xl) 0;
  position: relative;
}

.page-hero-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
}

.page-hero-content h1 {
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}

.page-hero-subhead {
  font-family: var(--font-header);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--nettle-green);
  margin-bottom: var(--space-md);
}

.page-hero-intro {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--charcoal);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* === CONTENT SECTIONS === */
.content-section {
  padding: var(--space-3xl) 0;
}

.white-bg {
  background: white;
}

.beige-bg {
  background: var(--soft-beige);
}

.content-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 60px;
}

.content-container h2 {
  color: var(--espresso-brown);
  margin-bottom: var(--space-md);
}

.content-container h3 {
  font-family: var(--font-header);
  font-size: 28px;
  color: var(--espresso-brown);
  margin-bottom: var(--space-sm);
}

.content-container h4 {
  font-family: var(--font-header);
  font-size: 20px;
  color: var(--espresso-brown);
  margin-bottom: var(--space-xs);
}

.content-container p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.intro-text p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.section-intro {
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.section-note {
  font-size: 18px;
  color: var(--charcoal);
  opacity: 0.9;
  margin-top: var(--space-md);
}

.section-highlight {
  font-size: 20px;
  font-weight: 600;
  color: var(--nettle-green);
  text-align: center;
  margin-top: var(--space-lg);
}

.small-note {
  font-size: 14px;
  color: var(--espresso-brown);
  opacity: 0.7;
  font-style: italic;
}

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

/* === ICON HEADERS === */
.icon-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.section-icon {
  font-size: 36px;
  display: inline-block;
}

/* === FEATURE LISTS === */
.feature-list {
  list-style: none;
  margin: 0 0 var(--space-lg) 0;
  padding: 0;
}

.feature-list li {
  font-size: 18px;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
  padding-left: 28px;
  position: relative;
  line-height: 1.7;
}

.feature-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--mustard-gold);
  font-size: 12px;
  top: 6px;
}

.compact-list {
  list-style: none;
  margin: var(--space-sm) 0;
  padding: 0;
}

.compact-list li {
  font-size: 16px;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
  padding-left: 20px;
  position: relative;
}

.compact-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--nettle-green);
}

/* === TWO COLUMN LIST === */
.two-column-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

/* === INFO BOX === */
.info-box {
  background: rgba(107, 142, 35, 0.05);
  border-left: 4px solid var(--nettle-green);
  padding: var(--space-md);
  margin: var(--space-lg) 0;
  border-radius: var(--radius-sm);
}

.info-box p {
  margin-bottom: var(--space-sm);
}

.info-box p:last-child {
  margin-bottom: 0;
}

/* === HERITAGE SECTION === */
.heritage-section {
  background: var(--espresso-brown);
  color: white;
}

.heritage-section .content-container h2,
.heritage-section .icon-header {
  color: white;
}

.heritage-intro {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.heritage-points {
  display: grid;
  gap: var(--space-md);
}

.heritage-point {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.point-icon {
  color: var(--mustard-gold);
  font-size: 14px;
  margin-top: 4px;
}

.heritage-point p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin: 0;
}

/* === EVENT GRID === */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.event-type {
  background: var(--soft-beige);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-size: 16px;
  color: var(--charcoal);
  text-align: center;
  font-weight: 500;
}

/* === VENUE OPTIONS === */
.venue-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0 var(--space-lg) 0;
}

.venue-tag {
  background: var(--nettle-green);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
}

.venue-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: var(--soft-beige);
  border-radius: var(--radius-md);
}

.venue-capacity,
.venue-addons {
  /* Grid children */
}

.venue-capacity p {
  font-size: 18px;
  margin: var(--space-xs) 0 0 0;
}

/* === ACCESSIBILITY SECTION === */
.accessibility-section {
  background: rgba(197, 163, 47, 0.08);
}

/* === SOCIAL LINKS === */
.social-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.social-link {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: var(--nettle-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.update-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.update-tag {
  background: white;
  border: 1px solid var(--nettle-green);
  color: var(--nettle-green);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

/* === CTA SECTION === */
.cta-section {
  background: var(--nettle-green);
  color: white;
  padding: var(--space-3xl) 0;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 60px;
}

.cta-section h2 {
  color: white;
  margin-bottom: var(--space-sm);
}

.cta-location {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-lg);
}

.cta-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background: white;
  color: var(--nettle-green);
  border-color: white;
}

.cta-section .btn-primary:hover {
  background: var(--soft-beige);
  border-color: var(--soft-beige);
}

.cta-section .btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.cta-section .btn-secondary:hover {
  background: white;
  color: var(--nettle-green);
}

/* === CROWDFUNDER SECTION === */
.crowdfunder-section {
  padding: var(--space-2xl) 0;
}

/* === RESPONSIVE === */

/* Tablet */
@media (max-width: 1199px) {
  .page-hero-container,
  .content-container,
  .cta-container {
    padding: 0 40px;
  }
  
  .venue-details {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .page-hero {
    padding: 50px 0 40px 0;
  }
  
  .page-hero-container,
  .content-container,
  .cta-container {
    padding: 0 24px;
  }
  
  .content-section {
    padding: 50px 0;
  }
  
  .icon-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }
  
  .two-column-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .event-grid {
    grid-template-columns: 1fr;
  }
  
  .venue-details {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .social-links {
    align-items: flex-start;
  }
}

/* ========================================
   RECORDING STUDIO PAGE STYLES
   ======================================== */

/* === ROOMS GRID === */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.room-card {
  background: white;
  border: 2px solid var(--nettle-green);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: all 0.3s ease;
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(107, 142, 35, 0.2);
}

.room-card h3 {
  font-family: var(--font-header);
  font-size: 22px;
  color: var(--espresso-brown);
  margin-bottom: var(--space-xs);
}

.room-card p {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.6;
  margin: 0;
}

/* === WORKFLOW COLUMNS === */
.workflow-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  margin: var(--space-lg) 0;
}

.workflow-column {
  padding: var(--space-lg);
  border-radius: var(--radius-md);
}

.workflow-column.analogue {
  background: rgba(197, 163, 47, 0.08);
  border-left: 4px solid var(--mustard-gold);
}

.workflow-column.digital {
  background: rgba(107, 142, 35, 0.08);
  border-left: 4px solid var(--nettle-green);
}

.workflow-column h3 {
  font-family: var(--font-header);
  font-size: 24px;
  color: var(--espresso-brown);
  margin-bottom: var(--space-sm);
}

.workflow-column p {
  font-size: 16px;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}

.workflow-tagline {
  font-size: 16px;
  font-style: italic;
  color: var(--espresso-brown);
  margin-top: var(--space-md);
  font-weight: 500;
}

/* === CAPABILITIES GRID === */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.capability-card {
  background: white;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid rgba(107, 142, 35, 0.2);
  transition: all 0.3s ease;
}

.capability-card:hover {
  border-color: var(--nettle-green);
  box-shadow: 0 4px 16px rgba(107, 142, 35, 0.1);
}

.capability-card h4 {
  font-family: var(--font-header);
  font-size: 20px;
  color: var(--nettle-green);
  margin-bottom: var(--space-xs);
}

.capability-card p {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.6;
  margin: 0;
}

/* === INTEGRATION SECTION === */
.integration-section {
  background: linear-gradient(135deg, rgba(107, 142, 35, 0.05) 0%, rgba(197, 163, 47, 0.05) 100%);
}

.integration-highlight {
  font-size: 20px;
  font-weight: 600;
  color: var(--nettle-green);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

/* === GALLERY GRID === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--soft-beige);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(197, 163, 47, 0.3);
}

.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: var(--font-label);
  font-size: 14px;
  color: var(--espresso-brown);
  text-align: center;
  padding: var(--space-sm);
  background: linear-gradient(135deg, var(--soft-beige) 0%, #FAF6ED 100%);
}

/* === BOOKING OPTIONS === */
.booking-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin: var(--space-lg) 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.booking-card {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border: 2px solid var(--nettle-green);
  transition: all 0.3s ease;
}

.booking-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(107, 142, 35, 0.2);
}

.booking-card h4 {
  font-family: var(--font-header);
  font-size: 22px;
  color: var(--nettle-green);
  margin-bottom: var(--space-xs);
}

.booking-card p {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.6;
  margin: 0;
}

.contact-details {
  margin-top: var(--space-lg);
  font-size: 18px;
}

.contact-details p {
  margin-bottom: var(--space-sm);
}

.contact-details a {
  color: var(--nettle-green);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* === RESPONSIVE: STUDIO PAGE === */

/* Tablet */
@media (max-width: 1199px) {
  .workflow-columns {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .booking-options {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  
  .workflow-columns {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .booking-options {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   SUPPORT PAGE / CROWDFUNDER STYLES
   ======================================== */

/* === STUDIO PAGE HERO (Homepage Style) === */
.studio-page-hero {
  background: white;
  min-height: auto;
  padding: var(--space-3xl) 0;
}

.studio-page-hero .hero-container {
  background: none;
}

.studio-hero-image::after {
  background: radial-gradient(circle at center, transparent 50%, rgba(107, 142, 35, 0.05) 100%);
}

/* === SUPPORT PAGE HERO === */
.support-page-hero {
  background: var(--soft-beige);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

/* Warm glow around edges */
.support-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 40%,
    rgba(197, 163, 47, 0.08) 100%
  );
  pointer-events: none;
}

.support-hero-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.support-hero-content h1 {
  font-family: var(--font-header);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.support-hero-subhead {
  font-family: var(--font-header);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--nettle-green);
  margin-bottom: var(--space-lg);
  line-height: 1.4;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.support-hero-body {
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 22px);
  color: var(--charcoal);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto var(--space-lg) auto;
}

.support-hero-cta {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.btn-tertiary {
  display: inline-block;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
  color: var(--mustard-gold);
  border: 2px solid var(--mustard-gold);
  text-align: center;
}

.btn-tertiary:hover {
  background: var(--mustard-gold);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 163, 47, 0.3);
}

.support-hero-image {
  margin-top: var(--space-2xl);
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.support-hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(31, 31, 35, 0.15);
}

/* Mustard Gold gradient overlay */
.support-hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(197, 163, 47, 0.08) 0%,
    rgba(107, 142, 35, 0.05) 100%
  );
  pointer-events: none;
}

/* === FUNDING GRID === */
.funding-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.funding-card {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.funding-card:hover {
  border-color: var(--nettle-green);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(107, 142, 35, 0.15);
}

.funding-icon {
  font-size: 48px;
  margin-bottom: var(--space-sm);
}

.funding-card h3 {
  font-family: var(--font-header);
  font-size: 22px;
  color: var(--espresso-brown);
  margin-bottom: var(--space-xs);
}

.funding-card p {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.6;
  margin: 0;
}

/* === TIMELINE BLOCK === */
.timeline-block {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-intro {
  font-size: 20px;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  font-weight: 500;
}

/* === HELP OPTIONS === */
.help-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-lg) 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.help-card {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
  border: 2px solid var(--nettle-green);
}

.help-card h3 {
  font-family: var(--font-header);
  font-size: 24px;
  color: var(--espresso-brown);
  margin-bottom: var(--space-sm);
}

.help-card p {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.help-card .btn {
  margin-top: var(--space-sm);
}

/* === RESPONSIVE: SUPPORT PAGE === */

/* Tablet */
@media (max-width: 1199px) {
  .support-hero-container {
    padding: 0 40px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .support-page-hero {
    padding: 50px 0;
  }
  
  .support-hero-container {
    padding: 0 24px;
  }
  
  .support-hero-cta {
    flex-direction: column;
  }
  
  .support-hero-cta .btn {
    width: 100%;
  }
  
  .funding-grid {
    grid-template-columns: 1fr;
  }
  
  .help-options {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* ========================================
   AV REPAIRS PAGE STYLES
   ======================================== */

/* AV Hero - Technical/Industrial Aesthetic */
.av-hero {
  position: relative;
  background: var(--color-white);
}

.av-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, rgba(107, 142, 35, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(107, 142, 35, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.5;
}

.av-hero-image img {
  filter: sepia(8%) saturate(1.1);
  box-shadow: 0 4px 20px rgba(197, 163, 47, 0.15);
}

/* Repair Grid - 3 Column Layout */
.repair-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-40);
  margin-top: var(--spacing-32);
}

.repair-column h3 {
  font-family: var(--font-header);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-espresso);
  margin-bottom: var(--spacing-16);
  padding-bottom: var(--spacing-8);
  border-bottom: 2px solid var(--color-mustard);
}

.repair-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.repair-list li {
  position: relative;
  padding-left: var(--spacing-24);
  margin-bottom: var(--spacing-12);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-charcoal);
}

.repair-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--color-mustard);
  font-size: 0.8rem;
  top: 2px;
}

/* Equipment Hire Grid - 3 Cards */
.hire-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-32);
  margin: var(--spacing-40) 0;
}

.hire-card {
  background: var(--color-soft-beige);
  padding: var(--spacing-32);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(197, 163, 47, 0.2);
  transition: all 0.3s ease;
}

.hire-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(197, 163, 47, 0.15);
  border-color: var(--color-mustard);
}

.hire-card h3 {
  font-family: var(--font-header);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-espresso);
  margin-bottom: var(--spacing-12);
}

.hire-card p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-charcoal);
  margin: 0;
}

/* Checkmark List (Green Ticks) */
.checkmark-list {
  list-style: none;
  padding: 0;
  margin: var(--spacing-24) 0;
}

.checkmark-list li {
  position: relative;
  padding-left: var(--spacing-32);
  margin-bottom: var(--spacing-16);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-charcoal);
}

.checkmark-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-nettle);
  font-size: 1.3rem;
  font-weight: bold;
  top: -2px;
}

/* Center CTA Button */
.center-cta {
  text-align: center;
  margin-top: var(--spacing-40);
}

/* Two-Column Layout (Text Left, Image Right) */
.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-60);
  align-items: center;
}

.column-text {
  padding-right: var(--spacing-24);
}

.column-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* ========================================
   RESPONSIVE: AV REPAIRS PAGE
   ======================================== */

/* Tablet: 768px - 1024px */
@media (max-width: 1024px) {
  .repair-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-32);
  }

  .hire-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-24);
  }

  .two-column-layout {
    gap: var(--spacing-40);
  }
}

/* Mobile: < 768px */
@media (max-width: 768px) {
  .repair-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-32);
  }

  .repair-column h3 {
    font-size: 1.3rem;
  }

  .hire-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-24);
  }

  .hire-card {
    padding: var(--spacing-24);
  }

  .two-column-layout {
    grid-template-columns: 1fr;
    gap: var(--spacing-32);
  }

  .column-text {
    padding-right: 0;
  }

  .checkmark-list li {
    font-size: 0.95rem;
    padding-left: var(--spacing-28);
  }

  .av-hero::before {
    background-size: 30px 30px;
  }
}


/* ========================================
   EVENTS & COMMUNITY PAGE STYLES
   ======================================== */

/* Events Hero - Warm & Welcoming */
.events-hero {
  background: var(--color-soft-beige);
  position: relative;
}

.events-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(197, 163, 47, 0.03), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(107, 142, 35, 0.03), transparent 50%);
  pointer-events: none;
}

.events-hero-image img {
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(75, 54, 33, 0.12);
}

/* Events Grid - 3 Cards */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-32);
  margin-top: var(--spacing-40);
}

.event-card {
  background: var(--color-soft-beige);
  padding: var(--spacing-32);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(197, 163, 47, 0.15);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(197, 163, 47, 0.2);
  border-color: var(--color-mustard);
}

.event-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-16);
  display: block;
}

.event-card h3 {
  font-family: var(--font-header);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-espresso);
  margin-bottom: var(--spacing-12);
}

.event-card p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-charcoal);
  margin: 0;
}

/* Reverse Layout (Image Left, Text Right) */
.reverse-layout {
  grid-template-columns: 1fr 1fr;
}

.reverse-layout .column-image {
  order: 1;
}

.reverse-layout .column-text {
  order: 2;
  padding-left: var(--spacing-24);
  padding-right: 0;
}

/* Capacity & Tech Info Boxes */
.capacity-info,
.tech-addons {
  margin-top: var(--spacing-24);
}

.capacity-info h4,
.tech-addons h4 {
  font-family: var(--font-header);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-espresso);
  margin-bottom: var(--spacing-12);
}

.simple-list {
  list-style: none;
  padding: 0;
  margin: var(--spacing-12) 0;
}

.simple-list li {
  position: relative;
  padding-left: var(--spacing-24);
  margin-bottom: var(--spacing-8);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-charcoal);
}

.simple-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-nettle);
  font-weight: bold;
}

/* Digital Pulse Strip - Dark Espresso Background */
.digital-pulse-strip {
  background: var(--color-espresso);
  color: var(--color-white);
}

.digital-pulse-strip .icon-header h2,
.digital-pulse-strip p {
  color: var(--color-white);
}

.digital-pulse-strip .section-icon {
  background: rgba(197, 163, 47, 0.2);
  border-color: var(--color-mustard);
}

.btn-secondary-light {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-mustard);
}

.btn-secondary-light:hover {
  background: var(--color-mustard);
  color: var(--color-espresso);
}

/* Digital Pulse Visual Placeholder */
.digital-pulse-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-placeholder {
  background: rgba(197, 163, 47, 0.1);
  border: 2px dashed var(--color-mustard);
  border-radius: var(--radius-md);
  padding: var(--spacing-60);
  text-align: center;
}

.pulse-placeholder span {
  font-size: 4rem;
  display: block;
  margin-bottom: var(--spacing-16);
}

.pulse-placeholder p {
  font-family: var(--font-label);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CTA Inline (within sections) */
.cta-inline {
  margin-top: var(--spacing-32);
}

/* Community Values Section */
.community-values {
  padding: var(--spacing-80) 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-32);
  margin-top: var(--spacing-40);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.value-item {
  text-align: center;
  padding: var(--spacing-24);
}

.value-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: var(--spacing-12);
}

.value-item p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-charcoal);
  margin: 0;
}

/* ========================================
   RESPONSIVE: EVENTS PAGE
   ======================================== */

/* Tablet: 768px - 1024px */
@media (max-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-24);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-24);
  }

  .reverse-layout {
    gap: var(--spacing-40);
  }
}

/* Mobile: < 768px */
@media (max-width: 768px) {
  .events-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-24);
  }

  .event-card {
    padding: var(--spacing-24);
  }

  .event-icon {
    font-size: 2.5rem;
  }

  .reverse-layout {
    grid-template-columns: 1fr;
  }

  .reverse-layout .column-image,
  .reverse-layout .column-text {
    order: initial;
  }

  .reverse-layout .column-text {
    padding-left: 0;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-24);
  }

  .value-item {
    padding: var(--spacing-16);
  }

  .pulse-placeholder {
    padding: var(--spacing-40);
  }

  .pulse-placeholder span {
    font-size: 3rem;
  }

  .community-values {
    padding: var(--spacing-60) 0;
  }
}


/* ========================================
   ABOUT / STORY PAGE STYLES
   ======================================== */

/* About Hero - Cinematic Film Grain */
.about-hero {
  background: var(--color-soft-beige);
  position: relative;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.02) 0px, transparent 1px, transparent 2px, rgba(0, 0, 0, 0.02) 3px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.02) 0px, transparent 1px, transparent 2px, rgba(0, 0, 0, 0.02) 3px);
  opacity: 0.3;
  pointer-events: none;
}

.about-hero-image img {
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(197, 163, 47, 0.2);
  filter: sepia(5%) contrast(1.05);
}

/* Heritage Image Styling */
.heritage-image img {
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(75, 54, 33, 0.15);
  filter: sepia(8%) saturate(1.1);
}

/* Build Image Styling */
.build-image img {
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(107, 142, 35, 0.15);
}

/* Team Grid - 3 Cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-32);
  margin-top: var(--spacing-40);
}

.team-card {
  background: var(--color-soft-beige);
  padding: var(--spacing-40);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 2px solid rgba(197, 163, 47, 0.2);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(197, 163, 47, 0.25);
  border-color: var(--color-mustard);
}

.team-icon {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-16);
  display: block;
}

.team-card h3 {
  font-family: var(--font-header);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-espresso);
  margin-bottom: var(--spacing-8);
}

.team-role {
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-mustard);
  margin-bottom: var(--spacing-16);
}

.team-bio {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-charcoal);
  margin: 0;
}

/* Mission Section */
.mission-section {
  padding: var(--spacing-80) 0;
}

.mission-icon {
  font-size: 3rem;
  background: var(--color-mustard);
  color: var(--color-white);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto var(--spacing-24);
}

.mission-intro {
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--color-charcoal);
  max-width: 800px;
  margin: var(--spacing-32) auto;
}

.mission-values {
  margin-top: var(--spacing-48);
}

.mission-values h3 {
  font-family: var(--font-header);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-espresso);
  margin-bottom: var(--spacing-24);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-16);
  max-width: 800px;
  margin: 0 auto;
}

.mission-item {
  background: var(--color-white);
  padding: var(--spacing-20);
  border-radius: var(--radius-md);
  border: 2px solid var(--color-nettle);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-espresso);
  text-align: center;
  transition: all 0.3s ease;
}

.mission-item:hover {
  background: var(--color-nettle);
  color: var(--color-white);
  transform: scale(1.05);
}

/* Values Grid - 6 Cards (2 rows of 3) */
.values-grid-large {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-32);
  margin-top: var(--spacing-40);
}

.value-card {
  background: var(--color-soft-beige);
  padding: var(--spacing-32);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(197, 163, 47, 0.15);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(197, 163, 47, 0.2);
  border-color: var(--color-mustard);
}

.value-icon-large {
  font-size: 3rem;
  margin-bottom: var(--spacing-16);
  display: block;
}

.value-card h4 {
  font-family: var(--font-header);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-espresso);
  margin-bottom: var(--spacing-8);
}

.value-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-charcoal);
  margin: 0;
}

/* Looking Forward Section - Dark Background */
.looking-forward {
  background: var(--color-espresso);
  color: var(--color-white);
}

.looking-forward .icon-header h2,
.looking-forward p {
  color: var(--color-white);
}

.looking-forward .section-icon {
  background: rgba(197, 163, 47, 0.2);
  border-color: var(--color-mustard);
}

/* Forward Visual Placeholder */
.forward-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.forward-placeholder {
  background: rgba(197, 163, 47, 0.15);
  border: 2px solid var(--color-mustard);
  border-radius: var(--radius-lg);
  padding: var(--spacing-60);
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.forward-icon {
  font-size: 5rem;
  display: block;
  margin-bottom: var(--spacing-24);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.forward-placeholder p {
  font-family: var(--font-header);
  font-size: 1.1rem;
  color: var(--color-white);
  margin: 0;
  line-height: 1.5;
}

/* ========================================
   RESPONSIVE: ABOUT PAGE
   ======================================== */

/* Tablet: 768px - 1024px */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-24);
  }

  .values-grid-large {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-24);
  }

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

/* Mobile: < 768px */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-24);
  }

  .team-card {
    padding: var(--spacing-32);
  }

  .team-icon {
    font-size: 3rem;
  }

  .mission-section {
    padding: var(--spacing-60) 0;
  }

  .mission-icon {
    width: 60px;
    height: 60px;
    font-size: 2.5rem;
  }

  .mission-intro {
    font-size: 1.1rem;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-12);
  }

  .values-grid-large {
    grid-template-columns: 1fr;
    gap: var(--spacing-24);
  }

  .value-card {
    padding: var(--spacing-24);
  }

  .value-icon-large {
    font-size: 2.5rem;
  }

  .forward-placeholder {
    padding: var(--spacing-40);
    min-height: 250px;
  }

  .forward-icon {
    font-size: 4rem;
  }

  .about-hero::before {
    opacity: 0.2;
  }
}


/* ========================================
   DIGITAL PULSE PAGE STYLES
   ======================================== */

/* Digital Pulse Hero - Dark with Animated Glow */
.digital-pulse-hero {
  background: var(--color-espresso);
  color: var(--color-white);
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.digital-pulse-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(197, 163, 47, 0.15), transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

/* Pulse Waveform Background */
.pulse-waveform {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 200px;
  transform: translateY(-50%);
  background-image: 
    repeating-linear-gradient(90deg, 
      transparent, 
      transparent 10px, 
      rgba(197, 163, 47, 0.05) 10px, 
      rgba(197, 163, 47, 0.05) 20px);
  pointer-events: none;
  opacity: 0.5;
}

.centered-hero {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-80) var(--spacing-24);
}

.centered-content {
  z-index: 1;
  position: relative;
}

.digital-pulse-hero .hero-title,
.digital-pulse-hero .hero-subhead,
.digital-pulse-hero .hero-body {
  color: var(--color-white);
}

.digital-pulse-hero .hero-subhead {
  color: var(--color-mustard);
}

/* Digital Pulse Visual (Main Image) */
.digital-pulse-visual-main img {
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(197, 163, 47, 0.3);
}

/* How It Works Grid - 3 Cards */
.dp-how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-32);
  margin-top: var(--spacing-40);
}

.dp-card {
  background: var(--color-white);
  padding: var(--spacing-40);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 2px solid var(--color-mustard);
  transition: all 0.3s ease;
}

.dp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(197, 163, 47, 0.25);
}

.dp-card-icon {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-20);
  display: block;
}

.dp-card h3 {
  font-family: var(--font-header);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-espresso);
  margin-bottom: var(--spacing-12);
}

.dp-card p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-charcoal);
  margin: 0;
}

/* Creative Modes Section - Dark Background */
.creative-modes-section {
  background: var(--color-espresso);
  color: var(--color-white);
}

.creative-modes-section .icon-header h2,
.creative-modes-section p {
  color: var(--color-white);
}

.creative-modes-section .section-icon {
  background: rgba(197, 163, 47, 0.2);
  border-color: var(--color-mustard);
}

.modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-32);
  margin-top: var(--spacing-40);
}

.mode-box {
  background: rgba(197, 163, 47, 0.1);
  border: 2px solid var(--color-mustard);
  border-radius: var(--radius-lg);
  padding: var(--spacing-40);
  text-align: center;
  transition: all 0.3s ease;
}

.mode-box:hover {
  background: rgba(197, 163, 47, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(197, 163, 47, 0.4);
}

.mode-box h3 {
  font-family: var(--font-header);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-mustard);
  margin-bottom: var(--spacing-12);
}

.mode-box p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-white);
  margin: 0;
}

/* Why It Matters Section */
.why-matters-section {
  border-top: 4px solid var(--color-mustard);
  border-bottom: 4px solid var(--color-mustard);
}

.why-matters-text {
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-charcoal);
  max-width: 900px;
  margin: var(--spacing-32) auto 0;
}

/* Gallery Grid - 6 Images */
.dp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-24);
  margin-top: var(--spacing-40);
}

.dp-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dp-gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.dp-gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.7);
}

.dp-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(197, 163, 47, 0.9);
  color: var(--color-white);
  padding: var(--spacing-12);
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.dp-gallery-item:hover .dp-gallery-caption {
  transform: translateY(0);
}

/* Subsection Title */
.subsection-title {
  font-family: var(--font-header);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-espresso);
  margin-top: var(--spacing-24);
  margin-bottom: var(--spacing-16);
}

/* ========================================
   RESPONSIVE: DIGITAL PULSE PAGE
   ======================================== */

/* Tablet: 768px - 1024px */
@media (max-width: 1024px) {
  .dp-how-it-works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-24);
  }

  .modes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-24);
  }

  .dp-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-20);
  }
}

/* Mobile: < 768px */
@media (max-width: 768px) {
  .digital-pulse-hero {
    min-height: 60vh;
  }

  .centered-hero {
    padding: var(--spacing-60) var(--spacing-20);
  }

  .dp-how-it-works-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-24);
  }

  .dp-card {
    padding: var(--spacing-32);
  }

  .dp-card-icon {
    font-size: 3rem;
  }

  .modes-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-24);
  }

  .mode-box {
    padding: var(--spacing-32);
  }

  .why-matters-text {
    font-size: 1.1rem;
  }

  .dp-gallery-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-16);
  }

  .dp-gallery-item img {
    height: 250px;
  }

  .pulse-waveform {
    height: 150px;
  }
}


/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Hero */
.contact-hero {
  background: var(--color-soft-beige);
}

/* Contact Options Grid - 3 Cards */
.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-32);
  margin-top: var(--spacing-40);
}

.contact-card {
  background: var(--color-white);
  border: 1px solid var(--color-mustard);
  border-radius: var(--radius-lg);
  padding: var(--spacing-40);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(197, 163, 47, 0.2);
}

.contact-card-icon {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-20);
  display: block;
}

.contact-card h3 {
  font-family: var(--font-header);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-espresso);
  margin-bottom: var(--spacing-12);
}

.contact-card p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-charcoal);
  margin-bottom: var(--spacing-16);
}

.contact-email {
  margin: var(--spacing-20) 0;
  padding: var(--spacing-12);
  background: var(--color-soft-beige);
  border-radius: var(--radius-sm);
}

.contact-email a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-nettle);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-email a:hover {
  color: var(--color-mustard);
}

.contact-note {
  font-size: 0.85rem;
  color: var(--color-charcoal);
  opacity: 0.7;
  margin-top: var(--spacing-8);
}

.btn-small {
  padding: var(--spacing-12) var(--spacing-24);
  font-size: 0.9rem;
}

/* Address Block */
.address-block {
  background: var(--color-white);
  border-left: 4px solid var(--color-mustard);
  padding: var(--spacing-24);
  border-radius: var(--radius-sm);
  margin-bottom: var(--spacing-24);
}

.address-block h3 {
  font-family: var(--font-header);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-espresso);
  margin-bottom: var(--spacing-12);
}

.address-block p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-charcoal);
  margin: 0;
}

.location-note {
  background: var(--color-white);
  padding: var(--spacing-20);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(107, 142, 35, 0.2);
}

.location-note p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-charcoal);
  margin: 0;
}

/* Map Placeholder */
.map-placeholder {
  background: var(--color-white);
  border: 2px dashed var(--color-mustard);
  border-radius: var(--radius-md);
  padding: var(--spacing-60);
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.map-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: var(--spacing-20);
}

.map-placeholder p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-charcoal);
  margin-bottom: var(--spacing-20);
}

/* Hours Grid */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-32);
  margin: var(--spacing-40) 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hours-block {
  background: var(--color-soft-beige);
  padding: var(--spacing-32);
  border-radius: var(--radius-md);
  border: 1px solid rgba(197, 163, 47, 0.2);
}

.hours-block h4 {
  font-family: var(--font-header);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-espresso);
  margin-bottom: var(--spacing-16);
}

.hours-block p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-charcoal);
  margin: var(--spacing-8) 0;
}

.hours-note {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-charcoal);
  margin-top: var(--spacing-24);
  opacity: 0.8;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: var(--spacing-40);
  margin: var(--spacing-40) 0;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-12);
  background: var(--color-white);
  padding: var(--spacing-20) var(--spacing-32);
  border-radius: var(--radius-md);
  border: 2px solid var(--color-nettle);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--color-nettle);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(107, 142, 35, 0.2);
}

.social-icon {
  font-size: 1.8rem;
}

.social-name {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-espresso);
}

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

.social-note {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-charcoal);
  max-width: 700px;
  margin: var(--spacing-24) auto 0;
  opacity: 0.8;
}

/* Contact Form */
.contact-form {
  max-width: 700px;
  margin: var(--spacing-40) auto 0;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-24);
}

.form-field {
  margin-bottom: var(--spacing-24);
}

.form-field label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-espresso);
  margin-bottom: var(--spacing-8);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: var(--spacing-12);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-charcoal);
  background: var(--color-white);
  border: 2px solid rgba(107, 142, 35, 0.2);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-nettle);
  box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.1);
}

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

.form-note {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-charcoal);
  margin-top: var(--spacing-24);
  opacity: 0.8;
}

/* ========================================
   RESPONSIVE: CONTACT PAGE
   ======================================== */

/* Tablet: 768px - 1024px */
@media (max-width: 1024px) {
  .contact-options-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-24);
  }

  .hours-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-24);
  }
}

/* Mobile: < 768px */
@media (max-width: 768px) {
  .contact-options-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-24);
  }

  .contact-card {
    padding: var(--spacing-32);
  }

  .contact-card-icon {
    font-size: 3rem;
  }

  .hours-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-20);
  }

  .hours-block {
    padding: var(--spacing-24);
  }

  .social-links {
    flex-direction: column;
    gap: var(--spacing-16);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: var(--spacing-20);
  }

  .map-placeholder {
    padding: var(--spacing-40);
    min-height: 250px;
  }

  .map-icon {
    font-size: 3rem;
  }
}


/* ========================================
   GLOBAL NAVIGATION
   ======================================== */

.global-nav {
  background: var(--color-white);
  border-bottom: 2px solid var(--color-soft-beige);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-16) var(--spacing-24);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-32);
}

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-family: var(--font-header);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-logo-image {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-links {
  display: flex;
  gap: var(--spacing-32); /* Increased spacing between buttons */
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600; /* Slightly bolder for button appearance */
  color: var(--charcoal);
  text-decoration: none;
  padding: 10px 18px; /* More padding for button feel */
  border-radius: 8px; /* Rounded corners */
  transition: all 0.3s ease;
  background: var(--soft-beige); /* Soft background */
  border: 2px solid transparent; /* Invisible border for hover effect */
}

.nav-links a:hover {
  color: var(--nettle-green);
  background: white;
  border-color: var(--nettle-green); /* Green border on hover */
  transform: translateY(-1px); /* Subtle lift */
  box-shadow: 0 2px 8px rgba(107, 142, 35, 0.15);
}

.nav-cta {
  background: var(--color-nettle);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: var(--spacing-12) var(--spacing-20);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--color-mustard);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 163, 47, 0.3);
}

/* ========================================
   GLOBAL FOOTER
   ======================================== */

.global-footer {
  background: var(--color-espresso);
  color: var(--color-white);
  padding: var(--spacing-60) 0 var(--spacing-24);
  margin-top: var(--spacing-80);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-24);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-48);
  margin-bottom: var(--spacing-48);
  padding-bottom: var(--spacing-48);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h4 {
  font-family: var(--font-header);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-mustard);
  margin-bottom: var(--spacing-16);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: var(--spacing-8) 0;
}

.footer-tagline {
  margin-top: var(--spacing-16);
  font-weight: 500;
  color: var(--color-mustard);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--spacing-12);
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-mustard);
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: var(--spacing-8) 0;
}

.footer-heritage {
  color: var(--color-mustard);
  font-weight: 500;
}

/* ========================================
   RESPONSIVE: NAVIGATION & FOOTER
   ======================================== */

/* Tablet: 768px - 1024px */
@media (max-width: 1024px) {
  .nav-links {
    gap: var(--spacing-20); /* Maintain spacing on tablet */
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 8px 14px; /* Maintain button feel on tablet */
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-32);
  }
}

/* Mobile: < 768px */
@media (max-width: 768px) {
  .nav-container {
    flex-wrap: wrap;
    gap: var(--spacing-16);
  }

  .nav-logo {
    font-size: 1.1rem;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    font-size: 0.85rem;
    padding: var(--spacing-10) var(--spacing-16);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-32);
  }

  .footer-column {
    text-align: center;
  }

  .global-footer {
    padding: var(--spacing-48) 0 var(--spacing-24);
    margin-top: var(--spacing-60);
  }
}

/* Mobile Navigation Toggle (Future Enhancement) */
@media (max-width: 768px) {
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: var(--spacing-16) 0;
  }
}


/* ============================================
   TOP-LEVEL VISUAL UPGRADES
   Cinematic Polish Layer — Danny's Vision
   ============================================ */

/* === 1. SUBTLE BACKGROUND GRADIENT OVERLAYS === */

/* Nettle → Mustard soft vertical gradient */
.hero-section,
.section-light {
  position: relative;
  overflow: hidden;
}

.hero-section::before,
.section-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(107, 142, 35, 0.04) 0%, 
    rgba(197, 163, 47, 0.04) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Espresso → Black vignette fade */
.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, 
    rgba(75, 54, 33, 0) 30%, 
    rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Beige → Gold radial highlights */
.section-beige::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, 
    rgba(197, 163, 47, 0.03) 0%, 
    transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* Ensure content stays above overlays */
.hero-section > *,
.section-light > *,
.section-dark > *,
.section-beige > * {
  position: relative;
  z-index: 2;
}

/* === 2. SECTION SEPARATOR EFFECTS === */

/* Thin gold line divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(197, 163, 47, 0.3) 50%, 
    transparent 100%);
  margin: var(--space-2xl) 0;
}

/* Audio-wave divider */
.wave-divider {
  height: 40px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 40" xmlns="http://www.w3.org/2000/svg"><path d="M0 20 Q300 5 600 20 T1200 20" stroke="%23C5A32F" stroke-width="1" fill="none" opacity="0.2"/></svg>') repeat-x center;
  background-size: 1200px 40px;
  margin: var(--space-lg) 0;
}

/* Blueprint line accent */
.blueprint-accent {
  position: relative;
  padding-left: var(--space-lg);
}

.blueprint-accent::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--mustard-gold) 0px,
    var(--mustard-gold) 4px,
    transparent 4px,
    transparent 8px
  );
  opacity: 0.15;
}

/* === 3. OVERLAY TEXTURES === */

/* Grain texture (cinematic) */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.03"/></svg>');
  pointer-events: none;
  z-index: 9999;
  opacity: 0.02;
  animation: grain 8s steps(10) infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -5%); }
  20% { transform: translate(-10%, 5%); }
  30% { transform: translate(5%, -10%); }
  40% { transform: translate(-5%, 15%); }
  50% { transform: translate(-10%, 5%); }
  60% { transform: translate(15%, 0); }
  70% { transform: translate(0, 10%); }
  80% { transform: translate(-15%, 0); }
  90% { transform: translate(10%, 5%); }
}

/* === 4. CARD HOVER EFFECTS === */

.service-card,
.event-card,
.team-card,
.contact-card,
.repair-card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid transparent;
}

.service-card:hover,
.event-card:hover,
.team-card:hover,
.contact-card:hover,
.repair-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--mustard-gold);
  box-shadow: 
    0 8px 24px rgba(197, 163, 47, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06);
}

.service-card:hover .card-icon,
.event-card:hover .card-icon,
.team-card:hover .card-icon,
.contact-card:hover .card-icon,
.repair-card:hover .card-icon {
  color: var(--nettle-green);
  transform: scale(1.1);
  transition: all 0.3s ease;
}

/* === 5. HERO VISUAL ENHANCEMENTS === */

/* Studio hero — cable-line motif */
.studio-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: 
    linear-gradient(90deg, transparent 0%, rgba(197, 163, 47, 0.03) 100%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 20px,
      rgba(197, 163, 47, 0.05) 20px,
      rgba(197, 163, 47, 0.05) 22px
    );
  pointer-events: none;
  z-index: 1;
}

/* Café hero — espresso gradient overlay */
.cafe-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at bottom left, 
      rgba(75, 54, 33, 0.2) 0%, 
      transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* Digital Pulse hero — shimmer wave */
.digital-pulse-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(197, 163, 47, 0.06) 50%,
    transparent 100%
  );
  animation: shimmer 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes shimmer {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* Events hero — faint crowd silhouette */
.events-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 200" xmlns="http://www.w3.org/2000/svg"><path d="M0 200 L0 120 Q50 100 100 120 T200 120 T300 120 T400 120 T500 120 T600 120 T700 120 T800 120 T900 120 T1000 120 T1100 120 L1200 120 L1200 200 Z" fill="%236B8E23" opacity="0.04"/></svg>') no-repeat bottom center;
  background-size: cover;
  pointer-events: none;
  z-index: 1;
}

/* === 6. GALLERY UPGRADE === */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  padding: var(--space-lg) 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  background: var(--soft-beige);
  cursor: pointer;
  transition: all 0.4s ease;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--mustard-gold);
  border-right: 2px solid var(--mustard-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

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

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(197, 163, 47, 0.08);
}

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

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  color: white;
  font-size: 14px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* === 7. PARALLAX IMAGE PANELS === */

.parallax-section {
  position: relative;
  min-height: 400px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.parallax-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(107, 142, 35, 0.6) 0%,
    rgba(75, 54, 33, 0.7) 100%
  );
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  padding: var(--space-3xl) var(--space-lg);
  text-align: center;
  color: white;
}

/* === 8. ANIMATED MICRO-TEXTURES === */

/* Digital Pulse — soft pulsing glow */
.pulse-glow {
  position: relative;
}

.pulse-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, 
    rgba(197, 163, 47, 0.15) 0%, 
    transparent 70%);
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes pulse {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1); 
    opacity: 0.3;
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.5); 
    opacity: 0.1;
  }
}

/* Studio — light jitter on tape-reel icon */
.tape-icon {
  animation: jitter 3s ease-in-out infinite;
}

@keyframes jitter {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-1deg); }
  75% { transform: rotate(1deg); }
}

/* Café — grain texture drift */
.cafe-section {
  position: relative;
}

.cafe-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      90deg,
      rgba(197, 163, 47, 0.01) 0px,
      transparent 2px,
      transparent 4px
    );
  animation: drift 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes drift {
  0% { transform: translateX(0); }
  100% { transform: translateX(20px); }
}

/* === 9. BUTTON RIPPLE EFFECT === */

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

/* === 10. REAL IMAGE BACKGROUNDS === */

/* Homepage hero — Café storefront night */
.homepage-hero {
  background-image: url('https://pub-b79b90db3c594763bf7e4c9e96ae461d.r2.dev/hero-homepage-cafe-storefront.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.homepage-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(107, 142, 35, 0.75) 0%,
    rgba(197, 163, 47, 0.65) 100%
  );
  z-index: 1;
}

/* Studio hero — WASP Synth */
.studio-hero {
  background-image: url('https://pub-b79b90db3c594763bf7e4c9e96ae461d.r2.dev/hero-studio-wasp-synth.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.studio-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(75, 54, 33, 0.9) 0%,
    rgba(75, 54, 33, 0.7) 100%
  );
  z-index: 1;
}

/* Café hero — Interior event vibes */
.cafe-hero {
  background-image: url('https://pub-b79b90db3c594763bf7e4c9e96ae461d.r2.dev/hero-cafe-interior.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Events hero — Live Music graffiti */
.events-hero {
  background-image: url('https://pub-b79b90db3c594763bf7e4c9e96ae461d.r2.dev/hero-events-graffiti.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.events-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(107, 142, 35, 0.8) 0%,
    rgba(75, 54, 33, 0.85) 100%
  );
  z-index: 1;
}

/* Digital Pulse hero — Vinyl skater Brewforce */
.digital-pulse-hero {
  background-image: url('https://pub-b79b90db3c594763bf7e4c9e96ae461d.r2.dev/hero-digital-pulse-skater.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.digital-pulse-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(75, 54, 33, 0.85) 0%,
    rgba(31, 31, 35, 0.9) 100%
  );
  z-index: 1;
}

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

@media (max-width: 768px) {
  .parallax-section {
    background-attachment: scroll;
  }
  
  .studio-hero::after,
  .cafe-hero::after,
  .events-hero::after {
    display: none;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* === ACCESSIBILITY === */

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


/* ============================================
   HERO BACKGROUND UPGRADES — Danny's Specs
   Real photo backgrounds with branded gradients
   ============================================ */

/* === 1. HOMEPAGE HERO === */
/* Background: Café storefront night (r4gc5TRb) */
/* Gradient: Nettle→Mustard diagonal overlay */
.homepage-hero {
  background-image: 
    linear-gradient(to bottom right, rgba(107,142,35,0.75), rgba(197,163,47,0.85)), 
    url('https://pub-b79b90db3c594763bf7e4c9e96ae461d.r2.dev/hero-homepage-cafe-storefront.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 600px;
}

.homepage-hero .hero-container {
  position: relative;
  z-index: 2;
}

/* === 2. RECORDING STUDIO HERO === */
/* Background: WASP synth / vintage gear (aizN4xIk) */
/* Gradient: Dark cinematic overlay */
.studio-hero {
  background-image: 
    linear-gradient(to bottom, rgba(10,10,12,0.8), rgba(10,10,12,0.95)), 
    url('https://pub-b79b90db3c594763bf7e4c9e96ae461d.r2.dev/hero-studio-wasp-synth.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 600px;
}

.studio-hero .hero-container {
  position: relative;
  z-index: 2;
}

/* Remove conflicting ::before overlay from previous CSS */
.studio-hero::before {
  display: none;
}

/* === 3. WORKSHOP CAFÉ HERO === */
/* Background: Café interior / event vibe (8EcaEHZy) */
/* Gradient: Warm espresso glow */
.cafe-hero {
  background-image: 
    linear-gradient(to top, rgba(75,54,33,0.88), rgba(246,242,233,0.15)), 
    url('https://pub-b79b90db3c594763bf7e4c9e96ae461d.r2.dev/hero-cafe-interior.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 600px;
}

.cafe-hero .page-hero-container {
  position: relative;
  z-index: 2;
}

/* === 4. EVENTS & COMMUNITY HERO === */
/* Background: Live music / graffiti wall (jx9RbaCg) */
/* Gradient: Energetic overlay with orange accent */
.events-hero {
  background-image: 
    linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(233,78,27,0.6)), 
    url('https://pub-b79b90db3c594763bf7e4c9e96ae461d.r2.dev/hero-events-graffiti.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 600px;
}

.events-hero .hero-container {
  position: relative;
  z-index: 2;
}

/* Remove conflicting ::before from previous CSS */
.events-hero::before {
  display: none;
}

/* === 5. DIGITAL PULSE HERO === */
/* Background: Vinyl skater Brewforce art (m8HteDzQ) */
/* Gradient: Tech-culture fusion with teal accent */
.digital-pulse-hero {
  background-image: 
    radial-gradient(circle at top left, rgba(0,140,145,0.65), rgba(34,34,38,0.95)), 
    url('https://pub-b79b90db3c594763bf7e4c9e96ae461d.r2.dev/hero-digital-pulse-skater.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 600px;
}

.digital-pulse-hero .hero-container {
  position: relative;
  z-index: 2;
}

/* Remove conflicting ::before from previous CSS */
.digital-pulse-hero::before {
  display: none;
}

/* Digital Pulse subtle animated pulse */
.digital-pulse-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, 
    rgba(197, 163, 47, 0.1) 0%, 
    transparent 60%);
  animation: digital-pulse 15s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes digital-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

/* === 6. AV REPAIRS HERO === */
/* Background: WASP synth alt angle (technical/industrial) */
/* Gradient: Dark with green accent */
.av-repairs-hero {
  background-image: 
    linear-gradient(to right, rgba(34,34,38,0.9), rgba(107,142,35,0.6)), 
    url('https://pub-b79b90db3c594763bf7e4c9e96ae461d.r2.dev/hero-studio-wasp-synth.jpg');
  background-size: cover;
  background-position: center right;
  position: relative;
  min-height: 600px;
}

.av-repairs-hero .hero-container {
  position: relative;
  z-index: 2;
}

/* === 7. ABOUT PAGE — FOUNDERS SECTION === */
/* Team cards with portrait backgrounds */
.team-card.danny-card {
  background-image: 
    linear-gradient(to bottom, rgba(10,10,12,0.85), rgba(10,10,12,0.92)), 
    url('https://pub-b79b90db3c594763bf7e4c9e96ae461d.r2.dev/founder-danny.jpg');
  background-size: cover;
  background-position: center top;
  color: white;
  position: relative;
  overflow: hidden;
}

.team-card.oli-card {
  background-image: 
    linear-gradient(to bottom, rgba(10,10,12,0.85), rgba(10,10,12,0.92)), 
    url('https://pub-b79b90db3c594763bf7e4c9e96ae461d.r2.dev/founder-oli.jpg');
  background-size: cover;
  background-position: center top;
  color: white;
  position: relative;
  overflow: hidden;
}

.team-card.danny-card .card-content,
.team-card.oli-card .card-content {
  position: relative;
  z-index: 2;
  padding: var(--space-lg);
}

/* === 8. CONTACT PAGE MAP PLACEHOLDER === */
/* Styled map background with overlay */
.contact-map-section {
  background-image: 
    linear-gradient(to top, rgba(246,242,233,0.75), rgba(0,0,0,0.3)), 
    url('https://via.placeholder.com/1200x600/6B8E23/FFFFFF?text=118+Cowley+Road,+Oxford+OX4+1JE');
  background-size: cover;
  background-position: center;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map-section .map-overlay-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  background: rgba(75, 54, 33, 0.9);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 2px solid var(--mustard-gold);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .homepage-hero,
  .studio-hero,
  .cafe-hero,
  .events-hero,
  .digital-pulse-hero,
  .av-repairs-hero {
    min-height: 500px;
    background-position: center top;
  }
  
  .team-card.danny-card,
  .team-card.oli-card {
    background-position: center top;
  }
}


/* ============================================
   HERO SUBHEAD READABILITY FIX
   Make "Old School Soul × New School System" readable
   ============================================ */

/* Override previous hero-subhead styling */
.hero-subhead {
  font-family: var(--font-header);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 600;
  color: white !important; /* White for maximum readability */
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
  text-shadow: 
    2px 2px 8px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(107, 142, 35, 0.3); /* Subtle Nettle Green glow */
  letter-spacing: 0.02em;
}

/* Keep the Mustard Gold underline accent */
.hero-subhead::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--mustard-gold), transparent);
}

/* Alternative: If you want Mustard Gold text instead of white */
.hero-subhead.mustard-variant {
  color: var(--mustard-gold) !important;
  text-shadow: 
    2px 2px 8px rgba(0, 0, 0, 0.7),
    0 0 15px rgba(197, 163, 47, 0.4);
}


/* ============================================
   STUDIO BOOKING PAGE
   Professional booking + deposit flow
   ============================================ */

.booking-hero {
  background: var(--nettle-green);
  padding: var(--space-3xl) var(--space-lg);
  text-align: center;
  color: white;
}

.booking-hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.booking-title {
  font-family: var(--font-header);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: white;
}

.booking-subhead {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin: 0 auto;
}

/* Form section */
.booking-form-section {
  background: var(--soft-beige);
  padding: var(--space-3xl) var(--space-lg);
  min-height: 70vh;
}

.booking-container {
  max-width: 700px;
  margin: 0 auto;
}

.booking-card {
  background: white;
  border-radius: 16px;
  padding: var(--space-2xl);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: var(--space-2xl);
}

/* Form styles */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--nettle-green);
  box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.1);
}

.form-hint {
  font-size: 13px;
  color: #666;
  font-style: italic;
}

.form-actions {
  margin-top: var(--space-md);
}

.btn-large {
  padding: 18px 40px;
  font-size: 18px;
  width: 100%;
}

/* Summary panel */
.booking-summary {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.booking-summary h3 {
  font-family: var(--font-header);
  font-size: 28px;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}

.summary-note {
  font-size: 15px;
  color: #666;
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: rgba(197, 163, 47, 0.08);
  border-left: 4px solid var(--mustard-gold);
  border-radius: var(--radius-sm);
}

.summary-details {
  background: var(--soft-beige);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  gap: var(--space-md);
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-label {
  font-weight: 600;
  color: var(--charcoal);
  min-width: 140px;
  flex-shrink: 0;
}

.summary-value {
  color: var(--charcoal);
  text-align: right;
  word-break: break-word;
}

.summary-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.booking-success {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
}

.booking-success h3 {
  font-size: 32px;
  margin-bottom: var(--space-lg);
}

.booking-success ul {
  list-style: disc;
  padding-left: var(--space-lg);
  margin: var(--space-lg) 0;
}

.booking-success li {
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

/* Policy section */
.booking-policy {
  background: white;
  border-radius: 12px;
  padding: var(--space-xl);
  border: 1px solid rgba(197, 163, 47, 0.2);
}

.booking-policy h4 {
  font-family: var(--font-header);
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-list li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
  color: #444;
}

.policy-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--nettle-green);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .booking-card {
    padding: var(--space-lg);
  }
  
  .summary-row {
    flex-direction: column;
    gap: var(--space-xs);
  }
  
  .summary-label {
    min-width: auto;
  }
  
  .summary-value {
    text-align: left;
  }
  
  .booking-policy {
    padding: var(--space-lg);
  }
}


/* ============================================
   STUDIO RATES SECTION
   Professional rate cards with brand styling
   ============================================ */

.rates-section {
  background: white;
  padding: var(--space-3xl) var(--space-lg);
}

.rates-container {
  max-width: 1200px;
  margin: 0 auto;
}

.rates-container h2 {
  font-family: var(--font-header);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--charcoal);
  text-align: center;
  margin-bottom: var(--space-md);
}

.rates-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}

/* Rate cards grid */
.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.rate-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.rate-card:hover {
  border-color: var(--mustard-gold);
  transform: translateY(-4px);
  box-shadow: 
    0 12px 32px rgba(197, 163, 47, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Popular badge */
.rate-card-popular {
  border-color: var(--nettle-green);
  border-width: 3px;
}

.rate-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--mustard-gold);
  color: white;
  padding: 6px 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(197, 163, 47, 0.3);
}

/* Rate header */
.rate-header {
  margin-bottom: var(--space-lg);
}

.rate-header h3 {
  font-family: var(--font-header);
  font-size: 24px;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

.rate-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
}

.price-amount {
  font-family: var(--font-header);
  font-size: 48px;
  font-weight: 700;
  color: var(--nettle-green);
  line-height: 1;
}

.price-duration {
  font-size: 18px;
  color: #666;
  font-weight: 500;
}

/* Rate body */
.rate-body {
  flex: 1;
  margin-bottom: var(--space-lg);
}

.rate-description {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: var(--space-lg);
}

.rate-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md) 0;
}

.rate-includes li {
  position: relative;
  padding-left: 28px;
  margin-bottom: var(--space-xs);
  font-size: 15px;
  color: #555;
}

.rate-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--nettle-green);
  font-weight: 700;
  font-size: 18px;
}

.rate-effective {
  font-size: 14px;
  color: #888;
  font-style: italic;
  padding-top: var(--space-sm);
  border-top: 1px solid #e0e0e0;
}

/* Rate CTA button */
.btn-rate {
  width: 100%;
  text-align: center;
  padding: 14px 24px;
}

/* Rates note */
.rates-note {
  text-align: center;
  padding: var(--space-lg);
  background: var(--soft-beige);
  border-radius: 12px;
  margin-bottom: var(--space-2xl);
}

.rates-note p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.rates-note strong {
  color: var(--nettle-green);
}

/* Extras & Community section */
.rates-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  padding: var(--space-xl);
  background: var(--soft-beige);
  border-radius: 12px;
  border-left: 4px solid var(--mustard-gold);
}

.extras-column h4 {
  font-family: var(--font-header);
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

.extras-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.extras-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: var(--space-sm);
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

.extras-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--mustard-gold);
  font-weight: 700;
}

.extras-column p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: var(--space-md);
}

.community-note {
  font-style: italic;
  color: var(--nettle-green);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
  .rates-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .rate-badge {
    font-size: 11px;
    padding: 4px 40px;
  }
  
  .rates-extras {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  .rate-card {
    padding: var(--space-lg);
  }
  
  .price-amount {
    font-size: 40px;
  }
}


/* ============================================
   BOOKING PAGE - RATE CONTEXT
   Show rates before booking form
   ============================================ */

.booking-rates-context {
  background: white;
  border-radius: 12px;
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  border: 2px solid var(--mustard-gold);
}

.booking-rates-context h3 {
  font-family: var(--font-header);
  font-size: 24px;
  color: var(--charcoal);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.rates-context-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.context-rate {
  text-align: center;
  padding: var(--space-md);
  background: var(--soft-beige);
  border-radius: var(--radius-md);
}

.context-rate strong {
  display: block;
  color: var(--nettle-green);
  font-size: 15px;
  margin-bottom: var(--space-xs);
}

.deposit-note {
  display: block;
  font-size: 13px;
  color: #666;
  font-style: italic;
  margin-top: var(--space-xs);
}

.rates-context-note {
  text-align: center;
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .rates-context-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   GLOBAL NAVIGATION - SOLID BACKGROUND FIX
   Make top banner fully opaque
   ============================================ */

.global-nav {
  background: white !important; /* Solid white, no transparency */
  border-bottom: 2px solid #F6F2E9; /* Soft Beige border */
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); /* Slightly stronger shadow for depth */
  backdrop-filter: none; /* Remove any blur effects */
}

/* Ensure nav container has solid background */
.nav-container {
  background: white; /* Solid background */
  opacity: 1; /* Full opacity */
}


/* ============================================
   GLOBAL NAVIGATION - BRAND COLOR FIX
   Ensure all nav colors use correct brand variables
   ============================================ */

/* Override any incorrect color variables in nav */
.global-nav {
  background: white !important;
  border-bottom: 2px solid var(--soft-beige) !important;
}

.nav-logo {
  color: var(--espresso-brown) !important;
  font-family: var(--font-header);
}

.nav-logo:hover {
  color: var(--nettle-green) !important;
}

.nav-link {
  color: var(--charcoal) !important;
  font-family: var(--font-body);
  font-weight: 500;
}

.nav-link:hover {
  color: var(--nettle-green) !important;
  background: var(--soft-beige);
}

.nav-cta {
  background: var(--nettle-green) !important;
  color: white !important;
  border: 2px solid var(--nettle-green);
}

.nav-cta:hover {
  background: var(--mustard-gold) !important;
  border-color: var(--mustard-gold) !important;
  color: white !important;
}


/* ============================================
   NAVIGATION LOGO WITH TAGLINE
   "Old School Soul × New School System"
   ============================================ */

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.nav-logo:hover {
  opacity: 0.8;
}

.logo-main {
  font-family: var(--font-header);
  font-size: 24px;
  font-weight: 700;
  color: var(--espresso-brown);
  letter-spacing: -0.01em;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

/* Color the tagline words */
.old-school {
  color: var(--nettle-green); /* Nettle Green for "Old School Soul" */
}

.divider {
  color: var(--mustard-gold); /* Mustard Gold for "×" */
  font-weight: 700;
}

.new-school {
  color: var(--espresso-brown); /* Espresso Brown for "New School System" */
}

/* Responsive - hide tagline on mobile */
@media (max-width: 768px) {
  .logo-tagline {
    display: none;
  }
  
  .logo-main {
    font-size: 20px;
  }
}



/* ============================================
   BUILD PHASE BOOKING PAGE — February 2026 Launch
   ============================================ */

/* Top Announcement Banner */
.build-phase-announcement {
  background: var(--soft-beige);
  padding: 48px 24px;
  text-align: center;
}

.announcement-container {
  max-width: 800px;
  margin: 0 auto;
}

.announcement-title {
  font-family: var(--font-header);
  font-size: 2rem;
  font-weight: 700;
  color: var(--espresso-brown);
  margin-bottom: 16px;
  line-height: 1.2;
}

.announcement-body {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--charcoal);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Pre-Sale Studio Time Section */
.presale-section {
  padding: 64px 24px;
  background: white;
}

.presale-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.presale-title {
  font-family: var(--font-header);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.presale-body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 32px;
  line-height: 1.6;
}

.presale-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.btn-presale {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--nettle-green);
  color: white;
  padding: 20px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-presale:hover {
  border-color: var(--mustard-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 142, 35, 0.3);
}

.btn-label {
  text-align: left;
}

.btn-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--mustard-gold);
}

/* Crowdfunder Section */
.crowdfunder-section {
  padding: 64px 24px;
  background: rgba(197, 163, 47, 0.1); /* 10% Mustard Gold tint */
}

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

.crowdfunder-title {
  font-family: var(--font-header);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.crowdfunder-body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 32px;
  line-height: 1.6;
}

.btn-crowdfunder {
  display: inline-block;
  background: var(--mustard-gold);
  color: white;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.btn-crowdfunder:hover {
  background: var(--espresso-brown);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 163, 47, 0.4);
}

/* Gift Vouchers Section */
.gift-vouchers-section {
  padding: 64px 24px;
  background: white;
}

.gift-vouchers-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.gift-title {
  font-family: var(--font-header);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.gift-body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 32px;
  line-height: 1.6;
}

.gift-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-gift {
  display: inline-block;
  background: var(--mustard-gold);
  color: white;
  padding: 18px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  min-width: 200px;
}

.btn-gift:hover {
  background: var(--espresso-brown);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 163, 47, 0.4);
}

/* Booking Form Section (Updated for Build Phase) */
.booking-form-section {
  padding: 64px 24px;
  background: var(--soft-beige);
}

.booking-container {
  max-width: 700px;
  margin: 0 auto;
}

.booking-title {
  font-family: var(--font-header);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 12px;
}

.booking-subhead {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.6;
}

.booking-card {
  background: white;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--nettle-green);
}

.form-hint {
  font-size: 0.85rem;
  color: #777;
  font-style: italic;
}

.form-actions {
  margin-top: 16px;
}

.btn-large {
  width: 100%;
  padding: 16px 24px;
  font-size: 1.1rem;
}

/* Success Message */
.booking-success {
  text-align: center;
  padding: 40px 24px;
  background: white;
  border-radius: 16px;
}

.success-icon {
  font-size: 4rem;
  color: var(--nettle-green);
  margin-bottom: 16px;
}

.booking-success h3 {
  font-family: var(--font-header);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--nettle-green);
  margin-bottom: 12px;
}

.booking-success p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 24px;
}

.success-cta {
  background: var(--soft-beige);
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.success-options {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.success-options li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
}

.success-options li:last-child {
  border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
  .announcement-title,
  .presale-title,
  .crowdfunder-title,
  .gift-title,
  .booking-title {
    font-size: 1.5rem;
  }

  .presale-buttons {
    max-width: 100%;
  }

  .btn-presale {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .gift-buttons {
    flex-direction: column;
  }

  .btn-gift {
    width: 100%;
  }

  .booking-card {
    padding: 24px 20px;
  }

  /* Mobile logo adjustments */
  .nav-logo-image {
    width: 36px;
    height: 36px;
  }

  .logo-tagline {
    font-size: 0.65rem;
  }
}



/* ============================================
   HOMEPAGE ENHANCEMENTS — Stats + Hero Updates
   ============================================ */

/* Hero Badge (Opening Timeline) */
.hero-badge {
  display: inline-block;
  background: rgba(197, 163, 47, 0.15);
  color: var(--mustard-gold);
  padding: 8px 20px;
  border-radius: 24px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  border: 1px solid rgba(197, 163, 47, 0.3);
}

/* Hero Tagline */
.hero-tagline {
  font-family: var(--font-header);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--mustard-gold);
  margin: 16px 0;
  line-height: 1.4;
}

/* Hero Location */
.hero-location {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 16px 0 32px 0;
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  background: var(--charcoal);
  padding: 64px 24px;
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--nettle-green),
    var(--mustard-gold),
    var(--espresso-brown)
  );
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.stat-card {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(107, 142, 35, 0.2);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--nettle-green);
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-header);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--mustard-gold);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--nettle-green);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.stat-detail {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* Responsive Stats */
@media (max-width: 1024px) {
  .stats-container {
    gap: 32px;
  }
  
  .stat-number {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 48px 24px;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .stat-card {
    padding: 24px 20px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .hero-badge {
    font-size: 0.85rem;
    padding: 6px 16px;
  }
  
  .hero-tagline {
    font-size: 1.2rem;
  }
}



/* ============================================
   REVENUE STRIP (PRE-SALE VOUCHERS)
   High-contrast Mustard Gold section below hero
   ============================================ */

.revenue-strip {
  background: linear-gradient(135deg, #C5A32F 0%, #DAB037 100%);
  padding: 64px 32px;
  border-bottom: 4px solid var(--nettle-green);
}

.revenue-container {
  max-width: 1200px;
  margin: 0 auto;
}

.revenue-header {
  text-align: center;
  margin-bottom: 48px;
}

.revenue-header h2 {
  font-family: var(--font-header);
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.revenue-header p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.revenue-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.revenue-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  position: relative;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.revenue-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: var(--nettle-green);
}

.revenue-card.featured {
  border-color: var(--nettle-green);
  box-shadow: 0 8px 24px rgba(107, 142, 35, 0.2);
}

.featured-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--nettle-green);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.revenue-badge {
  font-family: var(--font-header);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.revenue-price {
  font-family: var(--font-header);
  font-size: 3rem;
  font-weight: 700;
  color: var(--nettle-green);
  margin-bottom: 12px;
}

.revenue-save {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 24px;
}

.btn-mustard {
  background: var(--mustard-gold) !important;
  color: white !important;
  border: 2px solid var(--mustard-gold);
  padding: 14px 32px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-mustard:hover {
  background: var(--nettle-green) !important;
  border-color: var(--nettle-green);
  transform: scale(1.05);
}

.revenue-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  margin-top: 24px;
  font-style: italic;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .revenue-strip {
    padding: 48px 24px;
  }
  
  .revenue-header h2 {
    font-size: 1.75rem;
  }
  
  .revenue-options {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


/* ============================================
   GRASSROOTS PROMISE SECTION
   Nettle Green branded community commitment
   ============================================ */

.grassroots-promise {
  background: linear-gradient(135deg, var(--nettle-green) 0%, #5a7529 100%);
  padding: 80px 32px;
  color: white;
  position: relative;
  overflow: hidden;
}

.grassroots-promise::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(197, 163, 47, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(197, 163, 47, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.grassroots-promise .content-container {
  position: relative;
  z-index: 1;
}

.grassroots-promise .icon-header {
  text-align: center;
  margin-bottom: 32px;
}

.grassroots-promise .icon-header h2 {
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.grassroots-promise .section-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.promise-intro {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.promise-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.promise-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--mustard-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.promise-card h3 {
  font-family: var(--font-header);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mustard-gold);
  margin-bottom: 16px;
}

.promise-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.promise-cta {
  text-align: center;
  font-size: 1.125rem;
  margin-top: 48px;
}

.promise-cta a {
  color: var(--mustard-gold);
  font-weight: 600;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.promise-cta a:hover {
  color: white;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .grassroots-promise {
    padding: 64px 24px;
  }
  
  .promise-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .promise-intro {
    font-size: 1.125rem;
  }
}


/* ============================================
   CHRISTMAS CAMPAIGN - URGENCY & CLARITY
   ============================================ */

.urgency-badge {
  display: inline-block;
  background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.revenue-calc {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 8px;
  font-family: 'Courier New', monospace;
}

.revenue-terms {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.revenue-terms small {
  font-size: 0.75rem;
  line-height: 1.6;
}


/* ============================================
   IMPACT BLOCK - FUNDER-READY VISUALIZATION
   ============================================ */

.impact-block {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid var(--mustard-gold);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-bottom: 32px;
}

.impact-stat {
  font-family: var(--font-header);
  font-size: 4rem;
  font-weight: 700;
  color: var(--mustard-gold);
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.impact-label {
  font-size: 1.125rem;
  color: white;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .impact-stat {
    font-size: 3rem;
  }
  
  .impact-label {
    font-size: 1rem;
  }
}
