/* ============================================
   Dream Car Auto Repair — Styles
   ============================================ */

/* CSS Custom Properties (Design Tokens) */
:root {
  /* Colors — Primary */
  --color-primary: #1a2b4a;
  --color-primary-dark: #0f1a2e;
  --color-primary-light: #2d4468;

  /* Colors — Accent */
  --color-accent: #ff6b35;
  --color-accent-dark: #e85a28;
  --color-accent-light: #ff8f67;

  /* Colors — Text */
  --color-text: #1f2937;
  --color-text-muted: #6b7280;
  --color-text-light: #9ca3af;

  /* Colors — Backgrounds */
  --color-bg: #ffffff;
  --color-bg-section: #f9fafb;
  --color-bg-dark: #111827;

  /* Colors — Borders */
  --color-border: #e5e7eb;
  --color-border-dark: #d1d5db;

  /* Colors — Semantic */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-white: #ffffff;

  /* Typography — Fonts */
  --font-heading:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Roboto Slab", Georgia, serif;

  /* Typography — Weights */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  /* Typography — Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3rem;
  --text-6xl: 4rem;

  /* Typography — Line Heights */
  --leading-tight: 1.2;
  --leading-snug: 1.4;
  --leading-normal: 1.6;
  --leading-relaxed: 1.8;

  /* Typography — Letter Spacing */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-padding: 1.5rem;
  --container-padding-md: 2rem;
  --container-padding-lg: 3rem;

  /* Section Spacing */
  --section-padding-y: 3rem;
  --section-padding-y-md: 5rem;
  --section-padding-y-lg: 6rem;

  /* Grid Gaps */
  --gap-sm: 1rem;
  --gap-md: 1.5rem;
  --gap-lg: 2rem;
  --gap-xl: 3rem;

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

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.16);
}

/* ============================================
   CSS 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-body);
  font-weight: var(--font-weight-regular);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Typography
   ============================================ */

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

h1 {
  font-size: var(--text-5xl);
  font-weight: var(--font-weight-extrabold);
  letter-spacing: var(--tracking-tight);
}

h2 {
  font-size: var(--text-3xl);
}

h3 {
  font-size: var(--text-xl);
  line-height: var(--leading-snug);
}

p {
  margin-bottom: var(--space-4);
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

a:focus-visible {
  outline: 3px solid var(--color-accent-light);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ============================================
   Layout Utilities
   ============================================ */

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

.section {
  padding: var(--section-padding-y) 0;
}

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

.section__heading {
  text-align: center;
  margin-bottom: var(--space-4);
}

.section__subheading {
  text-align: center;
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-12);
}

.section__cta {
  text-align: center;
  margin-top: var(--space-12);
}

.section__cta-text {
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-4);
  z-index: 10000;
}

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

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.btn--primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.btn--primary:active {
  transform: scale(0.98);
}

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

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

.btn--secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26, 43, 74, 0.2);
}

.btn--lg {
  padding: 1.25rem 2.5rem;
  font-size: var(--text-lg);
}

.btn--sm {
  padding: 0.75rem 1.5rem;
  font-size: var(--text-sm);
}

/* ============================================
   Header
   ============================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

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

.header__logo-link {
  display: block;
  line-height: 0;
}

.logo {
  height: 50px;
  width: auto;
  /* Crisp rendering for sharp edges */
  shape-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Logo animation on hover */
.logo #mark {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  will-change: transform;
}

.header__logo-link:hover .logo #mark {
  transform: translateX(3px);
}

/* Logo entrance animation on page load */
@keyframes logoEntrance {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.logo {
  animation: logoEntrance 0.6s ease-out;
}

/* Speed lines animation */
.logo .dc-accent rect {
  opacity: 0.7;
  transition: all 0.3s ease;
  will-change: transform, opacity;
}

.header__logo-link:hover .logo .dc-accent rect:nth-child(1) {
  animation: speedLine 0.6s ease forwards;
  animation-delay: 0s;
}

.header__logo-link:hover .logo .dc-accent rect:nth-child(2) {
  animation: speedLine 0.6s ease forwards;
  animation-delay: 0.1s;
}

.header__logo-link:hover .logo .dc-accent rect:nth-child(3) {
  animation: speedLine 0.6s ease forwards;
  animation-delay: 0.2s;
}

/* Accent color transition on hover */
.header__logo-link:hover .logo .dc-accent {
  fill: var(--color-accent-light);
}

/* Subtle breathing animation for motion path */
@keyframes breathe {
  0%,
  100% {
    opacity: 0.15;
    transform: scale(1);
  }
  50% {
    opacity: 0.25;
    transform: scale(1.02);
  }
}

.logo #mark > path:first-child {
  animation: breathe 4s ease-in-out infinite;
  transform-origin: center;
}

@keyframes speedLine {
  0% {
    opacity: 0;
    transform: translateX(-10px) scaleX(0.5);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
    transform: translateX(0) scaleX(1);
  }
}

.header__nav {
  display: none;
  gap: var(--space-8);
}

.header__link {
  color: var(--color-text);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.header__link:hover {
  color: var(--color-accent);
}

.header__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.header__link:hover::after {
  width: 100%;
}

.header__phone-cta {
  display: none;
}

.header__mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.header__mobile-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.header__mobile-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.header__mobile-toggle[aria-expanded="true"] .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.header__mobile-menu {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: var(--space-6) var(--container-padding);
}

.header__mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.header__mobile-link {
  color: var(--color-text);
  font-weight: var(--font-weight-medium);
  font-size: var(--text-lg);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
  transition: color 0.2s ease;
}

.header__mobile-link:hover {
  color: var(--color-accent);
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: var(--space-16) var(--container-padding);
  background-image:
    linear-gradient(
      135deg,
      rgba(26, 43, 74, 0.85) 0%,
      rgba(26, 43, 74, 0.7) 100%
    ),
    url("https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?w=1920&h=1080&fit=crop");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--color-white);
}

.hero__content {
  max-width: 700px;
  margin: 0 auto;
}

.hero__headline {
  font-size: var(--text-5xl);
  font-weight: var(--font-weight-extrabold);
  line-height: var(--leading-tight);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.hero__subheadline {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-regular);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-6);
}

.hero__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  font-size: var(--text-lg);
}

.hero__stars {
  color: var(--color-warning);
  font-size: var(--text-xl);
}

.hero__rating-text {
  font-weight: var(--font-weight-medium);
}

.hero__cta {
  display: inline-block;
}

/* ============================================
   Trust Bar
   ============================================ */

.trust-bar {
  background: var(--color-primary-dark);
  padding: var(--space-6) var(--container-padding);
}

.trust-bar__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-white);
  font-weight: var(--font-weight-medium);
}

.trust-badge__icon {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.trust-badge__text {
  font-size: var(--text-base);
}

/* ============================================
   Services
   ============================================ */

.section--services {
  padding: var(--section-padding-y-md) 0;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-md);
  margin-bottom: var(--space-8);
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent-light);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-4);
  color: var(--color-accent);
}

.service-card__title {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.service-card__description {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: 0;
}

/* ============================================
   About
   ============================================ */

.about__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.about__text p {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
}

.about__image {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   Testimonials
   ============================================ */

.section--reviews {
  padding: var(--section-padding-y-md) 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-lg);
}

.testimonial-card {
  background: var(--color-bg-section);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.testimonial-card__stars {
  color: var(--color-warning);
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}

.testimonial-card__quote {
  font-size: var(--text-lg);
  font-style: italic;
  line-height: var(--leading-relaxed);
  color: var(--color-text);
  margin-bottom: var(--space-6);
  position: relative;
  padding-left: var(--space-6);
}

.testimonial-card__quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--color-accent);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-card__name {
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  font-style: normal;
}

.testimonial-card__meta {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-accent-light);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-lg);
  flex-shrink: 0;
}

/* ============================================
   Gallery
   ============================================ */

.section--gallery {
  padding: var(--section-padding-y-md) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-sm);
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  opacity: 0.9;
}

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

.section--faq {
  padding: var(--section-padding-y-md) 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-5);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: var(--color-bg-section);
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  padding: 0 var(--space-5);
  overflow: hidden;
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 var(--space-5) var(--space-5);
}

/* ============================================
   Contact
   ============================================ */

.section--contact {
  padding: var(--section-padding-y-md) 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.contact-info__item {
  display: flex;
  gap: var(--space-4);
}

.contact-info__icon {
  width: 40px;
  height: 40px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.contact-info__item h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.contact-info__item p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: 0;
}

.contact-info__link {
  color: var(--color-accent);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
}

.contact-info__link:hover {
  color: var(--color-accent-dark);
  text-decoration: underline;
}

.contact-form {
  background: var(--color-bg-section);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}

.contact-form__heading {
  margin-bottom: var(--space-6);
}

.form-field {
  margin-bottom: var(--space-6);
}

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

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.form-submit {
  width: 100%;
  padding: 1rem;
}

.contact-map {
  width: 100%;
  min-height: 400px;
}

.map-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: var(--space-12) var(--container-padding) var(--space-6);
  text-align: center;
}

.footer__content {
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer__tagline {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-medium);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.footer__location {
  font-size: var(--text-base);
  color: var(--color-text-light);
  margin-bottom: var(--space-8);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.footer__link {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--color-accent-light);
}

.footer__copyright {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  opacity: 0.7;
}

/* ============================================
   Scroll Reveal Animations
   ============================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grids */
[data-reveal]:nth-child(1) {
  transition-delay: 0s;
}
[data-reveal]:nth-child(2) {
  transition-delay: 0.1s;
}
[data-reveal]:nth-child(3) {
  transition-delay: 0.2s;
}
[data-reveal]:nth-child(4) {
  transition-delay: 0.3s;
}
[data-reveal]:nth-child(5) {
  transition-delay: 0.4s;
}
[data-reveal]:nth-child(6) {
  transition-delay: 0.5s;
}

/* ============================================
   Responsive Design — Tablet (768px+)
   ============================================ */

@media (min-width: 768px) {
  /* Typography */
  h1 {
    font-size: var(--text-6xl);
  }

  h2 {
    font-size: var(--text-4xl);
  }

  h3 {
    font-size: var(--text-2xl);
  }

  /* Layout */
  .container {
    padding-left: var(--container-padding-md);
    padding-right: var(--container-padding-md);
  }

  .section {
    padding: var(--section-padding-y-md) 0;
  }

  /* Header */
  .header__nav {
    display: flex;
  }

  .header__phone-cta {
    display: inline-block;
  }

  .header__mobile-toggle {
    display: none;
  }

  .header__mobile-menu {
    display: none !important;
  }

  /* Hero */
  .hero {
    min-height: 85vh;
    text-align: left;
  }

  .hero__content {
    margin: 0;
  }

  .hero__headline {
    font-size: var(--text-6xl);
  }

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

  .hero__rating {
    justify-content: flex-start;
  }

  /* Trust Bar */
  .trust-bar__content {
    justify-content: space-around;
  }

  /* Services */
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-lg);
  }

  /* About */
  .about__content {
    flex-direction: row;
    align-items: center;
  }

  .about__text {
    flex: 1;
  }

  .about__image {
    flex: 1;
  }

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

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-md);
  }

  /* Contact */
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   Responsive Design — Desktop (1024px+)
   ============================================ */

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

  .section {
    padding: var(--section-padding-y-lg) 0;
  }

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

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

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-lg);
  }
}

/* ============================================
   Accessibility — Reduced Motion
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   Print Styles
   ============================================ */

@media print {
  .header,
  .trust-bar,
  .hero,
  .section--gallery,
  .footer__links {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  a {
    text-decoration: underline;
  }

  a[href^="http"]::after {
    content: " (" attr(href) ")";
  }
}
