/* ============================================
   RIDGEVIEW ESTATE LAW - STYLESHEET
   ============================================ */

/* CSS Custom Properties */
:root {
  /* Colors */
  --bg-primary: #F7F4EE;
  --bg-white: #FFFFFF;
  --text-primary: #111827;
  --text-muted: #4B5563;
  --border-color: #E5E7EB;
  --cta-primary: #0B1F3B;
  --cta-hover: #07162B;
  --accent-gold: #C8A24A;
  --accent-gold-light: #D4B76A;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Typography */
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  
  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
  --border-radius: 4px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

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

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: var(--accent-gold);
}

a:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cta-primary);
  color: white;
  padding: var(--space-sm) var(--space-md);
  z-index: 9999;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  margin-bottom: var(--space-sm);
  color: var(--text-muted);
}

.text-lead {
  font-size: 1.125rem;
  line-height: 1.7;
}

.text-small {
  font-size: 0.875rem;
}

.text-accent {
  color: var(--accent-gold);
}

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

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

.section {
  padding: var(--space-3xl) 0;
}

.section-sm {
  padding: var(--space-xl) 0;
}

.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 {
  font-size: 1.125rem;
}

/* Grid */
.grid {
  display: grid;
  gap: var(--space-lg);
}

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

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Flex */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

.justify-between {
  justify-content: space-between;
}

.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.875rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
}

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

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

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

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

.btn-outline:hover {
  background-color: var(--cta-primary);
  color: white;
}

.btn-accent {
  background-color: var(--accent-gold);
  color: var(--cta-primary);
  border-color: var(--accent-gold);
}

.btn-accent:hover {
  background-color: var(--accent-gold-light);
  border-color: var(--accent-gold-light);
  color: var(--cta-primary);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

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

.logo img {
  height: 50px;
  width: auto;
}

/* Primary Navigation */
.primary-nav {
  display: none;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link[aria-current="page"] {
  color: var(--cta-primary);
  font-weight: 600;
}

/* Header CTA */
.header-cta {
  display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--cta-primary);
  transition: all var(--transition-base);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--accent-gold);
  border-radius: var(--border-radius);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: var(--space-md);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
}

.mobile-nav-list li {
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav-list li:last-child {
  border-bottom: none;
}

.mobile-nav-link {
  display: block;
  padding: var(--space-sm) 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.mobile-nav-link[aria-current="page"] {
  color: var(--accent-gold);
  font-weight: 600;
}

.mobile-cta {
  margin-top: var(--space-md);
  width: 100%;
}

/* Desktop Navigation */
@media (min-width: 1024px) {
  .primary-nav {
    display: block;
  }
  
  .header-cta {
    display: block;
  }
  
  .menu-toggle {
    display: none;
  }
  
  .mobile-nav {
    display: none !important;
  }
}

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

.hero {
  background-color: var(--cta-primary);
  color: white;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(200, 162, 74, 0.1) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

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

.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
}

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

.hero .btn-primary {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--cta-primary);
}

.hero .btn-primary:hover {
  background-color: var(--accent-gold-light);
  border-color: var(--accent-gold-light);
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.hero .btn-outline:hover {
  background-color: white;
  color: var(--cta-primary);
  border-color: white;
}

/* Hero with Image */
.hero-split {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

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

.hero-image {
  border-radius: var(--border-radius);
  overflow: hidden;
}

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

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

.card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-gold);
}

.card-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(200, 162, 74, 0.1);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-gold);
}

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

.card p {
  flex-grow: 1;
  margin-bottom: var(--space-md);
}

.card-link {
  font-weight: 600;
  color: var(--cta-primary);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.card-link::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.card-link:hover::after {
  transform: translateX(4px);
}

/* Service Card */
.service-card {
  text-align: center;
}

.service-card .card-icon {
  margin: 0 auto var(--space-md);
  width: 64px;
  height: 64px;
}

.service-card .card-icon svg {
  width: 32px;
  height: 32px;
}

/* ============================================
   FEATURES & LISTS
   ============================================ */

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.feature-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: rgba(200, 162, 74, 0.15);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ============================================
   ACCORDION (FAQ)
   ============================================ */

.accordion {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid var(--border-color);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  background: var(--bg-white);
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.accordion-trigger:hover {
  background-color: rgba(200, 162, 74, 0.05);
}

.accordion-trigger:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: -2px;
}

.accordion-trigger[aria-expanded="true"] {
  background-color: rgba(200, 162, 74, 0.1);
}

.accordion-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.accordion-content[aria-hidden="false"] {
  max-height: 500px;
}

.accordion-body {
  padding: 0 var(--space-md) var(--space-md);
  color: var(--text-muted);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

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

.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-base);
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .testimonial-slide {
    flex: 0 0 50%;
  }
}

.testimonial-card {
  background-color: var(--bg-primary);
  border-radius: var(--border-radius);
  padding: var(--space-lg);
  height: 100%;
}

.testimonial-stars {
  color: var(--accent-gold);
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-location {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.carousel-btn:hover {
  background-color: var(--cta-primary);
  border-color: var(--cta-primary);
  color: white;
}

.carousel-btn:focus-visible {
  outline: 2px solid var(--accent-gold);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: var(--border-color);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-dot.active {
  background-color: var(--accent-gold);
  width: 24px;
  border-radius: 5px;
}

.carousel-dot:focus-visible {
  outline: 2px solid var(--accent-gold);
}

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

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.form-label-required::after {
  content: ' *';
  color: #DC2626;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(200, 162, 74, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9CA3AF;
}

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

.form-error {
  display: none;
  font-size: 0.875rem;
  color: #DC2626;
  margin-top: var(--space-xs);
}

.form-group.has-error .form-input,
.form-group.has-error .form-textarea,
.form-group.has-error .form-select {
  border-color: #DC2626;
}

.form-group.has-error .form-error {
  display: block;
}

.form-success {
  background-color: rgba(34, 197, 94, 0.1);
  border: 1px solid #22C55E;
  border-radius: var(--border-radius);
  padding: var(--space-md);
  text-align: center;
}

.form-success h3 {
  color: #15803D;
  margin-bottom: var(--space-xs);
}

.form-success p {
  color: #166534;
  margin-bottom: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

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

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

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

.contact-info-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(200, 162, 74, 0.1);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.contact-info-content h4 {
  margin-bottom: var(--space-xs);
  font-size: 1rem;
}

.contact-info-content p {
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.contact-hours {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-color);
}

.contact-form-wrapper {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: var(--space-lg);
  border: 1px solid var(--border-color);
}

/* ============================================
   ATTORNEY PROFILE
   ============================================ */

.attorney-profile {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 768px) {
  .attorney-profile {
    grid-template-columns: 300px 1fr;
  }
}

.attorney-image {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.attorney-image img {
  width: 100%;
  height: auto;
}

.attorney-credentials {
  margin-top: var(--space-md);
}

.attorney-credentials li {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-xs);
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.attorney-credentials li::before {
  content: '•';
  color: var(--accent-gold);
  font-weight: bold;
}

/* ============================================
   PROCESS STEPS
   ============================================ */

.process-steps {
  display: grid;
  gap: var(--space-lg);
}

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

.process-step {
  text-align: center;
  position: relative;
}

@media (min-width: 768px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--border-color) 50%, transparent);
  }
}

.step-number {
  width: 80px;
  height: 80px;
  background-color: var(--cta-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 auto var(--space-md);
  position: relative;
  z-index: 1;
}

.step-number span {
  color: var(--accent-gold);
}

/* ============================================
   RESOURCES
   ============================================ */

.resource-list {
  list-style: none;
}

.resource-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-bottom: var(--space-sm);
  transition: all var(--transition-fast);
}

.resource-item:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.resource-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(200, 162, 74, 0.1);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.resource-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-gold);
}

.resource-content h4 {
  margin-bottom: var(--space-xs);
  font-size: 1rem;
}

.resource-content p {
  margin-bottom: 0;
  font-size: 0.875rem;
}

/* ============================================
   BREADCRUMBS
   ============================================ */

.breadcrumbs {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: var(--space-sm) 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: var(--space-xs);
  font-size: 0.875rem;
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin-left: var(--space-xs);
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--cta-primary);
}

.breadcrumbs [aria-current="page"] {
  color: var(--text-primary);
  font-weight: 500;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
  background-color: var(--cta-primary);
  color: white;
  padding: var(--space-2xl) 0;
  text-align: center;
}

.page-header h1 {
  color: white;
  margin-bottom: var(--space-sm);
}

.page-header p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
}

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

.site-footer {
  background-color: var(--cta-primary);
  color: white;
  padding-top: var(--space-3xl);
}

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

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

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

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: var(--space-sm);
  font-size: 0.9375rem;
}

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

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  margin-bottom: var(--space-md);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

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

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  margin-bottom: var(--space-xs);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-md) 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 0;
}

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

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

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

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

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

.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-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); }

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

/* ============================================
   LEGAL PAGES
   ============================================ */

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

.legal-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

.legal-content h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

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

.legal-content ul {
  padding-left: var(--space-lg);
}

.legal-content li {
  margin-bottom: var(--space-xs);
  color: var(--text-muted);
}

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

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

.animate-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

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

@media print {
  .site-header,
  .site-footer,
  .menu-toggle,
  .carousel-controls,
  .carousel-dots {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
  
  .section {
    padding: 1rem 0;
  }
}
