/* =========================================
   AquaZen - Premium Water Feature Design
   ========================================= */

/* CSS Variables */
:root {
  /* Colors - Natural Stone Palette */
  --slate-900: #1a2332;
  --slate-800: #243044;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  
  /* Accent Colors */
  --water-deep: #1e3a5f;
  --water-mid: #2d5a87;
  --water-light: #4a90b8;
  --water-pale: #a8d4e6;
  
  --stone-warm: #8b7355;
  --stone-light: #c4b59d;
  --stone-pale: #e8e0d5;
  
  --moss: #4a5d4a;
  --moss-light: #6b7d6b;
  
  --cream: #faf8f5;
  --cream-dark: #f5f1eb;
  
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 10rem;
  
  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(26, 35, 50, 0.05);
  --shadow-md: 0 4px 12px rgba(26, 35, 50, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 35, 50, 0.12);
  --shadow-xl: 0 24px 60px rgba(26, 35, 50, 0.16);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--slate-700);
  background: var(--cream);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--slate-900);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--water-mid);
  margin-bottom: var(--space-md);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 20ch;
  margin-bottom: var(--space-lg);
}

/* Container */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 1rem 1.75rem;
  border-radius: 2px;
  transition: all 0.4s var(--ease-out);
}

.btn svg {
  transition: transform 0.4s var(--ease-out);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--slate-900);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--water-deep);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--slate-900);
  border: 1px solid var(--slate-300);
}

.btn-secondary:hover {
  border-color: var(--slate-900);
  background: var(--slate-900);
  color: var(--cream);
}

.btn-light {
  background: var(--cream);
  color: var(--slate-900);
}

.btn-light:hover {
  background: var(--slate-50);
  box-shadow: var(--shadow-lg);
}

/* =========================================
   Navigation
   ========================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: all 0.4s var(--ease-out);
  background: var(--cream);
}

.nav.scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-sm) 0;
}

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

@media (min-width: 768px) {
  .nav-inner {
    padding: 0 var(--space-lg);
  }
}

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

.nav-logo-img {
  height: 70px;
  width: auto;
  transition: opacity 0.3s ease;
}

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

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-lg);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--slate-600);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--water-mid);
  transition: width 0.4s var(--ease-out);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.6rem 1.25rem !important;
  background: var(--slate-900);
  color: var(--cream) !important;
  border-radius: 2px;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--water-deep) !important;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

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

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

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

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

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

/* Mobile Menu */
@media (max-width: 899px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
    z-index: 999;
    overflow-y: auto;
  }
  
  .nav-links.active {
    display: flex;
    opacity: 1;
    visibility: visible;
  }
  
  .nav-links a {
    font-size: 1.5rem;
    font-family: var(--font-display);
  }
  
  .nav-cta {
    font-size: 1rem !important;
    padding: 1rem 2rem !important;
  }
  
  .nav-toggle {
    z-index: 1001;
  }
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(30, 58, 95, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(74, 144, 184, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(139, 115, 85, 0.04) 0%, transparent 50%);
}

.hero-texture {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

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

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--water-mid);
  padding: 0.5rem 1rem;
  border: 1px solid var(--water-pale);
  border-radius: 2px;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 1s var(--ease-out) 0.2s both;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.hero-title-line {
  display: block;
  animation: fadeInUp 1s var(--ease-out) both;
}

.hero-title-line:nth-child(1) { animation-delay: 0.3s; }
.hero-title-line:nth-child(2) { animation-delay: 0.4s; }
.hero-title-line:nth-child(3) { animation-delay: 0.5s; }

.hero-title-line.accent {
  font-style: italic;
  color: var(--water-deep);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--slate-600);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  animation: fadeInUp 1s var(--ease-out) 0.6s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  animation: fadeInUp 1s var(--ease-out) 0.7s both;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  animation: fadeIn 1s var(--ease-out) 1.2s both;
}

.hero-scroll span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-400);
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--slate-400), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollLine {
  0%, 100% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50% {
    transform: scaleY(0.5);
    transform-origin: top;
  }
}

/* =========================================
   Intro Section
   ========================================= */
.intro {
  padding: var(--space-3xl) 0;
  background: var(--cream-dark);
}

.intro-grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}

.intro-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  margin-bottom: var(--space-md);
}

.intro-text {
  font-size: 1.05rem;
  color: var(--slate-600);
}

.intro-visual {
  display: flex;
  justify-content: center;
}

.intro-image-frame {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/3;
  background: var(--cream);
  border: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.intro-image-frame::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--slate-200);
  pointer-events: none;
}

.intro-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  color: var(--slate-400);
}

.intro-image-placeholder svg {
  width: 120px;
  height: 120px;
}

.intro-image-placeholder span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =========================================
   Why AquaZen Section
   ========================================= */
.why {
  padding: var(--space-3xl) 0;
}

.why-header {
  max-width: 800px;
  margin-bottom: var(--space-xl);
}

.why-content {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 900px) {
  .why-content {
    grid-template-columns: 2fr 1fr;
    gap: var(--space-3xl);
  }
}

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

.why-text p {
  font-size: 1.1rem;
  color: var(--slate-600);
}

.why-stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--slate-900);
  color: var(--cream);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-400);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--cream);
}

/* =========================================
   Services Home Section
   ========================================= */
.services-home {
  padding: var(--space-3xl) 0;
  background: var(--slate-900);
  color: var(--cream);
}

.services-home .section-label {
  color: var(--water-pale);
}

.services-home .section-title {
  color: var(--cream);
}

.services-header {
  margin-bottom: var(--space-xl);
}

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

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s var(--ease-out);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  color: var(--water-pale);
}

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

.service-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--cream);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--slate-400);
  margin-bottom: var(--space-md);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--water-pale);
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--cream);
}

.service-link svg {
  transition: transform 0.3s ease;
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* =========================================
   Process Section
   ========================================= */
.process {
  padding: var(--space-3xl) 0;
}

.process-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.process-header .section-title {
  margin-left: auto;
  margin-right: auto;
}

.process-steps {
  display: grid;
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--cream-dark);
  border-left: 2px solid var(--water-mid);
  transition: all 0.4s var(--ease-out);
}

.process-step:hover {
  background: var(--slate-50);
  transform: translateX(8px);
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--water-mid);
  line-height: 1;
}

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

.step-content p {
  color: var(--slate-600);
}

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

/* =========================================
   CTA Section
   ========================================= */
.cta {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-gradient {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, var(--water-deep) 0%, var(--slate-900) 50%, var(--moss) 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  color: var(--cream);
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: var(--space-md);
}

.cta-text {
  font-size: 1.1rem;
  color: var(--slate-300);
  margin-bottom: var(--space-xl);
}

/* =========================================
   Footer
   ========================================= */
.footer {
  padding: var(--space-2xl) 0 var(--space-lg);
  background: var(--slate-900);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

.footer-logo {
  display: inline-block;
  margin-bottom: var(--space-md);
}

.footer-logo-img {
  height: 100px;
  width: auto;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--slate-400);
  max-width: 300px;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: var(--space-md);
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer ul a {
  font-size: 0.9rem;
  color: var(--slate-300);
  transition: color 0.3s ease;
}

.footer ul a:hover {
  color: var(--cream);
}

.areas-list li {
  font-size: 0.9rem;
  color: var(--slate-300);
}

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-sm);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--slate-500);
}

.footer-credit {
  font-style: italic;
}

.footer-credit a {
  color: var(--water-pale);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-credit a:hover {
  color: var(--cream);
}

/* =========================================
   Page-Specific Styles
   ========================================= */

/* Page Header */
.page-header {
  padding: calc(var(--space-3xl) + 80px) 0 var(--space-2xl);
  background: var(--cream-dark);
  text-align: center;
}

.page-header .section-title {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-md);
}

.page-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--slate-600);
}

/* Content Sections */
.content-section {
  padding: var(--space-2xl) 0;
}

.content-section.alt {
  background: var(--cream-dark);
}

/* Services Page */
.services-detailed {
  padding: var(--space-2xl) 0;
}

.service-detail {
  display: grid;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--slate-200);
}

@media (min-width: 900px) {
  .service-detail {
    grid-template-columns: 1fr 2fr;
    gap: var(--space-3xl);
  }
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail-header h3 {
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
}

.service-detail-content p {
  font-size: 1.05rem;
  color: var(--slate-600);
  margin-bottom: var(--space-md);
}

/* Gallery Page */
.gallery-grid {
  display: grid;
  gap: var(--space-md);
  padding: var(--space-2xl) 0;
}

@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  border: 1px solid var(--slate-200);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-400);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-out);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* Contact Page */
.contact-grid {
  display: grid;
  gap: var(--space-xl);
  padding: var(--space-2xl) 0;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.contact-info p {
  color: var(--slate-600);
  margin-bottom: var(--space-lg);
}

.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-md);
}

.service-areas span {
  padding: 0.5rem 1rem;
  background: var(--cream-dark);
  border: 1px solid var(--slate-200);
  font-size: 0.85rem;
  color: var(--slate-700);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-700);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 1rem;
  border: 1px solid var(--slate-300);
  background: var(--cream);
  color: var(--slate-900);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--water-mid);
  box-shadow: 0 0 0 3px rgba(45, 90, 135, 0.1);
}

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

/* Reviews Page */
.reviews-grid {
  display: grid;
  gap: var(--space-lg);
  padding: var(--space-2xl) 0;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.review-card {
  padding: var(--space-lg);
  background: var(--cream-dark);
  border-left: 3px solid var(--water-mid);
}

.review-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--slate-700);
  margin-bottom: var(--space-md);
}

.review-author {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-900);
}

.review-location {
  font-size: 0.8rem;
  color: var(--slate-500);
}

/* About Page */
.about-story {
  display: grid;
  gap: var(--space-xl);
  padding: var(--space-2xl) 0;
}

@media (min-width: 900px) {
  .about-story {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}

.about-story h2 {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.about-story p {
  font-size: 1.05rem;
  color: var(--slate-600);
  margin-bottom: var(--space-md);
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
