/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --burgundy: #800020;
  --burgundy-dark: #5c0017;
  --burgundy-light: #a02040;
  --blush: #FADADD;
  --blush-light: #FFF0F2;
  --blush-dark: #e8b4b8;
  --cream: #FFF8F9;
  --dark: #1a0a0e;
  --dark-soft: #2d1518;
  --gray: #6b5055;
  --gray-light: #9a7d82;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(128, 0, 32, 0.10);
  --shadow-lg: 0 12px 48px rgba(128, 0, 32, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.section-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 560px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

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

.btn-outline-dark {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}

.btn-outline-dark:hover {
  background: var(--burgundy);
  color: var(--white);
}

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

.btn-white:hover {
  background: var(--blush);
  border-color: var(--blush);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--burgundy);
}

.btn-full {
  width: 100%;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 248, 249, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--blush);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(128, 0, 32, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.logo-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--burgundy);
  background: var(--burgundy);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}

.logo-wordmark {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--dark);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 8px 16px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark-soft);
  border-radius: 50px;
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--burgundy);
  background: var(--blush-light);
}

.btn-nav {
  background: var(--burgundy);
  color: var(--white) !important;
  font-weight: 600 !important;
}

.btn-nav:hover {
  background: var(--burgundy-dark) !important;
  color: var(--white) !important;
}

/* NAV TOGGLE */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
}

.hamburger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 2px;
  background: var(--dark);
  box-shadow: 0 -7px 0 var(--dark), 0 7px 0 var(--dark);
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] .hamburger {
  box-shadow: 0 0 0 transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--dark);
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--dark);
  transform: rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--burgundy);
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(128,0,32,0.97) 0%, rgba(92,0,23,0.95) 50%, rgba(60,0,15,0.93) 100%);
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.geo {
  position: absolute;
  z-index: 0;
}

.geo--1 {
  width: 600px;
  height: 600px;
  background: var(--burgundy-light);
  border-radius: 50%;
  top: -200px;
  right: -150px;
  opacity: 0.3;
}

.geo--2 {
  width: 300px;
  height: 300px;
  background: var(--blush);
  top: 50%;
  left: -80px;
  opacity: 0.12;
  transform: rotate(45deg);
}

.geo--3 {
  width: 150px;
  height: 150px;
  background: var(--blush);
  border-radius: 50%;
  bottom: 10%;
  right: 15%;
  opacity: 0.2;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.05;
}

.hero-title br {
  display: none;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--blush);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: var(--blush);
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.badge svg {
  width: 16px;
  height: 16px;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--blush-dark), var(--burgundy));
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-desc {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--blush);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--burgundy);
  transform: scaleX(0);
  transition: var(--transition);
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blush-light);
  border-radius: var(--radius);
  margin-bottom: 20px;
  color: var(--burgundy);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--burgundy);
  color: var(--white);
}

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

.service-card h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ===== WHY US ===== */
.why-us {
  padding: 100px 0;
  background: var(--blush-light);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--blush);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  opacity: 0.5;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-image-wrap {
  position: relative;
}

.why-image {
  position: absolute;
  inset: 20px -20px -20px 20px;
  background: var(--burgundy);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.why-image-wrap img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.why-image-overlay {
  position: absolute;
  bottom: -24px;
  left: -24px;
  z-index: 2;
  background: var(--burgundy);
  color: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.why-stat {
  display: flex;
  flex-direction: column;
}

.why-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--blush);
}

.why-stat-label {
  font-size: 0.85rem;
  color: var(--blush-dark);
  margin-top: 4px;
}

.why-content .section-title {
  margin-bottom: 20px;
}

.why-intro {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.7;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.why-check svg {
  width: 14px;
  height: 14px;
  color: var(--white);
}

.why-item strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.why-item span {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--cream);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text .section-title {
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--blush);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--burgundy);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--blush-dark);
}

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

.about-image-group img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
}

.about-image-group img:first-child {
  height: 340px;
  margin-bottom: 20px;
}

.about-image-group img:last-child {
  height: 220px;
}

.about-geo {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--burgundy);
  border-radius: 50%;
  bottom: 40px;
  right: -30px;
  opacity: 0.15;
  z-index: -1;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: var(--burgundy);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: var(--burgundy-dark);
  border-radius: 50%;
  bottom: -400px;
  left: -200px;
  opacity: 0.4;
}

.testimonials .section-eyebrow {
  color: var(--blush);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials .section-header {
  position: relative;
  z-index: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--blush);
  opacity: 0.5;
  margin-bottom: -8px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--blush);
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0.9;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--blush-dark);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 100px 0;
  background: var(--blush);
  position: relative;
  overflow: hidden;
}

.cta-geo--1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--burgundy);
  border-radius: 50%;
  top: -200px;
  left: -100px;
  opacity: 0.06;
}

.cta-geo--2 {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--burgundy);
  border-radius: 50%;
  bottom: -80px;
  right: 10%;
  opacity: 0.08;
}

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

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--dark);
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-title {
  margin-bottom: 16px;
}

.contact-intro {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--blush-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-item strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.contact-item span,
.contact-item a {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--burgundy);
  text-decoration: underline;
}

/* FORM */
.contact-form-wrap {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--blush);
  box-shadow: var(--shadow);
}

.form-geo {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--blush);
  border-radius: 50%;
  top: -30px;
  right: -30px;
  opacity: 0.6;
}

.form-title {
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 24px;
  position: relative;
}

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

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark-soft);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--blush);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
}

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

.form-note {
  font-size: 0.8rem;
  color: var(--gray-light);
  margin-top: 12px;
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success svg {
  width: 56px;
  height: 56px;
  color: var(--burgundy);
  margin: 0 auto 16px;
}

.form-success h4 {
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--gray);
}

/* ===== MAP ===== */
.map-section {
  background: var(--dark);
}

.map-container {
  position: relative;
}

.map-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--blush), var(--burgundy));
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: var(--blush);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-mark {
  display: inline-block;
  margin-bottom: 12px;
}

.footer-brand .logo-wordmark {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  font-size: 0.9rem;
  color: var(--gray-light);
  transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--blush);
}

.footer-contact li {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  font-size: 0.8rem;
  color: var(--gray-light);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--blush);
    padding: 16px 24px 24px;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .main-nav a {
    padding: 12px 16px;
    border-radius: var(--radius);
  }

  .btn-nav {
    text-align: center;
    margin-top: 8px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-title br {
    display: block;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-layout,
  .about-inner,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-image-wrap img {
    height: 400px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .about-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .contact-form-wrap {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-inner {
    padding: 60px 16px;
  }

  .hero-badges {
    flex-direction: column;
  }

  .badge {
    width: 100%;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
  }

  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
