/**
 * Optometry Tulsa Brand Styles
 * Generated from brand-config.json
 * Last updated: 2025-12-27
 */

/* ============================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================ */

:root {
  /* Primary Colors */
  --color-primary: #0D4C92;
  --color-primary-dark: #0A3D75;
  --color-secondary: #00A8CC;
  --color-accent: #10A19D;

  /* Neutral Colors */
  --color-text-dark: #2C3E50;
  --color-text-body: #546E7A;
  --color-text-light: #78909C;
  --color-bg-light: #ECEFF1;
  --color-bg-white: #FFFFFF;
  --color-border: #CBD5E0;

  /* Semantic Colors */
  --color-success: #4CAF50;
  --color-warning: #FF9800;
  --color-error: #F44336;
  --color-info: #2196F3;

  /* Typography */
  --font-heading: 'Merriweather', Georgia, serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --font-ui: 'Lato', Arial, sans-serif;

  /* Font Sizes - Desktop */
  --text-h1: 2.5rem;      /* 40px */
  --text-h2: 2rem;        /* 32px */
  --text-h3: 1.5rem;      /* 24px */
  --text-h4: 1.25rem;     /* 20px */
  --text-base: 1rem;      /* 16px */
  --text-small: 0.875rem; /* 14px */

  /* Font Weights */
  --weight-light: 300;
  --weight-normal: 400;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-black: 900;

  /* Line Heights */
  --line-height-tight: 1.2;
  --line-height-normal: 1.4;
  --line-height-relaxed: 1.6;

  /* Spacing Scale (8px base) */
  --space-xs: 0.5rem;   /* 8px */
  --space-sm: 1rem;     /* 16px */
  --space-md: 1.5rem;   /* 24px */
  --space-lg: 2rem;     /* 32px */
  --space-xl: 3rem;     /* 48px */
  --space-2xl: 4rem;    /* 64px */

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 8px 16px rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Container Width */
  --container-max: 1200px;
  --container-wide: 1400px;
  --content-max: 70ch;
}

/* ============================================
   GOOGLE FONTS IMPORT
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&family=Open+Sans:wght@300;400;600;700&family=Lato:wght@400;700&display=swap');

/* ============================================
   MOBILE-FIRST RESPONSIVE TYPOGRAPHY
   ============================================ */

@media (max-width: 767px) {
  :root {
    --text-h1: 2rem;       /* 32px */
    --text-h2: 1.75rem;    /* 28px */
    --text-h3: 1.375rem;   /* 22px */
    --text-h4: 1.125rem;   /* 18px */
  }
}

/* ============================================
   BASE RESET & DEFAULTS
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-body);
  background-color: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  color: var(--color-text-dark);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: var(--text-h1);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h2 {
  font-size: var(--text-h2);
  line-height: 1.3;
  color: var(--color-primary);
}

h3 {
  font-size: var(--text-h3);
  line-height: var(--line-height-normal);
}

h4 {
  font-size: var(--text-h4);
  line-height: var(--line-height-normal);
}

p {
  margin-bottom: var(--space-sm);
  max-width: var(--content-max);
}

a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-secondary);
}

a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

strong, b {
  font-weight: var(--weight-bold);
}

em, i {
  font-style: italic;
}

ul, ol {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
}

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

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

.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  text-align: center;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  line-height: 1.5;
  min-height: 44px; /* Touch target */
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-bg-white);
  text-decoration: none;
}

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

.btn-secondary:hover {
  background-color: #F5F7FA;
  text-decoration: none;
}

.btn-accent {
  background-color: var(--color-secondary);
  color: var(--color-bg-white);
}

.btn-accent:hover {
  background-color: #008FA8;
  color: var(--color-bg-white);
  text-decoration: none;
}

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

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  text-decoration: none;
}

/* White outline button for dark backgrounds */
.btn-outline-light {
  background-color: transparent;
  color: var(--color-bg-white);
  border: 2px solid var(--color-bg-white);
}

.btn-outline-light:hover {
  background-color: var(--color-bg-white);
  color: var(--color-primary);
  text-decoration: none;
}

.btn-large,
.btn-lg {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.btn-small {
  padding: 8px 16px;
  font-size: var(--text-small);
}

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

.card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-bg-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-lg);
}

.card-header {
  margin-bottom: var(--space-sm);
}

.card-title {
  font-size: var(--text-h4);
  margin-bottom: var(--space-xs);
}

.card-body {
  color: var(--color-text-body);
}

.card-footer {
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-bg-light);
}

.card-image {
  margin: calc(-1 * var(--space-md));
  margin-bottom: var(--space-md);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
  margin-bottom: var(--space-sm);
}

.form-label {
  display: block;
  font-weight: var(--weight-semibold);
  color: var(--color-text-dark);
  margin-bottom: var(--space-xs);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-dark);
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast);
  min-height: 44px; /* Touch target */
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 76, 146, 0.1);
}

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

.form-helper {
  display: block;
  margin-top: var(--space-xs);
  font-size: var(--text-small);
  color: var(--color-text-light);
}

.form-error {
  color: var(--color-error);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}

.container-wide {
  max-width: var(--container-wide);
}

.section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.section-sm {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.section-lg {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

/* ============================================
   GRID SYSTEM
   ============================================ */

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

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

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

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

@media (max-width: 1023px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Spacing */
.mt-0 { margin-top: 0; }
.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }
.mb-xs { margin-bottom: var(--space-xs); }
.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); }

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Text Colors */
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-dark { color: var(--color-text-dark); }
.text-body { color: var(--color-text-body); }
.text-light { color: var(--color-text-light); }

/* Background Colors */
.bg-white { background-color: var(--color-bg-white); }
.bg-light { background-color: var(--color-bg-light); }
.bg-primary { background-color: var(--color-primary); color: var(--color-bg-white); }
.bg-secondary { background-color: var(--color-secondary); color: var(--color-bg-white); }

/* Display */
.hidden { display: none; }
.block { display: block; }
.inline { display: inline; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.grid { display: grid; }

/* Flexbox Utilities */
.flex-row { flex-direction: row; }
.flex-column { flex-direction: column; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.align-start { align-items: flex-start; }
.align-center { align-items: center; }
.align-end { align-items: flex-end; }
.gap-xs { gap: var(--space-xs); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Skip to main content link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100;
}

.skip-link:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  overflow: visible;
  background: var(--color-primary);
  color: var(--color-bg-white);
  padding: var(--space-xs) var(--space-sm);
  text-decoration: none;
}

/* ============================================
   TRUST SIGNALS
   ============================================ */

.badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: var(--text-small);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-full);
  line-height: 1.5;
}

.badge-verified {
  background-color: var(--color-success);
  color: var(--color-bg-white);
}

.badge-featured {
  background-color: var(--color-accent);
  color: var(--color-bg-white);
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: #FFC107; /* Gold */
}

.rating-count {
  color: var(--color-text-light);
  font-size: var(--text-small);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Mobile: 320px - 767px (default, mobile-first) */

/* Tablet: 768px - 1023px */
@media (min-width: 768px) {
  .container {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }
}

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
  .container {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-bg-white);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.hero h1 {
  color: var(--color-bg-white);
  margin-bottom: var(--space-md);
}

.hero p {
  color: var(--color-bg-white);
}

.hero .lead,
.hero .hero-lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-bg-white);
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto var(--space-lg);
}

.hero-image {
  margin: var(--space-lg) auto 0;
  max-width: 800px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.hero-light {
  background: var(--color-bg-light);
  color: var(--color-text-dark);
}

.hero-light h1 {
  color: var(--color-text-dark);
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  color: var(--color-text-body);
  font-size: 1.125rem;
  max-width: none;
}

.section-header-left {
  text-align: left;
  margin-left: 0;
}

/* ============================================
   SECTION ALTERNATING
   ============================================ */

.section-alt {
  background-color: var(--color-bg-light);
}

/* ============================================
   SITE HEADER
   ============================================ */

.site-header {
  background-color: var(--color-bg-white);
  border-bottom: 1px solid var(--color-bg-light);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
}

.site-header .logo,
.site-header .site-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  text-decoration: none;
}

.site-header .logo:hover,
.site-header .site-logo:hover {
  color: var(--color-primary-dark);
}

.site-header nav {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.site-header nav a {
  text-decoration: none;
  font-weight: var(--weight-semibold);
  color: var(--color-text-dark);
}

.site-header nav a:hover {
  color: var(--color-primary);
}

@media (max-width: 767px) {
  .site-header nav {
    gap: var(--space-sm);
    font-size: var(--text-small);
  }
}

/* ============================================
   SITE FOOTER
   ============================================ */

.site-footer {
  background-color: var(--color-text-dark);
  color: var(--color-bg-light);
  padding: var(--space-xl) 0;
}

.site-footer a {
  color: var(--color-bg-light);
}

.site-footer a:hover {
  color: var(--color-bg-white);
}

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

.listing-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.listing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.listing-featured {
  border: 2px solid var(--color-primary);
  background: linear-gradient(180deg, rgba(13, 76, 146, 0.03) 0%, var(--color-bg-white) 100%);
}

.listing-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.listing-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: var(--color-bg-white);
  border-radius: var(--radius-full);
  font-family: var(--font-ui);
  font-weight: var(--weight-bold);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.listing-info {
  flex: 1;
}

.listing-name {
  font-size: var(--text-h3);
  margin-bottom: var(--space-xs);
}

.listing-name a {
  color: var(--color-text-dark);
  text-decoration: none;
}

.listing-name a:hover {
  color: var(--color-primary);
}

.listing-tagline {
  font-style: italic;
  color: var(--color-text-light);
  margin-bottom: var(--space-xs);
}

.listing-rating {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-small);
}

.listing-stars {
  color: #FFC107;
  letter-spacing: -2px;
}

.listing-reviews {
  color: var(--color-text-light);
}

.listing-description {
  margin-bottom: var(--space-md);
  color: var(--color-text-body);
}

.listing-details {
  display: grid;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.listing-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  font-size: var(--text-small);
  color: var(--color-text-body);
}

.listing-detail-icon {
  flex-shrink: 0;
  width: 20px;
}

.listing-detail a {
  color: var(--color-primary);
}

.listing-services {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.listing-service-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-bg-light);
  color: var(--color-text-dark);
  border-radius: var(--radius-full);
  font-size: var(--text-small);
  font-weight: var(--weight-semibold);
}

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

/* ============================================
   CONTENT STYLES
   ============================================ */

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

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

.content ul,
.content ol {
  margin-bottom: var(--space-md);
}

.content p {
  margin-bottom: var(--space-md);
}

.lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-text-body);
}

/* ============================================
   LINK CARDS (for hub pages)
   ============================================ */

a.card {
  text-decoration: none;
  display: block;
}

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

a.card .card-title {
  color: var(--color-primary);
}

a.card:hover .card-title {
  color: var(--color-primary-dark);
}

.small {
  font-size: var(--text-small);
}

/* ============================================
   LISTINGS GRID
   ============================================ */

.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 767px) {
  .listings-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   LISTING CARD ENHANCEMENTS
   ============================================ */

.listing-title-group {
  flex: 1;
}

.listing-category {
  display: block;
  font-size: var(--text-small);
  color: var(--color-text-light);
  font-weight: var(--weight-normal);
  margin-top: 2px;
}

.rating-stars {
  color: #FFC107;
  letter-spacing: -2px;
  font-size: 1.125rem;
}

.rating-score {
  font-weight: var(--weight-bold);
  color: var(--color-text-dark);
}

.rating-count {
  color: var(--color-text-light);
}

.listing-address,
.listing-phone,
.listing-website {
  font-size: var(--text-small);
  color: var(--color-text-body);
  margin-bottom: 4px;
}

.listing-website a {
  color: var(--color-primary);
}

.listing-website a:hover {
  text-decoration: underline;
}

.service-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-bg-light);
  color: var(--color-text-dark);
  border-radius: var(--radius-full);
  font-size: var(--text-small);
  font-weight: var(--weight-semibold);
}

.featured-badge {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-bg-white);
  border-radius: var(--radius-full);
  font-size: var(--text-small);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.listing-highlight {
  background: var(--color-bg-light);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
  font-size: var(--text-small);
  color: var(--color-text-body);
  margin-top: var(--space-md);
}

.listing-highlight strong {
  color: var(--color-text-dark);
}

/* ============================================
   CARD HOVER STATE
   ============================================ */

.card-hover {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

a.card-hover {
  text-decoration: none;
  color: inherit;
}

a.card-hover h3 {
  color: var(--color-primary);
  transition: color var(--transition-base);
}

a.card-hover:hover h3 {
  color: var(--color-primary-dark);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-bg-white);
}

.cta-section h2 {
  color: var(--color-bg-white);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   FAQ STYLES
   ============================================ */

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

.faq-item {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.faq-item h3 {
  font-size: var(--text-h4);
  margin-bottom: var(--space-sm);
  color: var(--color-text-dark);
}

.faq-item p {
  margin: 0;
  color: var(--color-text-body);
}

/* ============================================
   FOOTER GRID
   ============================================ */

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

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.footer-brand p {
  margin-top: var(--space-sm);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-small);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: var(--weight-bold);
  color: var(--color-bg-white);
  text-decoration: none;
}

.footer-logo:hover {
  color: var(--color-secondary);
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: var(--space-md);
  color: var(--color-bg-white);
}

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

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

.footer-links a {
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

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

@media (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  body {
    color: #000;
    background: #fff;
  }

  a {
    text-decoration: underline;
  }

  .no-print {
    display: none;
  }
}
