/* ==========================================================================
   LUNAIRE — La lune sur toute sa splendeur
   Style : Luxe / Chic — Glassmorphism, aurora effect, hover 3D
   ========================================================================== */

:root {
  --bg-deep: #0b0b1a;
  --bg-night: #12122a;
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.16);
  --glass-highlight: rgba(255, 255, 255, 0.28);
  --text: #f4f4fa;
  --text-muted: #b8b8d4;
  --gold: #d9b76a;
  --gold-light: #f1d998;
  --silver: #c8cde0;
  --lunar: #e9e6ff;
  --radius: 20px;
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.45);
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Jost", "Montserrat", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-deep);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   AURORA / DÉGRADÉ ANIMÉ EN ARRIÈRE-PLAN
   ========================================================================== */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 20%, #1a1a3d 0%, transparent 55%),
    radial-gradient(ellipse at 80% 10%, #241a4d 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, #0d0d22 0%, transparent 60%),
    var(--bg-deep);
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform;
}

.aurora-blob.b1 {
  width: 46vw;
  height: 46vw;
  background: radial-gradient(circle, #6d5bff 0%, transparent 70%);
  top: -12%;
  left: -8%;
  animation: drift1 24s ease-in-out infinite;
}

.aurora-blob.b2 {
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, #c94bd6 0%, transparent 70%);
  top: 25%;
  right: -10%;
  animation: drift2 30s ease-in-out infinite;
}

.aurora-blob.b3 {
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, #2c6bff 0%, transparent 70%);
  bottom: -18%;
  left: 22%;
  animation: drift3 36s ease-in-out infinite;
}

.aurora-blob.b4 {
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, #ffb45c 0%, transparent 70%);
  top: 50%;
  left: 40%;
  opacity: 0.35;
  animation: drift4 28s ease-in-out infinite;
}

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8vw, 10vh) scale(1.15); }
}

@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-7vw, -8vh) scale(1.1); }
}

@keyframes drift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-5vw, -12vh) scale(1.2); }
}

@keyframes drift4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(6vw, 8vh) scale(1.25); }
}

/* ==========================================================================
   NAVIGATION TRANSPARENTE
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 26, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 14px 5%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--lunar);
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--gold-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1100;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--text);
  transition: all 0.35s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1532693322450-2cb5c511067d?w=1600&q=80");
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) saturate(1.1);
  z-index: -1;
  animation: slowZoom 30s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 26, 0.55) 0%, rgba(11, 11, 26, 0.25) 50%, var(--bg-deep) 100%);
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}

.hero-content {
  max-width: 900px;
  animation: fadeUp 1.2s ease both;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--lunar);
  text-shadow: 0 0 60px rgba(233, 230, 255, 0.35);
  margin-bottom: 24px;
}

.hero h1 .accent {
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--silver));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 16px 42px;
  border-radius: 60px;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.35s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  color: #1a1406;
  box-shadow: 0 12px 35px rgba(217, 183, 106, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(217, 183, 106, 0.5);
}

.btn-ghost {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  color: var(--text);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bob 2.2s ease-in-out infinite;
}

.scroll-hint svg {
  width: 22px;
  height: 22px;
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ==========================================================================
   SECTIONS GÉNÉRIQUES
   ========================================================================== */
.section {
  padding: 110px 5%;
  position: relative;
}

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 70px;
}

.section-head .kicker {
  font-size: 0.78rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 500;
  color: var(--lunar);
  margin-bottom: 18px;
}

.section-head .divider {
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 20px;
}

.section-head p {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  font-weight: 300;
}

/* ==========================================================================
   CARTES GLASS 3D
   ========================================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 40px 32px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease,
    border-color 0.45s ease;
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 45%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-10px) rotateX(4deg) rotateY(-3deg);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(255, 255, 255, 0.06);
  border-color: var(--glass-highlight);
}

.glass-card:hover::before {
  opacity: 1;
}

.glass-card .icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(217, 183, 106, 0.22), rgba(217, 183, 106, 0.06));
  border: 1px solid rgba(217, 183, 106, 0.3);
  margin-bottom: 24px;
}

.glass-card .icon svg {
  width: 30px;
  height: 30px;
  color: var(--gold-light);
}

.glass-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--lunar);
  margin-bottom: 14px;
}

.glass-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
}

/* Cartes services avec image */
.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease,
    border-color 0.45s ease;
  transform-style: preserve-3d;
  will-change: transform;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px) rotateX(3deg) rotateY(-2deg);
  box-shadow: var(--shadow-soft);
  border-color: var(--glass-highlight);
}

.service-card .card-img {
  height: 240px;
  overflow: hidden;
}

.service-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover .card-img img {
  transform: scale(1.1);
}

.service-card .card-body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--lunar);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 18px;
}

.service-card .tag {
  margin-top: auto;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ==========================================================================
   GALERIE
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 11, 26, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item .caption {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  z-index: 2;
  color: var(--lunar);
  font-family: var(--font-display);
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
}

.gallery-item:hover .caption {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   TÉMOIGNAGES
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 30px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.testimonial-card .stars {
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.testimonial-card blockquote {
  color: var(--text);
  font-style: italic;
  font-weight: 300;
  font-size: 1.02rem;
  margin-bottom: 24px;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #8a6d3b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #1a1406;
  font-weight: 600;
}

.testimonial-card .author-name {
  font-weight: 600;
  color: var(--lunar);
}

.testimonial-card .author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FORMULAIRE CONTACT
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px 36px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--lunar);
  margin-bottom: 28px;
}

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

.contact-item .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(217, 183, 106, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item .ic svg {
  width: 20px;
  height: 20px;
  color: var(--gold-light);
}

.contact-item .label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-item .value {
  color: var(--text);
  font-size: 0.98rem;
}

.contact-form {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px 36px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

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

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease, background 0.3s ease;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(184, 184, 212, 0.55);
}

.form-status {
  display: none;
  padding: 14px 18px;
  border-radius: 12px;
  margin-top: 20px;
  font-size: 0.9rem;
}

.form-status.success {
  display: block;
  background: rgba(60, 200, 120, 0.15);
  border: 1px solid rgba(60, 200, 120, 0.4);
  color: #a5e8c0;
}

.form-status.error {
  display: block;
  background: rgba(220, 80, 80, 0.15);
  border: 1px solid rgba(220, 80, 80, 0.4);
  color: #f0b0b0;
}

/* ==========================================================================
   MAP
   ========================================================================== */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  margin-top: 50px;
  height: 380px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) invert(0.85) hue-rotate(200deg) brightness(0.9) contrast(0.95);
}

/* ==========================================================================
   CTA BANNIÈRE
   ========================================================================== */
.cta-banner {
  text-align: center;
  padding: 90px 5%;
  background: var(--glass-bg);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--lunar);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 34px;
  font-weight: 300;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  padding: 70px 5% 30px;
  background: rgba(8, 8, 20, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1240px;
  margin: 0 auto 50px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
  font-weight: 300;
  max-width: 300px;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--lunar);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s ease;
}

.footer ul a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

/* ==========================================================================
   ANIMATIONS REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes revealFallback {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  animation: revealFallback 0.9s ease 0.35s forwards;
}

.reveal.visible {
  animation: none;
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 15, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .cards-grid,
  .testimonials-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: rgba(10, 10, 26, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links a {
    font-size: 1rem;
  }
  .hamburger {
    display: flex;
  }
  .cards-grid,
  .testimonials-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 70px 5%;
  }
  .service-card .card-img {
    height: 200px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
  .scroll-hint {
    display: none;
  }
  .map-wrap {
    height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
