@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;600;700&family=Source+Sans+3:wght@300;400;600;700&display=swap');

/* =========================================
   1. ROOT VARIABLES & RESET
   ========================================= */
:root {
  --primary: #C4704A;
  --accent: #8A7A4E;
  --bg: #F5EDE0;
  --surface: #EDE4D3;
  --text: #3B2E24;
  --muted: #8C7B6B;
  --dark-bg: #2A211A;
  --shadow-subtle: 0 4px 12px rgba(0,0,0,0.06);
  --font-heading: 'Crimson Pro', serif;
  --font-body: 'Source Sans 3', sans-serif;
  --transition-base: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  border-radius: 0;
}

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

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

ul, ol {
  list-style: none;
}

/* =========================================
   2. TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text);
}

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

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

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

/* =========================================
   3. LAYOUT & ASYMMETRIC GRID UTILITIES
   ========================================= */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-sm {
  padding: 3rem 0;
}

.section-lg {
  padding: 8rem 0;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

/* Broken Grid / Asymmetric Utilities */
.broken-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.offset-top {
  margin-top: -2rem;
}

.offset-bottom {
  margin-bottom: -2rem;
}

.rotate-left {
  transform: rotate(-2deg);
}

.rotate-right {
  transform: rotate(1.5deg);
}

.overlap-right {
  position: relative;
  z-index: 2;
}

.overlap-left {
  position: relative;
  z-index: 1;
}

/* =========================================
   4. HEADER & NAVIGATION
   ========================================= */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(245, 237, 224, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-base);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(245, 237, 224, 0.98);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  border-bottom: 1px solid var(--surface);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--accent);
}

/* CRITICAL: Hamburger Menu Rules */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text);
  z-index: 1001;
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-menu a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 0.25rem 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-base);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

@media (max-width: 767px) {
  .mobile-menu-toggle {
    display: inline-block;
  }
  .nav-menu {
    display: none;
  }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 1rem;
    border-top: 1px solid var(--muted);
    box-shadow: var(--shadow-subtle);
  }
  .nav-menu.open a {
    padding: 0.75rem 0;
    width: 100%;
    border-bottom: 1px solid var(--surface);
  }
}

/* =========================================
   5. BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1;
}

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

.btn-primary:hover {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
}

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

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

.cta-button {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.cta-button:hover {
  background: var(--dark-bg);
  border-color: var(--dark-bg);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-subtle);
}

.form-submit {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
  width: 100%;
  padding: 1rem;
}

.form-submit:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* =========================================
   6. TEXT-OVER-PHOTO & HERO SECTION
   ========================================= */
/* CRITICAL: Text-over-photo rule */
.has-photo-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.has-photo-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.85));
  z-index: 0;
}

.has-photo-bg > * {
  position: relative;
  z-index: 1;
}

.has-photo-bg img,
.has-photo-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
}

.hero-section .container {
  width: 100%;
}

.hero-content {
  max-width: 800px;
}

.hero-content h1 {
  color: var(--bg);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-content p {
  color: var(--surface);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image-aside {
  position: absolute;
  right: -5%;
  bottom: 10%;
  width: 300px;
  height: 400px;
  background: var(--surface);
  border: 8px solid var(--primary);
  transform: rotate(3deg);
  box-shadow: var(--shadow-subtle);
  display: none;
}

/* =========================================
   7. FEATURES & SERVICES (BROKEN GRID)
   ========================================= */
.features-section {
  background: var(--surface);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--bg);
  padding: 2.5rem;
  box-shadow: var(--shadow-subtle);
  border-radius: 0;
  border-left: 4px solid var(--primary);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.feature-card:nth-child(even) {
  border-left-color: var(--accent);
  transform: rotate(-1deg);
}

.feature-card:nth-child(even):hover {
  transform: rotate(-1deg) translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--bg);
}

.feature-card h3 {
  margin-bottom: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.service-item:nth-child(even) .service-image {
  order: 2;
}

.service-image {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.service-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.05);
}

.service-content h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

/* =========================================
   8. ABOUT & STATS
   ========================================= */
.about-section {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  box-shadow: var(--shadow-subtle);
}

.about-image-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--accent);
  z-index: -1;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  text-align: center;
}

.stat-item {
  padding: 2rem 1rem;
  background: var(--surface);
  box-shadow: var(--shadow-subtle);
  border-radius: 0;
}

.stat-item:nth-child(odd) {
  transform: translateY(15px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
}

/* =========================================
   9. TESTIMONIALS
   ========================================= */
.testimonial-section {
  padding: 8rem 0;
}

.testimonial-section .container {
  position: relative;
  z-index: 1;
}

.testimonial-section h2 {
  color: var(--bg);
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

/* CRITICAL: Testimonial cards always have their own opaque background */
.testimonial-card {
  background: var(--surface);
  padding: 2.5rem;
  box-shadow: var(--shadow-subtle);
  border-radius: 0;
  position: relative;
  border-top: 4px solid var(--primary);
}

.testimonial-card:nth-child(2) {
  transform: rotate(1deg) translateY(20px);
  border-top-color: var(--accent);
}

.testimonial-card:nth-child(3) {
  transform: rotate(-1.5deg) translateY(-10px);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--muted);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.testimonial-info span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* =========================================
   10. CTA SECTION
   ========================================= */
.cta-section {
  background: var(--primary);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: var(--accent);
  opacity: 0.2;
  transform: rotate(45deg);
}

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

.cta-content h2 {
  color: var(--bg);
  margin-bottom: 1.5rem;
}

.cta-content p {
  color: var(--surface);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

/* =========================================
   11. CONTACT & FORMS
   ========================================= */
.contact-section {
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info > p {
  margin-bottom: 2.5rem;
  color: var(--muted);
}

/* CRITICAL: Contact rows */
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-row .icon {
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 0.2rem;
}

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

.contact-row p {
  margin: 0;
  line-height: 1.5;
}

.contact-form {
  background: var(--bg);
  padding: 2.5rem;
  box-shadow: var(--shadow-subtle);
  border-radius: 0;
}

/* CRITICAL: Form inputs */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
  width: 100%;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--muted);
  border-radius: 0;
  background: var(--surface);
  color: var(--text);
  font: inherit;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196, 112, 74, 0.15);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* =========================================
   12. FOOTER
   ========================================= */
.footer {
  background: var(--dark-bg);
  color: var(--bg);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-col p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color var(--transition-base), padding-left var(--transition-base);
}

.footer-col ul li a:hover {
  color: var(--bg);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 237, 224, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--muted);
  color: var(--muted);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--bg);
}

/* =========================================
   13. COOKIE POPUP
   ========================================= */
.cookie-popup {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  max-width: 400px;
  background: var(--dark-bg);
  color: var(--bg);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 9999;
  border-radius: 0;
  border-left: 4px solid var(--primary);
  transition: transform 0.4s ease, opacity 0.4s ease;
  margin-left: auto;
}

.cookie-popup.hidden {
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
}

.cookie-popup h4 {
  color: var(--bg);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.cookie-popup p {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 0;
  transition: background var(--transition-base);
}

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

.cookie-btn-accept:hover {
  background: var(--accent);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--muted);
}

.cookie-btn-decline:hover {
  color: var(--bg);
  border-color: var(--bg);
}

/* =========================================
   14. POLICY PAGES (Terms, Privacy)
   ========================================= */
.policy-section {
  padding: 6rem 0;
}

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

.policy-content h1 {
  margin-bottom: 1rem;
}

.policy-content .last-updated {
  color: var(--muted);
  font-style: italic;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--surface);
}

.policy-content h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.policy-content h3 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.policy-content p,
.policy-content li {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--text);
}

.policy-content ul {
  padding-left: 1.5rem;
  list-style: disc;
  margin-bottom: 1.5rem;
}

.policy-content ul li {
  margin-bottom: 0.5rem;
}

/* =========================================
   15. ACCESSIBILITY & FOCUS STATES
   ========================================= */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--primary);
  color: var(--bg);
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  font-weight: 600;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
}

/* =========================================
   16. RESPONSIVE BREAKPOINTS (768px)
   ========================================= */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }

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

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

  .feature-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 60%;
    margin: 0 auto;
    transform: rotate(1deg);
  }

  .services-grid {
    gap: 4rem;
  }

  .service-item {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .service-image img {
    height: 100%;
    min-height: 350px;
  }

  .about-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
  }

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

  .stat-item:nth-child(odd) {
    transform: translateY(25px);
  }

  .stat-item:nth-child(even) {
    transform: translateY(-15px);
  }

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

  .testimonial-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 70%;
    margin: 2rem auto 0;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-popup {
    left: auto;
  }

  .hero-image-aside {
    display: block;
  }
}

/* =========================================
   17. RESPONSIVE BREAKPOINTS (1024px)
   ========================================= */
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }

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

  .feature-card:nth-child(3) {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
    transform: rotate(-1.5deg);
  }

  .feature-card:nth-child(2) {
    transform: translateY(-20px) rotate(-1deg);
  }

  .services-grid {
    gap: 6rem;
  }

  .service-item {
    gap: 5rem;
  }

  .service-item:nth-child(even) .service-image {
    order: 0;
  }

  .service-item:nth-child(even) .service-content {
    order: 2;
  }

  .about-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 8rem;
  }

  .about-image-wrapper img {
    height: 550px;
  }

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

  .testimonial-card:nth-child(3) {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
    transform: rotate(-1.5deg) translateY(-10px);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
  }

  .hero-content h1 {
    max-width: 80%;
  }
}

/* =========================================
   18. PREFERS REDUCED MOTION
   ========================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto;
  }

  .feature-card,
  .testimonial-card,
  .stat-item,
  .service-image img {
    transform: none !important;
  }
}

/* =========================================
   19. PRINT STYLES
   ========================================= */
@media print {
  .header,
  .footer,
  .cookie-popup,
  .mobile-menu-toggle,
  .cta-section {
    display: none !important;
  }

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

  .section {
    padding: 2rem 0;
  }

  a {
    text-decoration: underline;
    color: #000;
  }
}