/* CSS Custom Properties for Brand Colors - WCAG 2.1 AA Compliant */
:root {
  --graphite-navy: #1F2A36; /* Base Dark */
  --muted-rose-gold: #B87B6B; /* Original Accent Metal */
  --muted-rose-gold-dark: #CC6B5C; /* Muted Coral - WCAG AA compliant */
  --soft-cream: #E8F4FD; /* Very Light Blue Background */
  --warm-stone: #B8E0FF; /* Light Blue Secondary Accent */
  --iron-black: #2F2F2F; /* Contrast Dark */
  --white: #FFFFFF;
  
  /* WCAG AA Compliant Colors */
  --color-heading: var(--graphite-navy);
  --color-body: var(--iron-black);
  --color-accent: var(--muted-rose-gold-dark);
  --bg-default: var(--white);
  --bg-light: var(--soft-cream);
  
  /* Typography Scale - WCAG Compliant */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Open Sans', sans-serif;
  --font-size-base: 1rem; /* 16px minimum */
  --font-size-lg: 1.125rem; /* 18px */
  --font-size-xl: 1.25rem; /* 20px */
  --line-height-base: 1.5; /* WCAG minimum for body text */
  --line-height-heading: 1.3; /* WCAG minimum for headings */
  
  /* Typography Scale */
  --font-size-h1: 2.25rem; /* 36px */
  --font-size-h2: 1.875rem; /* 30px */
  --font-size-h3: 1.5rem; /* 24px */
  --font-size-h4: 1.25rem; /* 20px */
  --font-size-h5: 1.125rem; /* 18px */
  --font-size-h6: 1rem; /* 16px */
  
  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 80px 0;
  --section-padding-mobile: 60px 0;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-body);
  background-color: var(--bg-default);
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography - WCAG 2.1 AA Compliant */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: var(--line-height-heading);
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--color-heading);
}

h1 {
  font-size: clamp(var(--font-size-h1), 5vw, 3.5rem);
}

h2 {
  font-size: clamp(var(--font-size-h2), 4vw, 2.75rem);
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

h5 {
  font-size: var(--font-size-h5);
}

h6 {
  font-size: var(--font-size-h6);
}

p {
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-body);
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Images */
img {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 18px 36px;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  min-width: 220px;
  text-transform: none;
  font-family: var(--font-body);
}

.btn-primary {
  background-color: #D4806F; /* Lighter rose gold for better contrast */
  color: var(--graphite-navy); /* Dark navy text for WCAG AA compliance */
  border-color: #D4806F;
  box-shadow: 0 4px 15px rgba(212, 128, 111, 0.4);
  font-size: var(--font-size-base);
  text-shadow: none; /* Remove any text shadows that reduce contrast */
}

.btn-primary:hover {
  background-color: #CC6B5C; /* Darker rose gold on hover */
  color: var(--graphite-navy); /* Maintain dark text */
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(204, 107, 92, 0.4);
}

.btn-primary:active {
  background-color: #CC6B5C; /* Darker rose gold on active */
  color: var(--graphite-navy); /* Maintain dark text */
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(204, 107, 92, 0.3);
}

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

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--graphite-navy);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Header */
.site-header {
  background-color: var(--white);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1002;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0;
  position: relative;
}

.logo {
  font-family: var(--font-heading);
  color: var(--graphite-navy);
  margin: 0;
  font-size: 1.75rem;
  font-weight: 400; /* Consistent regular weight across all pages */
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.logo:hover {
  transform: scale(1.05);
  text-shadow: 0 0 8px #A6D5FA;
}

.site-logo {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

.site-logo:hover {
  color: inherit;
  text-decoration: none;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center; /* Ensures proper vertical alignment of all nav items */
}

.main-nav a {
  color: var(--graphite-navy);
  text-decoration: none;
  font-size: 1rem;
  padding: 12px 16px; /* Adequate padding for desktop touch targets */
  min-height: 44px; /* WCAG minimum touch target size */
  display: flex;
  align-items: center;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.main-nav a:hover,
.main-nav a:active {
  color: #CC6B5C;
  text-shadow: 0 0 6px rgba(221, 221, 221, 0.4);
}

/* Override hover effects for button links in navigation */
.main-nav .btn:hover,
.main-nav .btn:active {
  color: var(--white);
  text-shadow: none;
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 12px; /* Increased padding for better touch target */
  min-width: 44px; /* WCAG minimum touch target size */
  min-height: 44px;
  z-index: 1003;
  position: relative;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.hamburger:hover {
  background-color: rgba(31, 42, 54, 0.1);
}

.hamburger:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: var(--graphite-navy);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
  display: block;
}

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

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

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

.btn {
  padding: 0.5rem 1rem;
  font-weight: 600;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-solid {
  background-color: #D4806F; /* Match btn-primary for consistency */
  color: var(--graphite-navy); /* Dark navy text for WCAG AA compliance */
  border: 2px solid #D4806F; /* Standardized border for alignment consistency */
  box-shadow: 0 4px 15px rgba(212, 128, 111, 0.4);
  font-size: var(--font-size-base);
  transition: all 0.3s ease;
  text-shadow: none;
  box-sizing: border-box; /* Ensure consistent box model */
}

/* Desktop-specific header button alignment fix - prevents mobile CSS and page-specific CSS interference */
@media (min-width: 769px) {
  /* MAXIMUM SPECIFICITY to override ALL CSS conflicts including page-specific files */
  html body .site-header .main-nav ul li a.btn.btn-solid,
  html body .site-header .main-nav ul li a.btn.btn-outline,
  html .services-page .site-header .main-nav ul li a.btn.btn-solid,
  html .services-page .site-header .main-nav ul li a.btn.btn-outline,
  html .about-page .site-header .main-nav ul li a.btn.btn-solid,
  html .about-page .site-header .main-nav ul li a.btn.btn-outline,
  html .faq-page .site-header .main-nav ul li a.btn.btn-solid,
  html .faq-page .site-header .main-nav ul li a.btn.btn-outline,
  html body.contact-page .site-header .main-nav ul li a.btn.btn-solid,
  html body.contact-page .site-header .main-nav ul li a.btn.btn-outline,
  html body .site-header .main-nav ul li a.btn.btn-solid,
  html body .site-header .main-nav ul li a.btn.btn-outline {
    /* RESET ALL overrides with ABSOLUTE specificity - EXACT button dimensions */
    margin: 0 !important;
    padding: 0.5rem 1rem !important; /* EXACT padding - not larger */
    min-height: 36px !important; /* EXACT height to prevent oversizing */
    max-height: 36px !important; /* PREVENT height expansion */
    height: 36px !important; /* FORCE exact height */
    min-width: auto !important;
    display: inline-block !important;
    line-height: 1.2 !important; /* TIGHT line-height to prevent height growth */
    width: auto !important;
    max-width: none !important;
    gap: 0 !important; /* Override services-grid.css gap */
    
    /* FORCE perfect alignment and prevent size variations */
    vertical-align: middle !important;
    border: 2px solid transparent !important;
    box-sizing: border-box !important;
    text-align: center !important;
    
    /* STANDARDIZE font properties to prevent size differences */
    font-size: 0.9rem !important; /* Slightly smaller to fit exact height */
    font-weight: 600 !important;
    font-family: 'Open Sans', sans-serif !important;
    
    /* Stabilize transforms and flexbox conflicts */
    transform: none !important;
    transition: all 0.3s ease !important;
    align-items: initial !important; /* Override services inline-flex alignment */
    justify-content: initial !important;
    flex-direction: initial !important; /* Override any flex settings */
    
    /* PREVENT any padding/margin inheritance from page-specific CSS */
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Specific button color overrides with maximum specificity */
  html body .site-header .main-nav ul li a.btn.btn-solid,
  html .services-page .site-header .main-nav ul li a.btn.btn-solid,
  html .about-page .site-header .main-nav ul li a.btn.btn-solid,
  html .faq-page .site-header .main-nav ul li a.btn.btn-solid,
  html body.contact-page .site-header .main-nav ul li a.btn.btn-solid {
    border-color: #D4806F !important;
    background-color: #D4806F !important;
    color: var(--graphite-navy) !important;
  }
  
  html body .site-header .main-nav ul li a.btn.btn-outline,
  html .services-page .site-header .main-nav ul li a.btn.btn-outline,
  html .about-page .site-header .main-nav ul li a.btn.btn-outline,
  html .faq-page .site-header .main-nav ul li a.btn.btn-outline,
  html body.contact-page .site-header .main-nav ul li a.btn.btn-outline {
    border-color: var(--color-accent) !important;
    background: transparent !important;
    color: var(--color-accent) !important;
  }
  
  /* Controlled hover effects that maintain exact dimensions */
  html body .site-header .main-nav ul li a.btn.btn-solid:hover,
  html body .site-header .main-nav ul li a.btn.btn-outline:hover,
  html .services-page .site-header .main-nav ul li a.btn.btn-solid:hover,
  html .services-page .site-header .main-nav ul li a.btn.btn-outline:hover,
  html .about-page .site-header .main-nav ul li a.btn.btn-solid:hover,
  html .about-page .site-header .main-nav ul li a.btn.btn-outline:hover,
  html .faq-page .site-header .main-nav ul li a.btn.btn-solid:hover,
  html .faq-page .site-header .main-nav ul li a.btn.btn-outline:hover,
  html body.contact-page .site-header .main-nav ul li a.btn.btn-solid:hover,
  html body.contact-page .site-header .main-nav ul li a.btn.btn-outline:hover {
    transform: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    /* MAINTAIN exact dimensions during hover */
    height: 36px !important;
    padding: 0.5rem 1rem !important;
    line-height: 1.2 !important;
  }
}

.btn-solid:hover {
  background-color: #CC6B5C; /* Match btn-primary hover */
  color: var(--graphite-navy); /* Maintain dark text */
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(204, 107, 92, 0.4);
}

.btn-solid:active {
  background-color: #CC6B5C; /* Match btn-primary active */
  color: var(--graphite-navy); /* Maintain dark text */
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(204, 107, 92, 0.3);
}

.btn-outline {
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  background: transparent;
  font-size: var(--font-size-base);
  transition: all 0.3s ease;
  box-sizing: border-box; /* Ensure consistent box model */
}

.btn-outline:hover {
  background-color: #CC6B5C; /* Match updated hover colors */
  color: var(--graphite-navy); /* Dark text for better contrast */
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(204, 107, 92, 0.4);
}

.btn-outline:active {
  background-color: #CC6B5C; /* Match updated active colors */
  color: var(--graphite-navy); /* Dark text for better contrast */
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(204, 107, 92, 0.3);
}

/* Hero Section */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--graphite-navy) 0%, #2c3e50 100%);
  background-image: url('/hero-background-desktop.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 2rem 0;
}

/* WebP fallback for hero background */
.no-webp .hero {
  background-image: url('/hero-background-desktop.jpg');
}

/* Hero mobile optimization */
@media (max-width: 768px) {
  .hero {
    background-image: url('/hero-background-mobile.webp');
    background-attachment: scroll;
  }
  
  .no-webp .hero {
    background-image: url('/hero-background-mobile.jpg');
  }
}

/* Hero tablet optimization */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    background-image: url('/hero-background-desktop.webp');
  }
  
  .no-webp .hero {
    background-image: url('/hero-background-desktop.jpg');
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(31, 42, 54, 0.85) 0%, rgba(44, 62, 80, 0.9) 100%);
  z-index: 1;
}

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

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.hero-headline {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
}

.hero-subheadline {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.4;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Geographic Tagline - Subtle Supporting Element */
.hero-geographic-tagline {
  font-family: var(--font-body) !important;
  font-size: clamp(0.85rem, 2vw, 0.9rem) !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  text-align: center !important;
  margin-bottom: 0.75rem !important;
  margin-top: 0.5rem !important;
  line-height: 1.4 !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4) !important;
  letter-spacing: 0.8px !important;
  max-width: 100% !important;
  overflow-wrap: break-word !important;
  word-wrap: break-word !important;
  hyphens: auto !important;
  /* Bug prevention - ensure visibility */
  opacity: 1 !important;
  display: block !important;
  visibility: visible !important;
  /* Netlify compatibility */
  text-rendering: optimizeLegibility !important;
  -webkit-text-size-adjust: 100% !important;
  -ms-text-size-adjust: 100% !important;
}

/* Mobile responsive adjustments for geographic tagline */
@media (max-width: 768px) {
  .hero-geographic-tagline {
    font-size: clamp(0.8rem, 2.5vw, 0.85rem) !important;
    margin-top: 0.4rem !important;
    margin-bottom: 0.6rem !important;
    padding: 0 1rem !important;
    letter-spacing: 0.6px !important;
    opacity: 0.8 !important;
  }
}

/* Tablet specific adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-geographic-tagline {
    font-size: 0.875rem !important;
    margin-top: 0.5rem !important;
    margin-bottom: 0.75rem !important;
    letter-spacing: 0.7px !important;
  }
}

/* Desktop enhancements */
@media (min-width: 1025px) {
  .hero-geographic-tagline {
    font-size: 0.9rem !important;
    margin-top: 0.6rem !important;
    margin-bottom: 0.8rem !important;
    letter-spacing: 0.8px !important;
  }
  
  /* Desktop scroll indicator refinements */
  .scroll-indicator {
    bottom: 0.2rem !important;
  }
  
  .scroll-text {
    font-size: 0.75rem !important;
    letter-spacing: 1px !important;
    opacity: 0.8 !important;
  }
  
  .scroll-arrow {
    opacity: 0.7 !important;
    font-size: 1.2rem !important;
  }
}

/* Mobile scroll indicator optimizations */
@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 0.5rem !important;
    gap: 0.4rem !important;
    /* Mobile bug prevention */
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  
  .scroll-text {
    font-size: 0.8rem !important;
    letter-spacing: 0.6px !important;
  }
  
  .scroll-arrow {
    font-size: 1.1rem !important;
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

/* Enhanced primary CTA prominence */
.hero-cta .btn-primary {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(221, 221, 221, 0.4);
}

.hero-cta .btn-outline {
  opacity: 0.9;
  font-size: 1rem;
}

/* Scroll Indicator - Bottom-Center Positioning */
.scroll-indicator {
  position: absolute;
  bottom: 0.3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  animation: scrollFloat 2s ease-in-out infinite;
  cursor: pointer;
  /* Bug prevention */
  pointer-events: auto;
  user-select: none;
  /* Netlify compatibility */
  will-change: transform;
  /* Additional bug prevention for edge cases */
  min-height: auto;
  overflow: visible;
}

.scroll-arrow {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

.scroll-indicator:hover .scroll-arrow {
  color: var(--color-accent);
  transform: translateY(-2px);
}



.scroll-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  letter-spacing: 0.8px;
  transition: color 0.3s ease;
  text-transform: lowercase;
}

.scroll-indicator:hover .scroll-text {
  color: rgba(255, 255, 255, 0.9);
}

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

/* Hide scroll indicator on mobile for cleaner experience */
@media (max-width: 768px) {
  .scroll-indicator {
    display: none;
  }
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--soft-cream) 0%, #f8f6f3 100%);
  position: relative;
}

.features::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.3;
}

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

.section-header h2 {
  color: var(--graphite-navy);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: var(--font-size-lg);
  color: var(--color-body);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--line-height-base);
}

/* Features container for navigation arrows */
.features-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Navigation arrows - hidden on desktop */
.features-nav {
  display: none;
  background: var(--white);
  min-height: 48px;
  min-width: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--muted-coral);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--muted-coral);
  padding: 0;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(221, 221, 221, 0.2);
}

.features-nav:hover {
  background: var(--muted-coral);
  color: var(--white);
  transform: scale(1.1);
}

.features-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

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

.feature-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(47, 47, 47, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Interactive hover overlay */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(221, 221, 221, 0.05), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}



.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(221, 221, 221, 0.25);
  border: 1px solid var(--color-accent);
}

.feature-card:hover::before {
  left: 100%;
}



.feature-image {
  margin-bottom: 1.5rem;
}

.feature-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}





.feature-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-icon svg {
  transition: all 0.4s ease;
  filter: none;
}

.feature-card:hover .feature-icon svg {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(221, 221, 221, 0.3));
}

.feature-card h3 {
  color: var(--color-heading);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.feature-card:hover h3 {
  color: var(--color-accent);
}

.feature-card p {
  color: var(--color-body);
  margin-bottom: 0;
  line-height: var(--line-height-base);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.feature-card:hover p {
  transform: translateY(-2px);
}

/* Landscaped Features Section */
.features-landscaped {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--soft-cream) 0%, #f8f6f3 100%);
}

.features-landscaped__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

.features-landscaped__left {
  padding-right: 2rem;
}

.features-landscaped__title {
  color: var(--graphite-navy);
  font-family: var(--font-heading);
  font-size: clamp(var(--font-size-h2), 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  line-height: var(--line-height-heading);
}

.features-landscaped__intro {
  font-size: 1.125rem;
  color: var(--color-body);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 500px;
  font-family: var(--font-body);
}

/* Desktop & Tablet: Prevent title wrapping and mobile-friendly intro */
@media (min-width: 769px) {
  .features-landscaped__title {
    white-space: nowrap;
    font-size: clamp(2rem, 3.5vw, 2.3rem);
  }
  
  .features-landscaped__intro {
    font-size: 1.25rem;
    max-width: 550px;
  }
}

/* Mobile optimization for intro text */
@media (max-width: 768px) {
  .features-landscaped__intro {
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 100%;
    padding: 0 1rem;
  }
}

.features-landscaped__benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

/* Interactive hover overlay for benefit items */
.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(221, 221, 221, 0.08), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}



.benefit-item__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-color: var(--muted-rose-gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  box-shadow: 0 2px 8px rgba(221, 221, 221, 0.2);
}

.benefit-item__icon svg {
  width: 18px;
  height: 18px;
  color: var(--white);
  stroke-width: 2.5;
  transition: all 0.4s ease;
}

.benefit-item__content h3 {
  color: var(--graphite-navy);
  font-family: var(--font-heading);
  font-size: var(--font-size-h4);
  margin-bottom: 0.5rem;
  line-height: var(--line-height-heading);
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.benefit-item__content p {
  color: var(--color-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

/* Hover effects for benefit items */
.benefit-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 25px rgba(221, 221, 221, 0.15);
  background: rgba(255, 255, 255, 0.9);
}

.benefit-item:hover::before {
  left: 100%;
}



.benefit-item:hover .benefit-item__icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 15px rgba(221, 221, 221, 0.3);
}

.benefit-item:hover .benefit-item__icon svg {
  transform: scale(1.1);
}

.benefit-item:hover .benefit-item__content h3 {
  color: var(--color-accent);
}

.benefit-item:hover .benefit-item__content p {
  transform: translateY(-1px);
}

.features-landscaped__right {
  position: relative;
}

.features-landscaped__image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(47, 47, 47, 0.15);
}

.features-landscaped__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.features-landscaped__cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.btn-landscaped {
  background-color: var(--muted-rose-gold-dark);
  color: var(--white);
  padding: 18px 48px;
  border-radius: 8px;
  font-size: var(--font-size-lg);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(221, 221, 221, 0.3);
  border: none;
  cursor: pointer;
}

.btn-landscaped:hover {
  background-color: var(--muted-rose-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(221, 221, 221, 0.4);
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  .features-landscaped__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .features-landscaped__left {
    padding-right: 0;
    order: 1;
  }
  
  .features-landscaped__right {
    order: 2;
  }
  
  .features-landscaped__image img {
    height: 250px;
  }
  
  .benefit-item {
    padding: 0.75rem 0;
  }
  
  .benefit-item__icon {
    width: 24px;
    height: 24px;
  }
  
  .benefit-item__icon svg {
    width: 14px;
    height: 14px;
  }
}

/* Disable animations entirely on mobile - ensure immediate visibility */
@media (max-width: 768px) {
  .fade-up-element {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    display: block !important;
    transition: none !important;
  }
  
  .benefit-item.fade-up-element {
    display: flex !important;
  }
  
  .features-landscaped__benefits {
    display: flex !important;
  }
  
  /* Disable all animation delays on mobile */
  .fade-up-element[data-delay] {
    animation-delay: 0s !important;
    transition-delay: 0s !important;
  }
}

/* Fade Up Animation - Desktop Only */
@media (min-width: 768px) {
  .fade-up-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .fade-up-element.fade-up-element--animated {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Subtle animation for images */
  .fade-up-element--image {
    transform: translateY(10px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  
  .fade-up-element--image.fade-up-element--animated {
    opacity: 1;
    transform: translateY(0);
  }
}

/* How It Works Section */
.how-it-works {
  padding: var(--section-padding);
  background-color: var(--white);
}

/* Reduce How It Works section height on desktop and tablet */
@media (min-width: 769px) {
  .how-it-works {
    padding: 4rem 0;
  }
}

/* How It Works Background Image - Desktop Only */
@media (min-width: 768px) {
  .how-it-works__section {
    background: var(--white);
    position: relative;
  }
  
  .how-it-works__content {
    position: relative;
    z-index: 2;
  }
  
  .how-it-works__section h2,
  .how-it-works__section h3,
  .how-it-works__section p {
    color: var(--color-heading) !important;
  }
  
  .how-it-works__section .circle {
    background-color: var(--color-accent);
    color: var(--white);
  }
  
  .how-it-works__section .step:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(221, 221, 221, 0.3);
  }
}

/* Fade-up Animation - Desktop Only */
@media (min-width: 768px) {
  .fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
  }
  
  .fade-up.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Steps container for navigation arrows */
.steps-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

/* Steps navigation arrows - hidden on desktop */
.steps-nav {
  display: none;
  background: var(--white);
  border: 2px solid var(--muted-coral);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--muted-coral);
  padding: 0;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(221, 221, 221, 0.2);
}

.steps-nav:hover {
  background: var(--muted-coral);
  color: var(--white);
  transform: scale(1.1);
}

.steps-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.three-step-process {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  flex: 1;
  position: relative;
}

/* Progress Indicators - Desktop Only */
@media (min-width: 769px) {
  .three-step-process::before {
    content: '';
    position: absolute;
    top: 40px; /* Center with circle */
    left: calc(16.67% + 40px); /* Start after first circle */
    right: calc(16.67% + 40px); /* End before last circle */
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--warm-stone), var(--color-accent));
    z-index: 1;
  }
  
  .three-step-process::after {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(50% - 8px);
    width: 16px;
    height: 16px;
    background: var(--color-accent);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 4px var(--white);
  }
}

.step {
  flex: 1 1 30%;
  text-align: center;
  padding: 2rem 1rem;
  min-width: 280px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  position: relative;
  z-index: 3;
}

.step:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(221, 221, 221, 0.3);
}

.circle {
  width: 80px;
  height: 80px;
  background-color: var(--color-accent);
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-heading);
  position: relative;
  z-index: 4;
  box-shadow: 0 0 0 4px var(--white);
}

.step h3 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-size: var(--font-size-h3);
  margin-bottom: 1rem;
  line-height: var(--line-height-heading);
}

.step p {
  font-family: var(--font-body);
  color: var(--color-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  margin-bottom: 0;
}

.how-it-works-image {
  max-width: 800px;
  margin: 0 auto;
}

.how-it-works-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--graphite-navy) 0%, #2c3e50 100%);
  color: var(--white);
  padding: 4rem 0 2rem;
}

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

.footer-section h3,
.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-section h3 {
  color: var(--soft-cream);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.footer-section h3:hover {
  transform: scale(1.05);
  text-shadow: 0 0 8px #A6D5FA;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--white);
  transition: color 0.3s ease;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
}

.footer-section ul li a:hover {
  color: var(--color-accent);
}

.footer-cta {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta h4 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 1.2rem;
}

/* Privacy Policy Modal Styles */
.privacy-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  backdrop-filter: none;
}

.privacy-modal-content {
  position: relative;
  background-color: var(--white);
  margin: 2% auto;
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow: hidden;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.privacy-modal-header {
  background: linear-gradient(135deg, var(--graphite-navy) 0%, #2c3e50 100%);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.privacy-modal-header h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
}

.privacy-modal-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.privacy-modal-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.privacy-modal-body {
  padding: 2rem;
  max-height: 70vh;
  overflow-y: auto;
  color: var(--color-body);
  line-height: var(--line-height-base);
}

.privacy-modal-body h3 {
  color: var(--graphite-navy);
  font-family: var(--font-heading);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.privacy-modal-body p {
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
}

.privacy-modal-body ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.privacy-modal-body li {
  margin-bottom: 0.5rem;
}

.privacy-policy-link {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
  font-size: var(--font-size-base);
}

.privacy-policy-link:hover {
  color: var(--soft-cream);
}

/* Mobile responsive adjustments */
@media (max-width: 767px) {
  .privacy-modal-content {
    width: 95%;
    margin: 5% auto;
    max-height: 85vh;
  }
  
  .privacy-modal-header {
    padding: 1rem 1.5rem;
  }
  
  .privacy-modal-header h2 {
    font-size: 1.3rem;
  }
  
  .privacy-modal-body {
    padding: 1.5rem;
    max-height: 65vh;
  }
}

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

.footer-bottom p {
  color: var(--soft-cream);
  margin-bottom: 0;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
}

.footer-bottom a {
  color: var(--white);
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--color-accent);
}

/* Mobile Responsive Design */
@media screen and (max-width: 768px) {
  :root {
    --section-padding: var(--section-padding-mobile);
  }

  .container {
    padding: 0 16px;
  }

  /* Mobile Button Optimization - WCAG Touch Target Compliance */
  .btn {
    padding: 16px 24px;
    font-size: 1rem;
    min-width: auto;
    min-height: 44px; /* WCAG minimum touch target size */
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline {
    padding: 16px 24px;
    font-size: 1rem;
    min-height: 44px; /* WCAG minimum touch target size */
    width: 100%;
    max-width: 280px;
    margin: 0.5rem auto; /* Added vertical spacing between buttons */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Header Mobile */
  .site-header .container {
    flex-wrap: nowrap;
    gap: 1rem;
    justify-content: space-between;
  }

  /* Mobile Typography */
  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  /* Show Hamburger Menu on Mobile */
  .hamburger {
    display: flex !important;
    order: 2;
  }

  /* Hide regular navigation on mobile completely - force hamburger menu only */
  .main-nav {
    display: none !important;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #1F2A36 !important; /* Solid color instead of CSS variable */
    transition: right 0.3s ease;
    z-index: 1010 !important; /* Higher z-index to ensure visibility */
    align-items: center;
    justify-content: center;
  }
  
  /* Only show mobile menu when explicitly activated */
  .main-nav.active {
    display: flex !important;
    right: 0 !important;
    visibility: visible !important;
    background-color: #1F2A36 !important; /* Ensure solid background when active */
  }

  .main-nav ul {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Adequate spacing between touch targets */
    text-align: center;
    padding: 2rem;
    width: 100%;
    list-style: none;
    margin: 0;
  }

  /* Only show mobile menu when explicitly activated */
  .main-nav.active {
    display: flex !important;
    right: 0 !important;
    visibility: visible !important;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    font-size: 1.25rem;
    padding: 1.5rem 2rem; /* Increased padding for 44x44px minimum touch target */
    color: #FFFFFF !important; /* Force white text color */
    min-height: 44px; /* WCAG minimum touch target size */
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .main-nav a:hover,
  .main-nav a:active {
    color: #CC6B5C !important;
    text-shadow: 0 0 6px rgba(221, 221, 221, 0.4);
    background-color: rgba(255, 255, 255, 0.1) !important;
  }

  .main-nav .btn {
    display: inline-block;
    min-width: 200px;
    min-height: 44px; /* WCAG minimum touch target */
    margin: 0.75rem 0; /* Increased spacing between buttons - MOBILE ONLY */
    padding: 1rem 1.5rem; /* Increased padding for larger touch target - MOBILE ONLY */
    line-height: 1.2;
  }

  /* Hero Mobile */
  .hero {
    min-height: 70vh;
    background-attachment: scroll;
  }

  .hero-content {
    padding: 3rem 0;
  }

  .hero-headline {
    margin-bottom: 1rem;
  }

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

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    min-width: 280px;
    padding: 16px 32px;
    font-size: var(--font-size-base);
  }

  /* Features Mobile - Horizontal Scrolling */
  .features-container {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }

  .features-nav {
    display: flex;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(221, 221, 221, 0.2);
    transition: all 0.3s ease;
  }
  
  .features-nav:hover {
    background: var(--color-accent);
    color: var(--white);
    transform: scale(1.1);
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0;
  }
  

  .feature-card {
    padding: 1.5rem;
  }





  /* Steps Mobile - Horizontal Scrolling */
  .steps-container {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .steps-nav {
    display: flex;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(221, 221, 221, 0.2);
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
  }
  
  .steps-nav:hover {
    background: var(--color-accent);
    color: var(--white);
    transform: scale(1.1);
  }

  .three-step-process {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1rem;
    padding: 0.5rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-wrap: nowrap;
  }

  .three-step-process::-webkit-scrollbar {
    display: none;
  }

  .step {
    flex: 0 0 320px;
    scroll-snap-align: start;
    min-width: auto;
    padding: 1.5rem 0.5rem;
  }
  
  .step h3 {
    font-size: 1.125rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
  }
  
  .step p {
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0 0.25rem;
  }

  .circle {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  /* Footer Mobile */
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .footer-bottom {
    padding-top: 1rem;
  }
}

@media (max-width: 480px) {
  .site-header .container {
    flex-direction: column;
    gap: 1rem;
  }

  .main-nav ul {
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }

  .hero {
    min-height: 60vh;
  }

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

  .btn-primary, .btn-secondary {
    min-width: 240px;
    padding: 14px 24px;
    font-size: 0.95rem;
  }
}

/* Hero Animation */
@keyframes heroSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: heroSlideUp 0.8s ease-out;
}

.services-hero .services-hero-content,
.about-hero .about-hero-content,
.contact-hero .contact-hero-content,
.faq-hero .faq-hero-content,
.booking-hero .booking-hero-content {
  animation: heroSlideUp 0.8s ease-out;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-content,
  .services-hero .services-hero-content,
  .about-hero .about-hero-content,
  .contact-hero .contact-hero-content,
  .faq-hero .faq-hero-content,
  .booking-hero .booking-hero-content {
    animation: none !important;
  }
}

/* Focus States for Accessibility */
a:focus,
.btn:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Booking Page Styles */
.booking-hero {
  padding: 4rem 0;
  background-color: var(--soft-cream);
  text-align: center;
}

.booking-headline {
  color: var(--graphite-navy);
  margin-bottom: 1rem;
}

.booking-subheadline {
  font-size: var(--font-size-lg);
  color: var(--color-body);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--line-height-base);
}

.booking-options {
  padding: 4rem 0;
  background-color: var(--white);
}


.booking-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.booking-card {
  background-color: var(--white);
  border: 2px solid #CC6B5C;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(221, 221, 221, 0.15);
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 300px;
}

/* All cards now have consistent styling - featured class no longer needed */

.booking-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(221, 221, 221, 0.4);
}

.booking-header h2 {
  color: var(--graphite-navy);
  margin-bottom: 0.5rem;
}

.booking-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
}

.booking-content h3 {
  color: var(--graphite-navy);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.booking-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.booking-features li {
  padding: 0.5rem 0;
  color: var(--color-body);
  position: relative;
  padding-left: 1.5rem;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
}

.booking-features li:before {
  content: "✓";
  color: var(--color-accent);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.booking-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.booking-features {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.booking-best-for {
  background-color: var(--white);
  padding: 1rem;
  border-radius: 8px;
  margin: 0 0 1.5rem 0;
  color: var(--color-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  border: 2px solid #1F2A36;
}

.booking-cta {
  margin-top: auto;
  padding-top: 0;
}

.contact-form-section {
  padding: 4rem 0;
  background-color: var(--soft-cream);
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h2 {
  color: var(--graphite-navy);
  margin-bottom: 1rem;
}

.form-header p {
  color: var(--color-body);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-base);
}

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

.booking-form {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(47, 47, 47, 0.08);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--graphite-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #B8E0FF;
  border-radius: 6px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.3s ease;
}

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

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

.form-submit .btn {
  min-width: 200px;
}

/* Problem Section Styles */
.problem-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.problem-section .fade-up-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.problem-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(47, 47, 47, 0.1);
}

.problem-headline {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700; /* Increased from 600 for stronger visual presence */
  color: var(--graphite-navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.problem-subheadline {
  font-size: var(--font-size-xl); /* Increased from lg to xl for better visual hierarchy */
  color: var(--color-body);
  margin-bottom: 3rem; /* Increased spacing from bullet points */
  line-height: 1.5;
  font-weight: 500; /* Added slight weight for emphasis */
}

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

.problem-item {
  font-size: var(--font-size-lg);
  color: var(--color-body);
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
}

.problem-item:before {
  content: "✗";
  color: var(--color-accent);
  font-weight: bold;
  font-size: 1.25rem;
  position: absolute;
  left: 0;
  top: 0;
}

.problem-item:last-child {
  margin-bottom: 0;
}

.problem-item:hover {
  color: var(--color-accent);
  transform: translateX(5px);
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.problem-item:hover:before {
  color: var(--graphite-navy);
  transform: scale(1.1);
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .problem-section {
    padding: 3rem 0;
  }
  
  .problem-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .problem-image {
    order: -1;
  }
  
  .problem-headline {
    font-size: 1.75rem;
  }
  
  .problem-item {
    text-align: left;
    font-size: var(--font-size-base);
  }
}

/* Services Page Styles */
.services-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--graphite-navy) 0%, #2c3e50 100%);
  background-image: url('images/services-hero-desktop.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.services-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(31, 42, 54, 0.85) 0%, rgba(44, 62, 80, 0.9) 100%);
  z-index: 1;
}

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

.services-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.services-headline {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
}

.services-subheadline {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 3rem;
  line-height: 1.4;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-hero {
  padding: 4rem 0;
  background-image: url('/images/inquiry-hero-desktop.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll; /* Better mobile performance */
  text-align: center;
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Add loading placeholder */
  background-color: #f0f0f0;
}

/* Fallback for browsers that don't support WebP */
.no-webp .contact-hero {
  background-image: url('/images/inquiry-hero-desktop.jpg');
}

/* Mobile optimized version */
@media (max-width: 768px) {
  .contact-hero {
    background-image: url('/images/inquiry-hero-mobile.webp');
    min-height: 40vh;
    padding: 3rem 0;
  }
  
  .no-webp .contact-hero {
    background-image: url('/images/inquiry-hero-mobile.jpg');
  }
}

/* Tablet optimization */
@media (min-width: 769px) and (max-width: 1024px) {
  .contact-hero {
    background-image: url('/images/inquiry-hero-desktop.webp');
  }
  
  .no-webp .contact-hero {
    background-image: url('/images/inquiry-hero-desktop.jpg');
  }
}

/* FAQ page uses contact-hero class with different background image */
body.faq-page .contact-hero {
  background-image: url('/images/faq-hero-desktop.webp');
}

/* WebP fallback for FAQ page */
.no-webp body.faq-page .contact-hero {
  background-image: url('/images/faq-hero-desktop.jpg');
}

/* FAQ page mobile optimization */
@media (max-width: 768px) {
  body.faq-page .contact-hero {
    background-image: url('/images/faq-hero-mobile.webp');
  }
  
  .no-webp body.faq-page .contact-hero {
    background-image: url('/images/faq-hero-mobile.jpg');
  }
}

/* FAQ page tablet optimization */
@media (min-width: 769px) and (max-width: 1024px) {
  body.faq-page .contact-hero {
    background-image: url('/images/faq-hero-desktop.webp');
  }
  
  .no-webp body.faq-page .contact-hero {
    background-image: url('/images/faq-hero-desktop.jpg');
  }
}

/* Services page uses contact-hero class with different background image */
body.services-page .contact-hero {
  background-image: url('/images/services-hero-desktop.webp');
}

/* WebP fallback for services page */
.no-webp body.services-page .contact-hero {
  background-image: url('/images/services-hero-desktop.jpg');
}

/* Services page mobile optimization */
@media (max-width: 768px) {
  body.services-page .contact-hero {
    background-image: url('/images/services-hero-mobile.webp');
    background-attachment: scroll;
  }
  
  .no-webp body.services-page .contact-hero {
    background-image: url('/images/services-hero-mobile.jpg');
  }
}

/* Services page tablet optimization */
@media (min-width: 769px) and (max-width: 1024px) {
  body.services-page .contact-hero {
    background-image: url('/images/services-hero-desktop.webp');
  }
  
  .no-webp body.services-page .contact-hero {
    background-image: url('/images/services-hero-desktop.jpg');
  }
}

/* About page uses contact-hero class with different background image */
body.about-page .contact-hero {
  background-image: url('/images/about-hero-desktop.webp');
}

/* WebP fallback for about page */
.no-webp body.about-page .contact-hero {
  background-image: url('/images/about-hero-desktop.jpg');
}

/* About page mobile optimization */
@media (max-width: 768px) {
  body.about-page .contact-hero {
    background-image: url('/images/about-hero-mobile.webp');
    background-attachment: scroll;
  }
  
  .no-webp body.about-page .contact-hero {
    background-image: url('/images/about-hero-mobile.jpg');
  }
}

/* About page tablet optimization */
@media (min-width: 769px) and (max-width: 1024px) {
  body.about-page .contact-hero {
    background-image: url('/images/about-hero-desktop.webp');
  }
  
  .no-webp body.about-page .contact-hero {
    background-image: url('/images/about-hero-desktop.jpg');
  }
}

/* Start Your Website page uses contact-hero class with different background image */
body.booking-page .contact-hero {
  background-image: url('/images/start-hero-desktop.webp');
}

/* WebP fallback for start page */
.no-webp body.booking-page .contact-hero {
  background-image: url('/images/start-hero-desktop.jpg');
}

/* Start page mobile optimization */
@media (max-width: 768px) {
  body.booking-page .contact-hero {
    background-image: url('/images/start-hero-mobile.webp');
    background-attachment: scroll;
  }
  
  .no-webp body.booking-page .contact-hero {
    background-image: url('/images/start-hero-mobile.jpg');
  }
}

/* Start page tablet optimization */
@media (min-width: 769px) and (max-width: 1024px) {
  body.booking-page .contact-hero {
    background-image: url('/images/start-hero-desktop.webp');
  }
  
  .no-webp body.booking-page .contact-hero {
    background-image: url('/images/start-hero-desktop.jpg');
  }
}

/* Booking page uses contact-hero class with different background image */
body.booking-page .contact-hero {
  background-image: url('/images/start-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(31, 42, 54, 0.85) 0%, rgba(44, 62, 80, 0.9) 100%);
  z-index: 1;
}

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

.contact-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.contact-headline {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 2.5rem);
}

.about-subheadline {
  font-size: var(--font-size-lg);
  color: var(--color-body);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--line-height-base);
}

.contact-subheadline {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--line-height-base);
}

.services-plans {
  padding: 4rem 0;
  background-color: var(--white);
}

/* Plans container for navigation arrows */
.plans-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Plans navigation arrows - hidden on desktop */
.plans-nav {
  display: none;
  background: var(--white);
  border: 2px solid var(--muted-coral);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--muted-coral);
  padding: 0;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(221, 221, 221, 0.2);
}

.plans-nav:hover {
  background: var(--muted-coral);
  color: var(--white);
  transform: scale(1.1);
}

.plans-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.plans-grid {
  display: flex;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
  flex: 1;
}

.plan-card {
  background-color: var(--white);
  border: 2px solid #CC6B5C;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.plan-card.featured {
  border-color: #CC6B5C !important; /* Explicit brand color - July 1, 2025 */
  box-shadow: 0 4px 20px rgba(221, 221, 221, 0.15);
  transform: scale(1.05);
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(47, 47, 47, 0.1);
}

.plan-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.plan-header h2 {
  color: var(--graphite-navy);
  margin-bottom: 0.5rem;
}

.plan-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.plan-subtitle {
  color: var(--color-body);
  margin-bottom: 1.5rem;
  font-style: italic;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  text-align: left;
}

.plan-features li {
  padding: 0.5rem 0;
  color: var(--color-body);
  position: relative;
  padding-left: 1.5rem;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
}

.plan-features li:before {
  content: "✓";
  color: var(--color-accent);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.plan-best-for {
  background-color: white;
  border: 1px solid #1F2A36;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.plan-best-for p {
  margin: 0;
  color: var(--color-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
}

.plan-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.plan-cta {
  margin-top: auto; /* Button alignment fix - July 1, 2025 */
}

.services-features {
  padding: 4rem 0;
  background-color: var(--soft-cream);
}

/* About Page Styles */
.about-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--graphite-navy) 0%, #2c3e50 100%);
  background-image: url('../images/about-hero-desktop.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(31, 42, 54, 0.85) 0%, rgba(44, 62, 80, 0.9) 100%);
  z-index: 1;
}

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

.about-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.about-headline {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
}

.about-subheadline {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.4;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.mission-section {
  padding: 4rem 0;
  background-color: var(--white);
  text-align: center;
}

.mission-content h2 {
  color: var(--graphite-navy);
  margin-bottom: 2rem;
}

.mission-statement {
  font-size: var(--font-size-h3);
  font-style: italic;
  color: var(--color-accent);
  max-width: 800px;
  margin: 0 auto;
  line-height: var(--line-height-heading);
  transition: all 0.3s ease-in-out;
  padding: 1rem;
  border-radius: 8px;
  cursor: pointer;
}

.mission-statement:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(224, 127, 111, 0.4);
}

.values-section {
  padding: 4rem 0;
  background-color: var(--soft-cream);
}

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

.values-section .values-grid-three-column {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Desktop/Tablet Values - Restore Original Sizing */
@media (min-width: 769px) {
  .values-grid-three-column {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 1.5rem !important;
    overflow: visible !important;
    padding: 0 !important;
    flex: none !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
  }
  
  .values-grid-three-column .value-card {
    height: auto !important;
    width: 100% !important;
    display: block !important;
    padding: 3rem 2.5rem !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    flex: none !important;
    scroll-snap-align: initial !important;
    justify-content: initial !important;
    flex-direction: initial !important;
    min-height: 300px !important;
    min-width: 350px !important;
  }
  
  .values-grid-three-column .value-card h3 {
    margin-bottom: 1.5rem !important;
    margin-top: 0 !important;
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
  }
  
  .values-grid-three-column .value-card p {
    margin: 0 !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    overflow: visible !important;
    text-overflow: initial !important;
  }
  
  .values-container {
    position: relative !important;
    display: block !important;
    align-items: initial !important;
    gap: initial !important;
  }
  
  /* Founders Section Desktop Layout */
  .founders-text-desktop {
    display: block !important;
  }
  
  .founders-mobile {
    display: none !important;
  }
  
  .founders-image {
    display: block !important;
    max-width: 700px !important;
    margin: 3rem auto 0 !important;
    text-align: center !important;
  }
}

/* Values Navigation - Hidden on Desktop */
.values-container {
  position: relative;
}

.values-nav {
  display: none;
}

/* Mobile-Only Testimonials Section */
.mobile-testimonials {
  display: none;
  padding: 4rem 0;
  background-color: var(--soft-cream);
}

.testimonials-container {
  position: relative;
}

.testimonials-nav {
  display: none;
}

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

.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(47, 47, 47, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(221, 221, 221, 0.3);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  color: var(--color-body);
  margin-bottom: 0;
  line-height: 1.6;
}

.testimonial-author strong {
  color: var(--graphite-navy);
  display: block;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: var(--muted-coral);
  font-size: 0.9rem;
}

/* Show navigation arrows on mobile only */
@media (max-width: 768px) {
  .values-nav {
    display: none !important;
  }
  
  .values-nav:hover {
    background: var(--muted-coral) !important;
    color: var(--white) !important;
    transform: scale(1.1) !important;
  }
  
  .values-nav:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    transform: none !important;
  }
  
  /* Mobile Testimonials Section */
  .mobile-testimonials {
    display: block;
  }
  
  .testimonials-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .testimonials-nav {
    display: none !important;
  }
  
  .testimonials-nav:hover {
    background: var(--muted-coral) !important;
    color: var(--white) !important;
    transform: scale(1.1) !important;
  }
  
  .testimonials-nav:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    transform: none !important;
  }
  
  .testimonials-grid {
    display: flex !important;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    padding: 0.5rem 0;
  }
  
  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }
  
  .testimonials-grid .testimonial-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.value-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(47, 47, 47, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(221, 221, 221, 0.4);
}

.value-card h3 {
  color: var(--graphite-navy);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--color-body);
  margin-bottom: 0;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
}

.who-we-serve {
  padding: 2.5rem 0;
  background-color: var(--white);
}

.serve-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.serve-categories ul {
  flex: 1;
  min-width: 250px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  .who-we-serve {
    padding: 2rem 0;
  }
  
  .serve-content {
    padding: 0 1rem;
  }
  
  .serve-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .serve-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--color-body);
  }
  
  .serve-categories {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .serve-categories ul {
    min-width: 100%;
    background: var(--soft-cream);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
    margin-bottom: 1rem;
  }
  
  .serve-categories li {
    padding: 0.4rem 0;
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .serve-summary {
    text-align: center;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
  }
  
  .serve-summary p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--color-body);
  }
  
  .serve-cta {
    text-align: center;
    margin-top: 2rem;
    max-width: none;
    justify-content: center;
    padding-left: 0;
  }
}

.serve-categories li {
  padding: 0.5rem 0;
  color: var(--color-body);
  position: relative;
  padding-left: 1.5rem;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
}

.serve-categories li:before {
  content: "•";
  color: var(--color-accent);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.serve-summary {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.serve-summary p {
  font-size: var(--font-size-lg);
  color: var(--color-body);
  margin-bottom: 2rem;
  line-height: var(--line-height-base);
}

.serve-cta {
  margin-top: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: flex;
  justify-content: flex-start;
  padding-left: calc(25% - 62px);
}

/* Founders Section */
.founders-section {
  padding: var(--section-padding);
  background-color: var(--soft-cream);
  text-align: center;
}

/* Founders content - desktop by default */
.founders-text-desktop {
  display: block;
}

.founders-mobile {
  display: none;
}

.founders-image {
  display: block;
}

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

.founders-content h2 {
  color: var(--graphite-navy);
  margin-bottom: 2rem;
}

.founders-content p {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-base);
  color: var(--color-body);
  margin-bottom: 1.5rem;
  text-align: left;
}

.founders-text-desktop p:last-of-type {
  margin-bottom: 3rem;
}

.founders-image {
  max-width: 700px;
  margin: 3rem auto 0;
  text-align: center;
}

.founders-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(47, 47, 47, 0.1);
}

.about-image {
  max-width: 800px;
  margin: 3rem auto 0;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Contact Page Styles */
.contact-form {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(47, 47, 47, 0.08);
  max-width: 700px;
  margin: 0 auto;
}

.tally-form-container {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(47, 47, 47, 0.08);
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

.tally-form-container iframe {
  border-radius: 12px;
}

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

.contact-info {
  padding: 4rem 0;
  background-color: var(--white);
}

.contact-info-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 2rem;
  width: 100%;
}

.contact-card {
  background-color: var(--soft-cream);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.contact-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(110, 197, 233, 0.5);
}

.contact-icon {
  margin-bottom: 1.5rem;
}

.contact-icon svg {
  color: var(--color-accent);
  width: 40px;
  height: 40px;
}

.contact-card h3 {
  color: var(--graphite-navy);
  margin-bottom: 1rem;
}

.contact-card p {
  color: var(--color-body);
  margin-bottom: 0.5rem;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
}

.contact-card a {
  color: var(--color-accent);
  font-weight: 600;
}

.contact-card a:hover {
  color: #7A503F;
}

/* Mobile Responsiveness for New Pages */
@media (max-width: 768px) {
  /* Plans Mobile - Horizontal Scrolling */
  .plans-container {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .plans-nav {
    display: none !important;
  }

  .plans-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1rem;
    padding: 0.5rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-wrap: nowrap;
  }

  .plans-grid::-webkit-scrollbar {
    display: none;
  }

  .plan-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }
  
  .plan-card.featured {
    transform: none;
  }
  
  .booking-grid {
    flex-direction: column;
  }
  
  .booking-card {
    min-width: auto;
    flex: none;
  }
}
  
  .plan-card.featured:hover {
    transform: translateY(-5px);
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  /* Values Mobile Horizontal Scrolling */
  .values-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .values-grid-three-column {
    display: flex !important;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    padding: 0.5rem 0;
  }
  
  .values-grid-three-column::-webkit-scrollbar {
    display: none;
  }
  
  .values-grid-three-column .value-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    height: 240px !important;
    width: 280px !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .values-grid-three-column .value-card h3 {
    margin-bottom: 1rem;
    margin-top: 0;
    font-size: 1.25rem;
    line-height: 1.3;
  }
  
  .values-grid-three-column .value-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Founders Section Mobile Layout */
  .founders-text-desktop {
    display: none;
  }
  
  .founders-mobile {
    display: block;
  }
  
  .founders-image {
    display: none;
  }
  
  .founders-image-mobile {
    margin-bottom: 2rem;
  }
  
  .serve-categories {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  
  /* Contact Info Mobile Horizontal Scrolling - Mobile Only */
  @media (max-width: 767px) {
    .contact-info-container {
      position: relative;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    
    .contact-info-grid {
      display: flex !important;
      gap: 2rem;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none;
      -ms-overflow-style: none;
      flex: 1;
      padding: 0.5rem 0;
    }
    
    .contact-info-grid::-webkit-scrollbar {
      display: none;
    }
    
    .contact-info-grid .contact-card {
      flex: 0 0 280px;
      scroll-snap-align: start;
      height: auto !important;
      width: 280px !important;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding: 2rem;
      box-sizing: border-box;
      min-height: 220px;
    }
    
    .contact-info-nav {
      display: flex !important;
      width: 40px !important;
      height: 40px !important;
      border: 2px solid var(--muted-coral) !important;
      border-radius: 50% !important;
      background: var(--white) !important;
      cursor: pointer !important;
      transition: all 0.3s ease !important;
      color: var(--muted-coral) !important;
      padding: 0 !important;
      align-items: center !important;
      justify-content: center !important;
      box-shadow: 0 2px 10px rgba(221, 221, 221, 0.2) !important;
      flex-shrink: 0 !important;
    }
    
    .contact-info-nav:hover {
      background: var(--muted-coral) !important;
      color: var(--white) !important;
      transform: scale(1.1) !important;
    }
    
    .contact-info-nav:disabled {
      opacity: 0.5 !important;
      cursor: not-allowed !important;
      transform: none !important;
    }
  }

  /* Hide contact info navigation arrows on desktop and tablet */
  @media (min-width: 768px) {
    .contact-info-nav {
      display: none !important;
    }
  }
}

/* FAQ Page Styles */
.faq-hero {
  padding: 4rem 0;
  background-image: url('/images/faq-hero-desktop.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(31, 42, 54, 0.85) 0%, rgba(44, 62, 80, 0.9) 100%);
  z-index: 1;
}

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

.faq-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.faq-headline {
  color: var(--white);
  margin-bottom: 1rem;
}

.faq-subheadline {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--line-height-base);
}

.faq-section {
  padding: 4rem 0;
  background-color: var(--white);
  position: relative;
  z-index: 10;
  margin-top: 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 4rem;
}

.faq-item {
  margin-bottom: 1rem;
  border: 2px solid #B8E0FF;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: var(--color-accent);
}

.faq-item details {
  background-color: var(--white);
}

.faq-item summary {
  padding: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--graphite-navy);
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: background-color 0.3s ease;
}

.faq-item summary:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--color-accent);
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  background-color: var(--white);
}

.faq-answer p {
  color: var(--color-body);
  line-height: var(--line-height-base);
  margin: 0;
  font-size: var(--font-size-base);
}

.faq-cta {
  text-align: center;
  padding: 3rem 2rem;
  background-color: var(--soft-cream);
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.faq-cta h2 {
  color: var(--graphite-navy);
  margin-bottom: 1rem;
}

.faq-cta p {
  color: var(--color-body);
  margin-bottom: 2rem;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-base);
}

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

/* Mobile Responsiveness for FAQ */
@media (max-width: 768px) {
  .faq-item summary {
    padding: 1rem;
    font-size: 1rem;
  }
  
  .faq-item summary::after {
    right: 1rem;
  }
  
  .faq-answer {
    padding: 0 1rem 1rem 1rem;
  }
  
  .faq-cta {
    padding: 2rem 1rem;
  }
  
  .faq-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .faq-cta-buttons .btn {
    min-width: 240px;
  }
}

/* High Contrast Support */
@media (prefers-contrast: high) {
  .btn-secondary {
    background-color: var(--white);
  }
  
  .feature-card {
    border: 2px solid rgba(47, 47, 47, 0.2);
  }
}

/* Mobile Spacing Optimization */
@media (max-width: 768px) {
  :root {
    --section-padding: 32px 0;
    --section-padding-mobile: 32px 0;
  }

  .hero {
    padding: 32px 0;
  }

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

  .about-hero {
    min-height: 60vh;
    background-attachment: scroll;
  }

  .about-hero-content {
    padding: 2rem 0;
  }

  .services-hero {
    min-height: 60vh;
    background-attachment: scroll;
  }

  .services-hero-content {
    padding: 2rem 0;
  }

  .services-subheadline {
    color: rgba(255, 255, 255, 0.9) !important;
  }

  .contact-hero {
    min-height: 60vh;
    background-attachment: scroll;
  }

  .contact-hero-content {
    padding: 2rem 0;
  }

  .faq-hero {
    min-height: 60vh;
    background-attachment: scroll;
  }

  .faq-hero-content {
    padding: 2rem 0;
  }



  .contact-subheadline {
    font-size: clamp(1rem, 2.5vw, 1.125rem) !important;
  }

  .faq-headline {
    font-size: clamp(2rem, 5vw, 2.5rem) !important;
  }

  .faq-subheadline {
    font-size: clamp(1rem, 2.5vw, 1.125rem) !important;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
  }

  .features {
    padding: 32px 0;
  }

  .how-it-works {
    padding: 32px 0;
  }

  .hero-content {
    padding: 1rem 0;
  }

  .hero-headline {
    margin-bottom: 1rem;
  }

  .hero-subheadline {
    margin-bottom: 1.5rem;
  }

  .section-header h2 {
    margin-bottom: 0.75rem;
  }

  .section-header p {
    margin-bottom: 1.5rem;
  }

  h1, h2, h3 {
    margin-bottom: 10px;
  }

  p {
    margin-bottom: 12px;
  }

  img {
    margin-bottom: 12px;
  }

  .feature-image {
    margin-bottom: 1rem;
  }

  .step {
    margin-bottom: 1rem;
  }

  .founders-section {
    padding: 32px 0;
  }
}

/* Privacy Policy Page Styles */
.privacy-page .privacy-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--graphite-navy) 0%, #2c3e50 100%);
  color: white;
  text-align: center;
}

.privacy-page .privacy-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  font-weight: 600;
}

.privacy-page .privacy-hero p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.privacy-page .privacy-content {
  padding: 4rem 0;
  background-color: #ffffff;
}

.privacy-page .content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.privacy-page .effective-date {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted-coral);
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: var(--soft-cream);
  border-radius: 8px;
  border-left: 4px solid var(--muted-coral);
}

.privacy-page h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--graphite-navy);
  margin: 2rem 0 1rem 0;
  font-weight: 600;
}

.privacy-page p {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: var(--iron-black);
  margin: 1rem 0;
  font-size: 1rem;
}

.privacy-page ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.privacy-page li {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: var(--iron-black);
  margin: 0.5rem 0;
}

/* Mobile Styles for Privacy Page */
@media (max-width: 768px) {
  .privacy-page .privacy-hero {
    padding: 6rem 0 3rem;
  }
  
  .privacy-page .privacy-content {
    padding: 3rem 0;
  }
  
  .privacy-page .content-wrapper {
    padding: 0 1rem;
  }
  
  .privacy-page h2 {
    font-size: 1.3rem;
  }
  
  .privacy-page p, .privacy-page li {
    font-size: 0.95rem;
  }
}

/* Privacy Page Navigation Menu Styling */
.privacy-page .main-nav a {
  color: var(--graphite-navy);
}

.privacy-page .main-nav a:hover,
.privacy-page .main-nav a:active {
  color: #CC6B5C;
  text-shadow: 0 0 6px rgba(221, 221, 221, 0.4);
}

/* Privacy Page Mobile Navigation Menu Styling */
@media (max-width: 768px) {
  .privacy-page .main-nav.active a {
    color: var(--graphite-navy);
  }
  
  .privacy-page .main-nav.active a:hover,
  .privacy-page .main-nav.active a:active {
    color: #CC6B5C;
    text-shadow: 0 0 6px rgba(221, 221, 221, 0.4);
  }
}

/* Privacy Page Footer Link Styling */
.privacy-page .footer .footer-bottom a {
  color: var(--white) !important;
  transition: color 0.3s ease;
  text-decoration: underline;
  outline: none;
}

.privacy-page .footer .footer-bottom a:hover {
  color: var(--color-accent) !important;
  text-decoration: underline;
}

.privacy-page .footer .footer-bottom a:focus {
  outline: none;
}

/* Terms of Service Page Styles */
.terms-page .terms-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--graphite-navy) 0%, #2c3e50 100%);
  color: white;
  text-align: center;
}

.terms-page .terms-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  font-weight: 600;
}

.terms-page .terms-hero p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.terms-page .terms-content {
  padding: 4rem 0;
  background-color: #ffffff;
}

.terms-page .content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.terms-page .effective-date {
  background-color: var(--soft-cream);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  font-weight: 600;
  color: var(--graphite-navy);
}

.terms-page h2 {
  font-family: 'Playfair Display', serif;
  color: var(--graphite-navy);
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.terms-page p {
  margin-bottom: 1.2rem;
  line-height: 1.7;
  color: var(--color-body);
}

.terms-page ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.terms-page li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: var(--color-body);
}

.terms-page a {
  color: var(--color-accent);
  text-decoration: none;
}

.terms-page a:hover {
  text-decoration: underline;
}

/* Mobile responsive adjustments for Terms page */
@media (max-width: 767px) {
  .terms-page .terms-hero {
    padding: 6rem 0 3rem;
  }
  
  .terms-page .terms-content {
    padding: 3rem 0;
  }
  
  .terms-page .content-wrapper {
    padding: 0 1rem;
  }
  
  .terms-page p, .terms-page li {
    font-size: 0.95rem;
  }
}

/* Terms Page Navigation Menu Styling */
.terms-page .main-nav a {
  color: var(--graphite-navy);
}

.terms-page .main-nav a:hover,
.terms-page .main-nav a:active {
  color: #CC6B5C;
  text-shadow: 0 0 6px rgba(221, 221, 221, 0.4);
}

/* Terms Page Mobile Navigation Menu Styling */
@media (max-width: 768px) {
  .terms-page .main-nav.active a {
    color: var(--graphite-navy);
  }
  
  .terms-page .main-nav.active a:hover,
  .terms-page .main-nav.active a:active {
    color: #CC6B5C;
    text-shadow: 0 0 6px rgba(221, 221, 221, 0.4);
  }
}

/* Terms Page Footer Link Styling */
.terms-page .footer .footer-bottom a {
  color: var(--white) !important;
  transition: color 0.3s ease;
  text-decoration: underline;
  outline: none;
}

.terms-page .footer .footer-bottom a:hover {
  color: var(--color-accent) !important;
  text-decoration: underline;
}

.terms-page .footer .footer-bottom a:focus {
  outline: none;
}

/* Terms Page Footer Button Text Fix - Updated for WCAG compliance */
.terms-page .footer .btn-primary {
  color: var(--graphite-navy) !important; /* Dark text for better contrast */
}

.terms-page .footer .btn-primary:hover {
  color: var(--graphite-navy) !important; /* Maintain dark text on hover */
}

/* Portfolio Section Styles - Enhanced Desktop Design */
.portfolio-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--soft-cream) 0%, #f8f6f3 100%);
  position: relative;
}

.portfolio-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.3;
}

.portfolio-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" width="60" height="60"><circle cx="30" cy="30" r="1" fill="%23CC6B5C" opacity="0.1"/></svg>');
  pointer-events: none;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.portfolio-header::after {
  content: '';
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  display: block;
  margin: 2rem auto 0;
}

.portfolio-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3rem);
  color: var(--graphite-navy);
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
}

.portfolio-header p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--color-body);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2.5rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  cursor: pointer;
}

.portfolio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(221, 221, 221, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.portfolio-card::after {
  content: 'View Project';
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--color-accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  transition: all 0.3s ease;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(221, 221, 221, 0.3);
}

.portfolio-card:hover::before {
  opacity: 1;
}

.portfolio-card:hover::after {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.portfolio-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(221, 221, 221, 0.15);
  border-color: var(--color-accent);
}

.portfolio-card:nth-child(3) {
  grid-column: 1 / -1;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.portfolio-card:nth-child(3)::after {
  content: 'Featured';
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 4;
  transition: all 0.3s ease;
}

.portfolio-card:nth-child(3):hover::after {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(221, 221, 221, 0.4);
}

.portfolio-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: var(--soft-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--graphite-navy) 0%, #2c3e50 100%);
  position: relative;
  overflow: hidden;
}

.portfolio-placeholder.mobile-design {
  background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
}

.portfolio-placeholder.landscapes {
  background: linear-gradient(135deg, #4BE74E 0%, #2E8B32 100%);
}

.portfolio-placeholder-content {
  text-align: center;
  color: white;
  z-index: 2;
}

.portfolio-placeholder-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.portfolio-placeholder-content p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

.portfolio-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  z-index: 1;
}

.portfolio-card:hover .portfolio-placeholder {
  transform: scale(1.02);
}

.portfolio-content {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.portfolio-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--graphite-navy);
  margin-bottom: 0.75rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.portfolio-content p {
  color: var(--color-body);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 1rem;
  transition: all 0.3s ease;
}

/* Enhanced portfolio card hover effects */
.portfolio-card:hover .portfolio-content {
  transform: translateY(-3px);
}

.portfolio-card:hover .portfolio-content h3 {
  color: var(--color-accent);
}

.portfolio-card:hover .portfolio-content p {
  color: var(--graphite-navy);
  transform: translateY(-2px);
}

.portfolio-content .btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio-content .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.portfolio-content .btn:hover::before {
  left: 100%;
}

.portfolio-cta {
  background: transparent;
  color: var(--graphite-navy);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 3rem;
  position: relative;
}

.portfolio-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--graphite-navy);
}

.portfolio-cta p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 2.5rem;
  color: var(--color-body);
}

/* Desktop & Tablet Editorial Layout */
@media (min-width: 769px) {
  .portfolio-editorial .portfolio-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Remove white background from CTA on desktop/tablet */
  .portfolio-cta {
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
  }
  
  .portfolio-editorial .portfolio-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .portfolio-editorial .portfolio-item.animate-in {
    opacity: 1;
    transform: translateY(0);
  }
  
  .portfolio-editorial .portfolio-item-reverse {
    direction: rtl;
  }
  
  .portfolio-editorial .portfolio-item-reverse .portfolio-visuals,
  .portfolio-editorial .portfolio-item-reverse .portfolio-details {
    direction: ltr;
  }
  
  .portfolio-editorial .portfolio-visuals {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .portfolio-editorial .portfolio-visuals:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  }
  
  .portfolio-editorial .portfolio-visuals picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .portfolio-editorial .portfolio-visuals img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .portfolio-editorial .portfolio-visuals:hover img {
    transform: scale(1.05);
  }
  
  .portfolio-editorial .portfolio-details {
    padding: 2rem;
  }
  
  .portfolio-editorial .portfolio-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--graphite-navy);
    margin-bottom: 1.5rem;
    font-weight: 700;
  }
  
  .portfolio-editorial .portfolio-details p {
    color: var(--color-body);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  
  .portfolio-editorial .portfolio-details .btn {
    display: inline-block;
    width: auto;
    min-width: 150px;
  }
  
  .portfolio-editorial .portfolio-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .portfolio-editorial .portfolio-header.animate-in {
    opacity: 1;
    transform: translateY(0);
  }
  
  .portfolio-editorial .portfolio-cta {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .portfolio-editorial .portfolio-cta.animate-in {
    opacity: 1;
    transform: translateY(0);
  }
  
  .portfolio-header::after {
    content: '';
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    display: block;
    margin: 2rem auto 0;
  }
  
  .portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" width="60" height="60"><circle cx="30" cy="30" r="1" fill="%23CC6B5C" opacity="0.1"/></svg>');
    pointer-events: none;
  }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .portfolio-section {
    padding: 3rem 0;
    background: var(--soft-cream);
  }
  
  .portfolio-section::before {
    display: none;
  }
  
  .portfolio-header::after {
    display: none;
  }
  
  /* Mobile: Use original card layout */
  .portfolio-editorial .portfolio-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .portfolio-editorial .portfolio-item {
    display: block;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0 1rem;
  }
  
  .portfolio-editorial .portfolio-item-reverse {
    direction: ltr;
  }
  
  .portfolio-editorial .portfolio-visuals {
    border-radius: 0;
    box-shadow: none;
    height: 200px;
    overflow: hidden;
  }
}

/* ====================================
   ABOUT US PAGE DESKTOP ENHANCEMENTS
   Desktop-only styling improvements
   ==================================== */

/* Desktop Mission Section Enhancement - Option 5: Split with Visual Element */
@media (min-width: 769px) {
  .about-page .mission-section {
    padding: 3rem 0;
    background: white;
    position: relative;
    overflow: hidden;
  }
  
  .about-page .mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--color-accent), #e8a792);
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
  }
  
  .about-page .mission-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--graphite-navy), #3a4855);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
  }
  
  .about-page .mission-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  
  .about-page .mission-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .about-page .mission-text.animate-in {
    opacity: 1;
    transform: translateY(0);
  }
  
  .about-page .mission-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(var(--font-size-h2), 4vw, 2.75rem);
    color: var(--graphite-navy);
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.1;
    position: relative;
  }
  
  .about-page .mission-text h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--color-accent);
    display: block;
    margin: 2rem 0 0;
  }
  
  .about-page .mission-statement {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--color-body);
    font-weight: 400;
    position: relative;
    padding: 3rem 0;
  }
  
  .about-page .mission-statement::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-accent), transparent);
  }
  
  .about-page .mission-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .about-page .mission-visual.animate-in {
    opacity: 1;
    transform: translateY(0);
  }
  
  .about-page .mission-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--color-accent), #e8a792);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
  }
  
  .about-page .mission-visual::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--graphite-navy);
    border-radius: 50%;
    opacity: 0.08;
    z-index: 2;
  }
  
  .about-page .mission-icon {
    position: relative;
    z-index: 3;
    width: 80px;
    height: 80px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(221, 221, 221, 0.3);
  }
  
  .about-page .mission-icon svg {
    width: 40px;
    height: 40px;
  }
}

/* Desktop Values Section Enhancement - Minimalist Text-Based Design */
@media (min-width: 769px) {
  .about-page .values-section {
    padding: 2rem 0 2rem;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('../images/team-collaboration.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
  }
  
  .about-page .values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(221, 221, 221, 0.08) 50%, rgba(255, 255, 255, 0.3) 100%);
    z-index: 1;
  }
  
  .about-page .values-section .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 3;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .about-page .values-section .section-header.animate-in {
    opacity: 1;
    transform: translateY(0);
  }
  
  .about-page .values-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(var(--font-size-h2), 4vw, 2.75rem);
    color: var(--graphite-navy);
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    letter-spacing: -0.02em;
  }
  
  .about-page .values-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 1px;
  }
  
  .about-page .values-section .section-header p {
    font-size: 1.4rem;
    color: var(--color-body);
    max-width: 800px;
    margin: 3rem auto 0;
    line-height: 1.7;
    font-weight: 400;
  }
  
  .about-page .values-grid-three-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
  }
  
  .about-page .value-card {
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
    border: none;
    transition: all 0.6s ease;
    position: relative;
    overflow: visible;
    opacity: 0;
    transform: translateY(40px);
  }
  
  .about-page .value-card.animate-in {
    opacity: 1;
    transform: translateY(0);
  }
  
  .about-page .value-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(221, 221, 221, 0.1) 0%, transparent 70%);
    transition: all 0.6s ease;
    z-index: -1;
  }
  
  .about-page .value-card:hover::before {
    width: 300px;
    height: 300px;
  }
  
  .about-page .value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--graphite-navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
    position: relative;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }
  
  .about-page .value-card h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--color-accent);
    opacity: 0;
    transition: all 0.6s ease;
  }
  
  .about-page .value-card:hover h3::after {
    opacity: 1;
    width: 100px;
  }
  
  .about-page .value-card p {
    color: var(--color-body);
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    position: relative;
    z-index: 2;
  }
  
  .about-page .values-nav {
    display: none;
  }
  
  /* Add staggered animation delays */
  .about-page .value-card:nth-child(1) {
    transition-delay: 0s;
  }
  
  .about-page .value-card:nth-child(2) {
    transition-delay: 0.2s;
  }
  
  .about-page .value-card:nth-child(3) {
    transition-delay: 0.4s;
  }
  
  /* Separators between values removed per user request */
}

/* Desktop Who We Serve Section Enhancement - Mission Section Style Match */
@media (min-width: 769px) {
  .about-page .who-we-serve {
    padding: 3rem 0 3rem;
    background: var(--graphite-navy);
    position: relative;
    overflow: hidden;
  }
  
  .about-page .who-we-serve .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .about-page .serve-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  
  .about-page .serve-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .about-page .serve-text.animate-in {
    opacity: 1;
    transform: translateY(0);
  }
  
  .about-page .serve-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(var(--font-size-h2), 4vw, 2.75rem);
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.1;
    position: relative;
  }
  
  .about-page .serve-text h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--color-accent);
    display: block;
    margin: 2rem 0 0;
  }
  
  .about-page .serve-text .serve-intro {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--soft-cream);
    font-weight: 400;
    margin: 3rem 0 2rem;
    position: relative;
    padding: 0 0 0 3rem;
  }
  
  .about-page .serve-text .serve-intro::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-accent), transparent);
  }
  
  .about-page .serve-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 3rem;
    margin: 2rem 0 3rem;
  }
  
  .about-page .serve-categories ul {
    background: none;
    padding: 0;
    border: none;
    list-style: none;
    margin: 0;
  }
  
  .about-page .serve-categories ul li {
    font-size: 1.1rem;
    color: var(--soft-cream);
    padding: 0.8rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
  }
  
  .about-page .serve-categories ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.2rem;
  }
  
  .about-page .serve-summary {
    font-size: 1.2rem;
    color: var(--soft-cream);
    line-height: 1.7;
    font-style: italic;
    margin: 2rem 0;
  }
  
  .about-page .serve-cta {
    margin-top: 2rem;
  }
  
  .about-page .serve-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .about-page .serve-visual.animate-in {
    opacity: 1;
    transform: translateY(0);
  }
  
  .about-page .serve-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--color-accent), #e8a792);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
  }
  
  .about-page .serve-visual::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--white);
    border-radius: 50%;
    opacity: 0.08;
    z-index: 2;
  }
  
  .about-page .serve-icon {
    position: relative;
    z-index: 3;
    width: 80px;
    height: 80px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(221, 221, 221, 0.3);
  }
  
  .about-page .serve-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .about-page .serve-summary::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(221, 221, 221, 0.1) 0%, transparent 70%);
    border-radius: 50%;
  }
  
  .about-page .serve-summary p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--soft-cream);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
  }
  
  .about-page .serve-summary .btn {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    position: relative;
    z-index: 2;
  }
  
  /* Visual separator between columns */
  .about-page .serve-content::before {
    content: '';
    position: absolute;
    left: 65%;
    top: 10%;
    bottom: 10%;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--color-accent), transparent);
    opacity: 0.3;
  }
}

/* Desktop Founders Section Enhancement */
@media (min-width: 769px) {
  .about-page .founders-section {
    padding: 6rem 0;
    background: white;
    position: relative;
  }
  
  .about-page .founders-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
  }
  
  .about-page .founders-text-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .about-page .founders-text-section.animate-in {
    opacity: 1;
    transform: translateY(0);
  }

  .about-page .founders-text-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--graphite-navy);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
  }
  
  .about-page .founders-text-desktop {
    display: block;
  }
  
  .about-page .founders-text-desktop p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-body);
    margin-bottom: 1.8rem;
  }
  
  .about-page .founders-text-desktop p:last-child {
    margin-bottom: 0;
  }
  
  .about-page .founders-mobile {
    display: none;
  }
  
  .about-page .founders-image {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    align-self: start;
    margin-top: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .about-page .founders-image.animate-in {
    opacity: 1;
    transform: translateY(0);
  }
  
  .about-page .founders-image:hover {
    transform: translateY(-5px);
  }
  
  .about-page .founders-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .about-page .founders-image:hover img {
    transform: scale(1.05);
  }
}
  
  .portfolio-editorial .portfolio-visuals:hover {
    transform: none;
    box-shadow: none;
  }
  
  .portfolio-editorial .portfolio-visuals picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .portfolio-editorial .portfolio-visuals img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .portfolio-editorial .portfolio-visuals:hover img {
    transform: none;
  }
  
  .portfolio-editorial .portfolio-details {
    padding: 1.5rem;
  }
  
  .portfolio-editorial .portfolio-details h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
  
  .portfolio-editorial .portfolio-details p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .portfolio-editorial .portfolio-details .btn {
    width: 100%;
    text-align: center;
  }
  
  .portfolio-cta {
    margin: 0 1rem;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .portfolio-cta h3 {
    color: var(--graphite-navy);
  }
  
  .portfolio-cta p {
    color: var(--color-body);
    opacity: 1;
  }
  
  .portfolio-header {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .portfolio-image {
    height: 180px;
  }
  
  .portfolio-content {
    padding: 1rem;
  }
  
  .portfolio-content h3 {
    font-size: 1.2rem;
  }
  
  .portfolio-content p {
    font-size: 0.9rem;
  }
}

Current timestamp: 1751390903
