/* ============================================
   PROFESSIONAL ACCOMPANIMENT - MAIN STYLESHEET
   ============================================
   
   This file contains all CSS for the website.
   Design tokens at the top make it easy to update
   colors, fonts, spacing across the entire site.
   
   STRUCTURE:
   1. Design System (CSS Variables)
   2. Reset & Base Styles
   3. Typography
   4. Layout & Containers
   5. Components (Buttons, Cards, etc.)
   6. Navigation
   7. Footer
   8. Page-Specific Sections
   9. Animations
   10. Responsive (Mobile/Tablet)
   ============================================ */


/* ============================================
   1. DESIGN SYSTEM
   Change values here to update entire site
   ============================================ */

:root {
  /* ===== COLORS ===== */
  --color-bg: #FAF9F6;           /* Off-white background - warmer than pure white */
  --color-text: #2D3436;         /* Deep warm gray - main text color */
  --color-accent-large: #C97B63; /* Terracotta - filled buttons, large headings */
  --color-accent-text: #B15A42;  /* Darker terracotta - links, small text (WCAG AA compliant) */
  --color-secondary: #6C7A89;    /* Mid gray - captions, secondary info */
  --color-border: #E8E6E3;       /* Light warm gray - borders, dividers */
  --color-white: #FFFFFF;        /* Pure white - button text, cards */
  
  /* ===== TYPOGRAPHY ===== */
  --font-heading: 'Crimson Text', serif;  /* Warm serif for headings */
  --font-body: 'Inter', sans-serif;       /* Clean sans-serif for body */
  
  --font-size-base: 18px;        /* Body text - comfortable reading size */
  --font-size-small: 15px;       /* Captions, small text */
  --font-size-large: 20px;       /* Large body text, emphasis */
  --font-size-h1: 48px;          /* Page titles (hero headings) */
  --font-size-h2: 36px;          /* Section headings */
  --font-size-h3: 28px;          /* Subsection headings */
  --font-size-h4: 22px;          /* Card titles, small headings */
  
  --line-height-body: 1.7;       /* Generous line-height for readability */
  --line-height-heading: 1.3;    /* Tighter for headings */
  
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* ===== SPACING ===== */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 96px;
  --space-xxl: 128px;
  
  --section-padding: 96px 0;     /* Vertical spacing between major sections */
  --content-width: 720px;        /* Max width for reading content */
  --content-width-wide: 1200px;  /* Max width for grids/special sections */
  
  /* ===== BORDERS & RADIUS ===== */
  --border-width: 1px;
  --border-radius: 6px;          /* Subtle rounding for buttons, cards */
  --border-radius-large: 12px;   /* Larger rounding for special elements */
  
  /* ===== SHADOWS ===== */
  --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-button: 0 2px 8px rgba(177, 90, 66, 0.2);        /* Terracotta shadow for buttons */
  --shadow-button-hover: 0 4px 12px rgba(177, 90, 66, 0.3); /* Elevated button shadow */
  
  /* ===== TRANSITIONS ===== */
  --transition-fast: 200ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
}


/* ============================================
   2. RESET & BASE STYLES
   Normalize browser defaults
   ============================================ */

/* Box-sizing reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margins */
* {
  margin: 0;
  padding: 0;
}

/* Root element setup */
html {
  /* Smooth scrolling for anchor links */
  scroll-behavior: smooth;
  
  /* Prevent text size adjustment on orientation change (mobile) */
  -webkit-text-size-adjust: 100%;
}

body {
  /* Base typography */
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-body);
  color: var(--color-text);
  
  /* Background color */
  background-color: var(--color-bg);
  
  /* Better font rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
  /* No horizontal scrolling */
  overflow-x: hidden;
}

/* Remove list styles from ul/ol by default */
ul, ol {
  list-style: none;
}

/* Images are responsive by default */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Links inherit color, no underline by default */
a {
  color: inherit;
  text-decoration: none;
}

/* Button reset */
button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  cursor: pointer;
}


/* ============================================
   3. TYPOGRAPHY
   Headings, paragraphs, lists, links
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-heading);
  color: var(--color-text);
}

h1 {
  font-size: var(--font-size-h1);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: var(--font-size-h2);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: var(--font-size-h3);
  margin-bottom: var(--space-sm);
}

h4 {
  font-size: var(--font-size-h4);
  margin-bottom: var(--space-sm);
}

/* Paragraphs */
p {
  margin-bottom: 1.5em;
}

p:last-child {
  margin-bottom: 0;
}

/* Links within text */
a {
  color: var(--color-accent-text);
  transition: color var(--transition-normal);
}

a:hover {
  color: #8B3A2A; /* Slightly darker on hover */
}

/* Strong/bold text */
strong, b {
  font-weight: var(--font-weight-semibold);
}

/* Emphasis/italic text */
em, i {
  font-style: italic;
}

/* Lists with terracotta square bullets */
.scenario-list,
.bullet-list {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.scenario-list li,
.bullet-list li {
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm);
}

/* Terracotta square bullet via CSS */
.scenario-list li::before,
.bullet-list li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: var(--color-accent-large);
  font-size: 17px;
  line-height: 1.7; /* Match body line-height for alignment */
}

/* Large text emphasis */
.text-large {
  font-size: var(--font-size-large);
}

/* Small text (captions, notes) */
.text-small {
  font-size: var(--font-size-small);
  color: var(--color-secondary);
}

/* Section closing text (used after lists) */
.section-closing {
  font-size: var(--font-size-large);
  margin-top: var(--space-md);
}


/* ============================================
   4. LAYOUT & CONTAINERS
   Page structure, content width constraints
   ============================================ */

/* Main content wrapper */
main {
  /* Minimum height to push footer down */
  min-height: 100vh;
}

/* Standard container - limits content width */
.container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--space-md); /* Horizontal padding on mobile */
}

/* Wide container for grids/special layouts */
.container-wide {
  max-width: var(--content-width-wide);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Section spacing */
section {
  padding: var(--section-padding);
}

/* First section (hero) gets extra top padding */
section:first-of-type {
  padding-top: calc(var(--space-xl) + var(--space-xxl)); /* Extra space for nav clearance */
}


/* ============================================
   5. COMPONENTS
   Reusable UI elements
   ============================================ */

/* ===== BUTTONS ===== */

/* Base button styles */
.button-primary,
.button-outline {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--border-radius);
  font-weight: var(--font-weight-medium);
  text-align: center;
  transition: all var(--transition-normal);
  cursor: pointer;
  letter-spacing: 0.5px;
}

/* Primary button - filled terracotta */
.button-primary {
  background-color: var(--color-accent-text);
  color: var(--color-white);
  box-shadow: var(--shadow-button);
  transform: translateY(0);
}

.button-primary:hover {
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-button-hover);
  background-color: #8B3A2A; /* Slightly darker on hover */
}

/* Outline button - transparent with terracotta border */
.button-outline {
  background-color: transparent;
  color: var(--color-accent-text);
  border: var(--border-width) solid var(--color-accent-text);
}

.button-outline:hover {
  background-color: var(--color-accent-text);
  color: var(--color-white);
}

/* Text link styled as button alternative */
.link-secondary {
  display: inline-block;
  color: var(--color-accent-text);
  font-weight: var(--font-weight-medium);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-normal);
}

.link-secondary:hover {
  border-bottom-color: var(--color-accent-text);
}

/* ===== CARDS ===== */

/* Service cards, info cards */
.service-card,
.info-card {
  background-color: var(--color-white);
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--border-radius);
  padding: var(--space-md);
  transition: box-shadow var(--transition-normal);
}

.service-card:hover,
.info-card:hover {
  box-shadow: var(--shadow-medium);
}

.service-card h3,
.info-card h3 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h4);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.service-card p,
.info-card p {
  color: var(--color-text);
}

/* Grid of service cards */
.service-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

/* ===== COMPARISON GRID ===== */

/* Grid for therapy/coaching/consulting comparison */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.comparison-item h3 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h3);
  color: var(--color-accent-text);
  margin-bottom: var(--space-sm);
}


/* ============================================
   6. NAVIGATION
   Site header and nav menu
   ============================================ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100$;
  background-color: var(--color-bg);
  border-bottom: var(--border-width) solid var(--color-border);
  padding: var(--space-md) 0;
  z-index: 1000;
  
  /* Subtle backdrop blur effect */
  backdrop-filter: blur(8px);
  background-color: rgba(250, 249, 246, 0.95);
}

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

.nav-brand {
  font-family: var(--font-heading);
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
}

/* Hamburger button (mobile only) */
.nav-toggle {
  display: none; /* Hidden on desktop */
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1001;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  transition: all var(--transition-normal);
  transform-origin: center;
}

/* Animated hamburger -> X */
.nav-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  gap: var(--space-md);
}

.nav-links a {
  color: var(--color-text);
  font-weight: var(--font-weight-medium);
  position: relative;
  transition: color var(--transition-normal);
}

.nav-links a:hover {
  color: var(--color-accent-text);
}

/* Subtle underline on hover */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent-text);
  transition: width var(--transition-normal);
}

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


/* ============================================
   7. FOOTER
   Site footer with links
   ============================================ */

.site-footer {
  background-color: var(--color-bg);
  border-top: var(--border-width) solid var(--color-border);
  padding: var(--space-xl) 0 var(--space-lg);
  margin-top: var(--space-xxl);
}

.footer-container {
  max-width: var(--content-width-wide);
  margin: 0 auto;
  padding: 0 var(--space-md);
  text-align: center;
}

.footer-container p {
  color: var(--color-secondary);
  font-size: var(--font-size-small);
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-links a {
  color: var(--color-secondary);
  font-size: var(--font-size-small);
  transition: color var(--transition-normal);
}

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


/* ============================================
   8. PAGE-SPECIFIC SECTIONS
   Styles for homepage and other pages
   ============================================ */

/* ===== HERO SECTION ===== */
/* First thing visitors see - sets tone */

.hero {
  text-align: center;
  padding: var(--space-xl) 0;
}

.hero h1 {
  font-size: var(--font-size-h1);
  line-height: var(--line-height-heading);
  margin-bottom: var(--space-md);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-text {
  font-size: var(--font-size-large);
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== WHO THIS IS FOR SECTION ===== */

.who-this-is-for h2 {
  margin-bottom: var(--space-md);
}

/* ===== DIFFERENTIATION SECTION ===== */

.differentiation {
  background-color: var(--color-white);
  border-top: var(--border-width) solid var(--color-border);
  border-bottom: var(--border-width) solid var(--color-border);
}

/* ===== HOW IT WORKS SECTION ===== */

/* PAR Framework */
.par-framework {
  text-align: center;
  margin: var(--space-lg) 0;
  padding: var(--space-lg);
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  border: var(--border-width) solid var(--color-border);
}

.par-text {
  font-family: var(--font-heading);
  font-size: var(--font-size-h2);
  color: var(--color-accent-text);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}

/* States Visualization */
.states-container {
  margin: var(--space-xl) 0;
  text-align: center;
}

.states-intro {
  font-size: var(--font-size-large);
  margin-bottom: var(--space-lg);
}

.states-visual {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin: 0 auto var(--space-md);
  display: block;
}

/* States line animation */
.states-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 1.5s ease forwards;
  animation-delay: 0.3s;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.states-labels {
  display: flex;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto;
  font-size: var(--font-size-small);
  color: var(--color-secondary);
  text-align: center;
}

.states-labels span {
  flex: 1;
  line-height: 1.4;
}

/* ===== GETTING STARTED SECTION ===== */

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

.getting-started .service-cards {
  margin-bottom: var(--space-lg);
}

/* ===== OUTCOMES SECTION ===== */

.outcomes {
  background-color: var(--color-white);
  border-top: var(--border-width) solid var(--color-border);
  border-bottom: var(--border-width) solid var(--color-border);
  text-align: center;
}

/* ===== CAPACITY SECTION ===== */

.capacity {
  text-align: center;
}

/* ===== BOOKING SECTION (Services page) ===== */

.booking-section {
  background-color: var(--color-white);
  border-top: var(--border-width) solid var(--color-border);
  padding: var(--space-xl) 0;
}

.booking-container {
  max-width: var(--content-width-wide);
  margin: 0 auto;
  padding: 0 var(--space-md);
  text-align: center;
}

.booking-container h2 {
  margin-bottom: var(--space-sm);
}

.booking-container > p {
  font-size: var(--font-size-large);
  color: var(--color-secondary);
  margin-bottom: var(--space-xl);
}

/* Cal.com embed container */
.cal-embed {
  background: var(--color-bg);
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--border-radius-large);
  padding: var(--space-lg);
  margin-top: var(--space-lg);
}

.cal-embed iframe {
  width: 100%;
  height: 800px;
  border: none;
  border-radius: var(--border-radius);
}

/* ===== FAQ SECTION ===== */

/* FAQ page layout with sticky nav (desktop only) */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: var(--content-width-wide);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* FAQ main content */
.faq-content {
  max-width: var(--content-width);
}

.faq-section {
  margin-bottom: var(--space-xxl);
}

.faq-section h2 {
  font-size: var(--font-size-h2);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-border);
}

.faq-item {
  margin-bottom: var(--space-lg);
}

.faq-question {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-accent-text);
  margin-bottom: var(--space-sm);
}

.faq-answer {
  color: var(--color-text);
}

/* FAQ sticky navigation (desktop only) */
.faq-nav {
  display: none; /* Hidden by default, shown on desktop */
}

/* ===== POLICY PAGES ===== */

.policy-page {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: var(--space-xs) var(--space-md);
}

.policy-page h1 {
  margin-bottom: var(--space-lg);
}

.policy-page h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.policy-page h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}


/* ============================================
   9. ANIMATIONS
   Fade-ins, scroll animations, micro-interactions
   ============================================ */

/* ===== FADE IN ANIMATIONS ===== */

/* Base fade-in for page load */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

/* Staggered delays for sequential fade-in */
.fade-in-delay-1 {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
  animation-delay: 0.1s;
}

.fade-in-delay-2 {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
  animation-delay: 0.2s;
}

.fade-in-delay-3 {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
  animation-delay: 0.3s;
}

.fade-in-delay-4 {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
  animation-delay: 0.4s;
}

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

/* ===== SCROLL ANIMATIONS ===== */

/* Elements animate when scrolled into view */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE STICKY CTA ===== */

/* Slides up from bottom on mobile */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-bg);
  border-top: var(--border-width) solid var(--color-border);
  padding: var(--space-sm) var(--space-md);
  display: none; /* Hidden by default, shown via JS on mobile */
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform var(--transition-normal);
  z-index: 999;
}

.mobile-cta.is-visible {
  transform: translateY(0);
}

.mobile-cta .button-primary {
  flex: 1;
  margin: 0;
}

.mobile-cta-dismiss {
  background: none;
  border: none;
  color: var(--color-secondary);
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color var(--transition-fast);
}

.mobile-cta-dismiss:hover {
  color: var(--color-text);
}

/* ===== REDUCED MOTION ===== */

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}


/* ============================================
   10. RESPONSIVE (Mobile & Tablet)
   Adjustments for smaller screens
   ============================================ */

/* ===== TABLET (768px and up) ===== */


/* ===== DESKTOP (1024px and up) ===== */

@media (min-width: 1024px) {
  
  /* Larger typography on desktop */
  :root {
    --font-size-h1: 56px;
    --font-size-h2: 42px;
    --font-size-h3: 32px;
  }
  
  
  /* FAQ sticky navigation - only on desktop */
  .faq-layout {
    grid-template-columns: 1fr 240px;
    gap: var(--space-xxl);
  }
  
  .faq-nav {
    display: block;
    position: sticky;
    top: calc(var(--space-xl) + var(--space-sm)); /* Account for sticky header */
    height: fit-content;
  }
  
  .faq-nav ul {
    list-style: none;
  }
  
  .faq-nav li {
    margin-bottom: var(--space-sm);
  }
  
  .faq-nav a {
    color: var(--color-secondary);
    font-size: var(--font-size-small);
    transition: color var(--transition-normal);
    display: block;
    padding: var(--space-xs) 0;
  }
  
  .faq-nav a:hover {
    color: var(--color-accent-text);
  }
  
  .faq-nav a.active {
    color: var(--color-accent-text);
    font-weight: var(--font-weight-medium);
    border-left: 2px solid var(--color-accent-text);
    padding-left: var(--space-sm);
    margin-left: -2px;
  }
  
}

/* ===== MOBILE (below 768px) ===== */

@media (max-width: 767px) {
  
  /* Smaller typography on mobile */
  :root {
    --font-size-h1: 36px;
    --font-size-h2: 28px;
    --font-size-h3: 22px;
    --font-size-h4: 20px;
    --font-size-base: 16px;
  }
  
  /* Reduced section padding on mobile */
  section {
    padding: var(--space-lg) 0;
  }
  
  /* Show mobile sticky CTA */
  .mobile-cta {
    display: flex;
  }
  
  /* Reduce states visualization size */
  .states-labels {
    font-size: 13px;
  }
  
  /* Show hamburger on mobile */
  .nav-toggle {
    display: flex;
  }
  
  /* Mobile menu styles */
  .nav-links {
    position: fixed;
    top: 73px; /* Height of nav bar */
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background-color: var(--color-bg);
    border-bottom: var(--border-width) solid var(--color-border);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height var(--transition-normal), 
                opacity var(--transition-normal);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  
  .nav-links.active {
    max-height: 400px;
    opacity: 1;
    padding: var(--space-sm) 0;
  }
  
  .nav-links a {
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--color-border);
  }
  
  .nav-links a:last-child {
    border-bottom: none;
  }
  
  .nav-links a::after {
    display: none; /* Remove hover underline on mobile */
  }
  
  /* Active state for mobile links */
  .nav-links a:active {
    background-color: rgba(177, 90, 66, 0.05);
  }
  
}


/* ============================================
   UTILITY CLASSES
   Quick styling helpers
   ============================================ */

/* Text alignment */
.text-center {
  text-align: center;
}

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

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

/* Spacing utilities */
.mt-lg {
  margin-top: var(--space-lg);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

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

/* Visibility utilities */
.desktop-only {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-only {
    display: block;
  }
  
  .mobile-only {
    display: none;
  }
}
