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

:root {
  --plum-50: #faf5ff;
  --plum-100: #f3e8ff;
  --plum-200: #e9d5ff;
  --plum-300: #d8b4fe;
  --plum-400: #c084fc;
  --plum-500: #a855f7;
  --plum-600: #9333ea;
  --plum-700: #7c3aed;
  --plum-800: #6b21a8;
  --plum-900: #581c87;
  --plum-950: #3b0764;

  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;

  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--gray-50);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

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

.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--plum-700); color: white;
  padding: 0.5rem 1rem; border-radius: var(--radius-sm);
  z-index: 9999; font-size: 0.875rem;
}
.skip-link:focus { top: 1rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex; align-items: center;
  height: 72px; gap: 2rem;
}

.logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo-icon { flex-shrink: 0; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}
.logo-text .dot { color: var(--amber-500); }

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--plum-700); background: var(--plum-50); }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 0.5rem; margin-left: auto;
}
.nav-toggle .bar {
  display: block; width: 22px; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 600; border-radius: var(--radius-full);
  transition: all var(--transition); white-space: nowrap;
}
.btn-sm { padding: 0.45rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 0.8rem 1.75rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; padding: 0.9rem 1.75rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--plum-600), var(--plum-700));
  color: white;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.btn-outline {
  background: white;
  color: var(--plum-700);
  border: 2px solid var(--plum-200);
}
.btn-outline:hover {
  border-color: var(--plum-500);
  background: var(--plum-50);
  transform: translateY(-2px);
}

.btn-white {
  background: white; color: var(--plum-700);
  box-shadow: var(--shadow-lg);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); }

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

/* ===== SECTION HELPERS ===== */
.section-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--plum-600);
  background: var(--plum-100);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.7;
}

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-subtitle { margin: 0 auto; }

.gradient-text {
  background: linear-gradient(135deg, var(--plum-600), var(--amber-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
  background: linear-gradient(160deg, var(--plum-50) 0%, var(--gray-50) 40%, var(--amber-50) 100%);
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.4;
}
.blob-1 {
  width: 500px; height: 500px;
  background: var(--plum-200);
  top: -10%; right: -5%;
  animation: float-slow 8s ease-in-out infinite;
}
.blob-2 {
  width: 350px; height: 350px;
  background: var(--amber-200);
  bottom: 5%; left: -3%;
  animation: float-slow 10s ease-in-out infinite reverse;
}
.blob-3 {
  width: 200px; height: 200px;
  background: var(--plum-100);
  top: 40%; left: 30%;
  animation: float-slow 6s ease-in-out infinite;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-10px, 15px) scale(0.95); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 600;
  color: var(--plum-700);
  background: white;
  border: 1px solid var(--plum-200);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}

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

/* Floating Cards */
.hero-cards {
  position: relative;
  height: 480px;
  min-height: 400px;
}

.float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(124, 58, 237, 0.06);
  animation: float 4s ease-in-out infinite;
}

.float-card-1 { top: 0; right: 0; animation-delay: 0s; }
.float-card-2 { top: 45%; left: 0; animation-delay: 1.3s; }
.float-card-3 { bottom: 5%; right: 10%; animation-delay: 2.6s; }

.fc-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--plum-100), var(--plum-200));
  color: var(--plum-700);
  margin-bottom: 0.6rem;
}

.fc-label { font-size: 0.75rem; color: var(--gray-400); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.fc-value { font-size: 1rem; font-weight: 700; color: var(--gray-900); }

.hero-stat-card {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--plum-700), var(--plum-800));
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(107, 33, 168, 0.3);
  z-index: 2;
}

.hc-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--amber-400);
  margin-bottom: 0.25rem;
}
.hc-label { font-size: 0.8rem; color: var(--plum-200); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===== SERVICES ===== */
.services {
  padding: 6rem 0;
  background: white;
}

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

.service-card {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--plum-200);
}

.service-card.featured {
  background: linear-gradient(160deg, var(--plum-700), var(--plum-800));
  border: none;
  color: white;
}
.service-card.featured .sc-visual-overlay { background: linear-gradient(to top, rgba(88, 28, 135, 0.7), transparent); }
.service-card.featured .sc-title,
.service-card.featured .sc-desc,
.service-card.featured .sc-list li { color: white; }
.service-card.featured .sc-list li::before { color: var(--amber-400); }
.service-card.featured .sc-emoji { background: rgba(255,255,255,0.15); }

.sc-badge {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  color: var(--gray-900);
  font-size: 0.75rem; font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase; letter-spacing: 0.05em;
}

.sc-visual {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.sc-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .sc-visual img { transform: scale(1.05); }
.sc-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
}

.sc-body { padding: 1.5rem; }
.sc-emoji {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  background: var(--plum-100);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.sc-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.sc-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.sc-list { display: flex; flex-direction: column; gap: 0.5rem; }
.sc-list li {
  font-size: 0.875rem;
  color: var(--gray-600);
  padding-left: 1.25rem;
  position: relative;
}
.sc-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--plum-600);
  font-weight: 700;
}

/* ===== ABOUT ===== */
.about {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--gray-50), var(--plum-50));
}

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

.about-img-stack { position: relative; height: 560px; }

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%; height: 80%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-float {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid white;
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }

.about-accent {
  position: absolute;
  top: -20px; right: 30%;
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--amber-300), var(--amber-400));
  border-radius: var(--radius-xl);
  opacity: 0.5;
  z-index: -1;
}

.about-content { max-width: 480px; }
.about-text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-stats {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.5rem 0;
  margin-bottom: 2rem;
}

.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--plum-700);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--gray-500); font-weight: 500; margin-top: 0.25rem; }

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

/* ===== GALLERY ===== */
.gallery {
  padding: 6rem 0;
  background: white;
}

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

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: auto;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(88,28,135,0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* ===== REVIEWS ===== */
.reviews {
  padding: 6rem 0;
  background: linear-gradient(160deg, var(--plum-900), var(--plum-950));
  color: white;
}

.reviews .section-tag {
  background: rgba(255,255,255,0.1);
  color: var(--plum-200);
}

.reviews .section-title { color: white; }
.reviews .section-subtitle { color: var(--plum-200); }

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

.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all var(--transition);
}
.review-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.review-stars {
  display: flex; gap: 0.25rem;
  color: var(--amber-400);
  margin-bottom: 1.25rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--plum-100);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex; align-items: center; gap: 0.75rem;
}

.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--plum-500), var(--amber-500));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: white;
  flex-shrink: 0;
}

.review-name { font-weight: 600; font-size: 0.9rem; color: white; }
.review-location { font-size: 0.8rem; color: var(--plum-300); }

/* ===== CTA ===== */
.cta { padding: 5rem 0; background: var(--gray-50); }

.cta-card {
  position: relative;
  background: linear-gradient(135deg, var(--plum-700), var(--plum-800));
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  overflow: hidden;
  text-align: center;
}

.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cta-blob {
  position: absolute; border-radius: 50%; filter: blur(50px);
}
.cta-blob-1 {
  width: 300px; height: 300px;
  background: var(--plum-500);
  top: -100px; left: -50px;
  opacity: 0.4;
}
.cta-blob-2 {
  width: 250px; height: 250px;
  background: var(--amber-500);
  bottom: -80px; right: -30px;
  opacity: 0.3;
}

.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: white;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--plum-200);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact {
  padding: 6rem 0;
  background: white;
}

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

.contact-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-items { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
}

.ci-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: var(--plum-100);
  color: var(--plum-700);
  flex-shrink: 0;
}

.ci-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-400); margin-bottom: 0.15rem; }
.ci-value { font-size: 0.95rem; color: var(--gray-700); line-height: 1.6; }
.ci-value a { color: var(--plum-700); font-weight: 500; transition: color var(--transition); }
.ci-value a:hover { color: var(--plum-500); }

.contact-form-wrap {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum-400);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: flex; align-items: center; gap: 0.6rem;
  margin-top: 1rem;
  padding: 1rem;
  background: var(--plum-50);
  border: 1px solid var(--plum-200);
  border-radius: var(--radius-md);
  color: var(--plum-800);
  font-size: 0.9rem;
  font-weight: 500;
}
.form-success svg { color: var(--plum-600); flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 4rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

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

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-200);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-400);
  padding: 0.3rem 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--amber-400); }
.footer-col span {
  display: block;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding: 1.5rem 0;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: var(--gray-500);
}
.footer-loc { margin-top: 0.25rem; }

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(250, 250, 250, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 2rem;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }
  .nav-links .btn { align-self: center; margin-top: 1rem; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-cards { display: none; }
  .hero-content { max-width: 100%; }

  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-stack { height: 400px; }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .service-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .cta-card { padding: 3rem 1.5rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .about-img-stack { height: 300px; }
}
