/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #4a3728;
  background: #fffbf7;
  line-height: 1.7;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
.font-display { font-family: 'Cormorant Garamond', Georgia, serif; }
.font-body { font-family: 'Montserrat', sans-serif; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; line-height: 1.2; }

/* ===== UTILITY ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-padding { padding: 80px 0; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #be185d;
  margin-bottom: 10px;
  font-weight: 600;
}
.section-header .subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #d4a940;
  font-weight: 600;
}
.section-header .divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4a940, transparent);
  margin: 16px auto 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 38px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, #ec4899, #be185d);
  color: #fff;
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.5);
}
.btn-outline {
  background: transparent;
  color: #be185d;
  border: 2px solid #be185d;
}
.btn-outline:hover {
  background: #be185d;
  color: #fff;
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, #d4a940, #c9952e);
  color: #fff;
  box-shadow: 0 4px 20px rgba(212, 169, 64, 0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 169, 64, 0.5);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: transparent;
}
.nav.scrolled {
  background: rgba(255, 251, 247, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.06);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #be185d;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo svg { width: 28px; height: 28px; }
.nav-links {
  display: none;
  gap: 32px;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #4a3728;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: #ec4899;
  transition: width 0.3s;
}
.nav-links a:hover { color: #be185d; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: none; }
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: #be185d;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #fffbf7, #fdf2f8);
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 100px 40px 40px;
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 1rem;
  font-weight: 500;
  color: #4a3728;
  border-bottom: 1px solid rgba(212, 169, 64, 0.15);
  transition: color 0.3s, padding-left 0.3s;
}
.mobile-menu a:hover { color: #be185d; padding-left: 8px; }
.mobile-menu .btn { margin-top: 24px; width: 100%; }
.mobile-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #fdf2f8 0%, #fffbf7 50%, #fff9f0 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: blobFloat 12s ease-in-out infinite alternate;
}
.hero-blob-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #fce7f3, transparent);
  top: -10%; right: -10%;
}
.hero-blob-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #fde68a, transparent);
  bottom: -5%; left: -5%;
  animation-delay: -4s;
}
.hero-blob-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, #fbcfe8, transparent);
  top: 40%; left: 50%;
  animation-delay: -8s;
}
@keyframes blobFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.1); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #d4a940;
  border: 1px solid rgba(212, 169, 64, 0.2);
  margin-bottom: 24px;
  animation: fadeUp 1s both;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 700;
  color: #be185d;
  margin-bottom: 8px;
  animation: fadeUp 1s 0.2s both;
  line-height: 1.05;
}
.hero h1 .ampersand {
  color: #d4a940;
  font-style: italic;
}
.hero .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: #8b6c5c;
  margin-bottom: 12px;
  animation: fadeUp 1s 0.4s both;
}
.hero .hero-sub {
  font-size: 0.85rem;
  color: #9b8b7e;
  margin-bottom: 36px;
  animation: fadeUp 1s 0.5s both;
}
.hero-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #d4a940;
  margin-bottom: 36px;
  animation: fadeUp 1s 0.6s both;
}
.hero-stars svg { width: 20px; height: 20px; }
.hero-stars span {
  font-size: 0.8rem;
  font-weight: 500;
  color: #8b6c5c;
  margin-left: 8px;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  animation: fadeUp 1s 0.7s both;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 2s ease-in-out infinite;
  color: #d4a940;
  opacity: 0.5;
}
.hero-scroll svg { width: 24px; height: 24px; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Floating decorative elements */
.hero-float {
  position: absolute;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}
.hero-float-1 { top: 15%; left: 5%; animation: floatSpin 20s linear infinite; }
.hero-float-2 { top: 25%; right: 8%; animation: floatSpin 25s linear infinite reverse; }
.hero-float-3 { bottom: 20%; left: 10%; animation: floatSpin 18s linear infinite; }
.hero-float-4 { bottom: 15%; right: 5%; animation: floatSpin 22s linear infinite reverse; }
@keyframes floatSpin {
  0% { transform: rotate(0deg) translateY(0); }
  25% { transform: rotate(90deg) translateY(-10px); }
  50% { transform: rotate(180deg) translateY(0); }
  75% { transform: rotate(270deg) translateY(10px); }
  100% { transform: rotate(360deg) translateY(0); }
}

/* ===== MARQUEE ===== */
.marquee-section {
  background: linear-gradient(135deg, #be185d, #9d174d);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.9);
}
.marquee-item svg { width: 10px; height: 10px; fill: #d4a940; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SERVICES ===== */
.services {
  background: #fffbf7;
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,169,64,0.2), transparent);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 169, 64, 0.1);
  transition: all 0.4s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(190, 24, 93, 0.08);
  border-color: rgba(236, 72, 153, 0.2);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ec4899, #d4a940);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #fdf2f8, #fce7f3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 28px; height: 28px; color: #ec4899; }
.service-card h3 {
  font-size: 1.4rem;
  color: #be185d;
  margin-bottom: 16px;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(212, 169, 64, 0.15);
}
.service-item:last-child { border-bottom: none; }
.service-name {
  font-size: 0.88rem;
  color: #5a4a3a;
}
.service-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #be185d;
  white-space: nowrap;
}
.service-note {
  font-size: 0.72rem;
  color: #9b8b7e;
  margin-top: 14px;
  font-style: italic;
}

/* ===== GALLERY ===== */
.gallery {
  background: linear-gradient(180deg, #fdf2f8, #fffbf7);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.gallery-item {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #fce7f3 0%, #fff1f5 50%, #fdf2f8 100%);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px dashed rgba(212, 169, 64, 0.25);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(236,72,153,0.03), rgba(212,169,64,0.03));
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover::before { opacity: 1; }
.gallery-item:hover { transform: scale(1.02); border-color: rgba(236,72,153,0.3); }
.gallery-item svg { width: 36px; height: 36px; color: rgba(190,24,93,0.2); }
.gallery-item span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(190,24,93,0.3);
  font-weight: 600;
}
.gallery-item:nth-child(1) { grid-column: 1 / -1; aspect-ratio: 2/1; }
.gallery-note {
  text-align: center;
  margin-top: 30px;
  font-size: 0.82rem;
  color: #9b8b7e;
  font-style: italic;
}

/* ===== ABOUT ===== */
.about { background: #fffbf7; }
.about-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.about-content p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: #5a4a3a;
  margin-bottom: 20px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.stat {
  text-align: center;
  padding: 24px 12px;
  background: linear-gradient(135deg, rgba(253,242,248,0.5), rgba(255,251,247,0.5));
  border-radius: 16px;
  border: 1px solid rgba(212,169,64,0.1);
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: #be185d;
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #9b8b7e;
  margin-top: 6px;
  font-weight: 500;
}

/* ===== REVIEWS ===== */
.reviews {
  background: linear-gradient(180deg, #fdf2f8, #fffbf7);
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(253,230,138,0.1), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(212,169,64,0.1);
  transition: all 0.4s;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(190,24,93,0.06);
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
  color: #d4a940;
}
.review-stars svg { width: 16px; height: 16px; }
.review-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #5a4a3a;
  font-style: italic;
  margin-bottom: 18px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1rem;
  color: #be185d;
}
.review-author-info .name {
  font-weight: 600;
  font-size: 0.85rem;
  color: #4a3728;
}
.review-author-info .date {
  font-size: 0.72rem;
  color: #9b8b7e;
}

/* ===== PROMO BANNER ===== */
.promo {
  background: linear-gradient(135deg, #be185d, #9d174d);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.promo::before, .promo::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.promo::before { width: 300px; height: 300px; top: -100px; right: -50px; }
.promo::after { width: 200px; height: 200px; bottom: -80px; left: -40px; }
.promo h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.promo p {
  font-size: 0.92rem;
  opacity: 0.9;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.promo .btn {
  background: #fff;
  color: #be185d;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.promo .btn:hover {
  background: #fdf2f8;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ===== CONTACT ===== */
.contact { background: #fffbf7; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, #fdf2f8, #fce7f3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 22px; height: 22px; color: #ec4899; }
.contact-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9b8b7e;
  margin-bottom: 4px;
}
.contact-item p, .contact-item a {
  font-size: 0.92rem;
  color: #4a3728;
  line-height: 1.6;
}
.contact-item a:hover { color: #be185d; }
.contact-hours table {
  width: 100%;
  border-collapse: collapse;
}
.contact-hours td {
  padding: 8px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(212,169,64,0.1);
}
.contact-hours td:last-child {
  text-align: right;
  font-weight: 500;
  color: #be185d;
}
.contact-map {
  background: linear-gradient(135deg, #fce7f3 0%, #fdf2f8 100%);
  border-radius: 20px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px dashed rgba(212,169,64,0.25);
}
.contact-map svg { width: 40px; height: 40px; color: rgba(190,24,93,0.25); }
.contact-map span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(190,24,93,0.3);
  font-weight: 600;
}
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, #1a0a10, #0d0509);
  color: rgba(255,255,255,0.6);
  padding: 60px 20px 30px;
}
.footer-top {
  text-align: center;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ec4899;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-links a:hover { color: #ec4899; }
.footer-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,169,64,0.3), transparent);
  margin: 0 auto 24px;
}
.footer-bottom {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom p { margin-bottom: 8px; }
.onward-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1px solid rgba(212,169,64,0.15);
  border-radius: 50px;
  margin-top: 12px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.onward-badge:hover {
  border-color: rgba(212,169,64,0.3);
  color: rgba(255,255,255,0.6);
}
.onward-badge svg { width: 14px; height: 14px; color: #d4a940; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE — TABLET ===== */
@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; gap: 16px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid .review-card:last-child { grid-column: 1 / -1; max-width: 500px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-buttons { flex-direction: row; }
}

/* ===== RESPONSIVE — DESKTOP ===== */
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .hamburger { display: none; }
  .section-padding { padding: 100px 0; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; aspect-ratio: auto; }
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .reviews-grid .review-card:last-child { grid-column: auto; max-width: none; }
}