/* ============================================
   SP CULTOUR — Landing Page Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Custom Properties --- */
:root {
  --marsala: #7A1B2D;
  --marsala-dark: #5A1220;
  --marsala-light: #9E2E42;
  --cream: #D9D4C5;
  --cream-light: #EFECE3;
  --cream-dark: #C4BFB0;
  --gold: #C8A96E;
  --gold-light: #D4BC8A;
  --dark: #1A1A1A;
  --dark-soft: #2A2A2A;
  --white: #FAFAF8;
  --text-dark: #1A1A1A;
  --text-muted: #6B6B6B;
  --text-light: #EFECE3;

  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.15);
  --shadow-glow: 0 0 40px rgba(200,169,110,.15);

  --transition: all .4s cubic-bezier(.25,.46,.45,.94);
  --transition-fast: all .25s ease;
}

/* --- Reset & Base --- */
*,*::before,*::after { margin:0;padding:0;box-sizing:border-box; }

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

body {
  font-family: var(--ff-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(90%, 1200px);
  margin: 0 auto;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(40px); }
  to { opacity:1; transform:translateY(0); }
}

@keyframes fadeIn {
  from { opacity:0; }
  to { opacity:1; }
}

@keyframes slideInLeft {
  from { opacity:0; transform:translateX(-60px); }
  to { opacity:1; transform:translateX(0); }
}

@keyframes slideInRight {
  from { opacity:0; transform:translateX(60px); }
  to { opacity:1; transform:translateX(0); }
}

@keyframes scaleIn {
  from { opacity:0; transform:scale(.85); }
  to { opacity:1; transform:scale(1); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* staggered delays */
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(122,27,45,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: .7rem 0;
  box-shadow: 0 4px 30px rgba(122,27,45,.35);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 52px;
  width: auto;
  transition: var(--transition-fast);
}

.navbar.scrolled .navbar-logo img {
  height: 42px;
}

.navbar-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navbar-links a {
  color: var(--cream-light);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  position: relative;
  padding: .25rem 0;
  transition: var(--transition-fast);
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition-fast);
}

.navbar-links a:hover { color: var(--gold); }
.navbar-links a:hover::after { width: 100%; }

.navbar-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: .55rem 1.4rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: .8rem !important;
  letter-spacing: .04em !important;
  transition: var(--transition) !important;
}

.navbar-cta::after { display: none !important; }

.navbar-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,169,110,.35);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: .5rem;
}

.menu-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--cream-light);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg,
      rgba(26,26,26,.45) 0%,
      rgba(122,27,45,.55) 50%,
      rgba(26,26,26,.8) 100%
    );
}

.hero-content {
  text-align: center;
  color: var(--cream-light);
  max-width: 800px;
  padding: 2rem;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-logo {
  width: 140px;
  height: 140px;
  margin: 0 auto 2rem;
  animation: scaleIn 1s ease forwards;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,.3));
  border-radius: 50%;
  overflow: hidden;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: transparent;
}

.hero-tagline {
  font-family: var(--ff-body);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--ff-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0,0,0,.3);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(239,236,227,.85);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--gold);
  color: var(--dark);
  padding: .9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .03em;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(200,169,110,.3);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(200,169,110,.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: transparent;
  color: var(--cream-light);
  padding: .85rem 2.2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .03em;
  border: 2px solid rgba(239,236,227,.35);
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: float 3s ease-in-out infinite;
}

.hero-scroll svg {
  width: 30px;
  height: 30px;
  color: var(--cream);
  opacity: .6;
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
section {
  padding: 7rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-family: var(--ff-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
  display: block;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--marsala);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--white);
}

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

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

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform .6s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  border-radius: var(--radius-lg);
  border: 4px solid var(--gold);
  z-index: -1;
}

.about-text h3 {
  font-family: var(--ff-heading);
  font-size: 2.2rem;
  color: var(--marsala);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.8;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(135deg, rgba(122,27,45,.06), rgba(200,169,110,.08));
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold);
  margin-top: 1.5rem;
}

.about-highlight-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.about-highlight p {
  margin: 0;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* ============================================
   CRISTINA LEAL - FOUNDER
   ============================================ */
.founder {
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.founder::before {
  content: '';
  position: absolute;
  top: -150px; left: -150px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,27,45,.06), transparent 70%);
}

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

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

.founder-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.founder-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s ease;
}

.founder-image:hover img {
  transform: scale(1.03);
}

.founder-accent {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 150px;
  height: 150px;
  border-radius: var(--radius-lg);
  border: 4px solid var(--marsala);
  z-index: -1;
}

.founder-text h3 {
  font-family: var(--ff-heading);
  font-size: 2rem;
  color: var(--marsala);
  margin-bottom: .5rem;
  line-height: 1.3;
}

.founder-text .founder-role {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
  letter-spacing: .02em;
}

.founder-text p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.8;
}

.founder-locations {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.5rem;
}

.founder-location-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1rem;
  background: rgba(122,27,45,.08);
  border: 1px solid rgba(122,27,45,.15);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--marsala);
  transition: var(--transition-fast);
}

.founder-location-tag:hover {
  background: var(--marsala);
  color: var(--cream-light);
  border-color: var(--marsala);
}

.founder-vision {
  margin-top: 1.5rem;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(135deg, rgba(122,27,45,.06), rgba(200,169,110,.08));
  border-radius: var(--radius-md);
  border-left: 4px solid var(--marsala);
}

.founder-vision p {
  margin: 0;
  font-size: .95rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
}

/* ============================================
   DIFFERENTIALS / FEATURES
   ============================================ */
.differentials {
  background: var(--cream-light);
  position: relative;
  overflow: hidden;
}

.differentials::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,.12), transparent 70%);
}

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

.diff-card {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(200,169,110,.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.diff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--marsala), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.diff-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

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

.diff-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--marsala), var(--marsala-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--cream-light);
  box-shadow: 0 8px 25px rgba(122,27,45,.25);
}

.diff-card h4 {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  color: var(--marsala);
  margin-bottom: .8rem;
}

.diff-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  background: var(--dark);
  padding: 7rem 0;
}

.gallery .section-title {
  color: var(--cream-light);
}

.gallery .section-subtitle {
  color: rgba(239,236,227,.6);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(122,27,45,.7) 100%);
  opacity: 0;
  transition: opacity .4s ease;
}

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

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

/* Uniform grid — no masonry spans for clean alignment */

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: var(--white);
  position: relative;
}

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

.service-card {
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(200,169,110,.15);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card-image {
  height: 220px;
  overflow: hidden;
}

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

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

.service-card-body {
  padding: 2rem;
}

.service-card-body .service-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
  display: block;
}

.service-card-body h4 {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  color: var(--marsala);
  margin-bottom: .8rem;
}

.service-card-body p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--marsala);
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition-fast);
}

.service-link:hover {
  color: var(--gold);
  gap: .8rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: linear-gradient(135deg, var(--marsala-dark) 0%, var(--marsala) 50%, var(--marsala-light) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,.12), transparent 70%);
}

.testimonials .section-label { color: var(--gold-light); }
.testimonials .section-title { color: var(--cream-light); }
.testimonials .section-subtitle { color: rgba(239,236,227,.6); }

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

.testimonial-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(239,236,227,.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition);
}

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

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--gold);
  font-family: var(--ff-heading);
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: rgba(239,236,227,.85);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark);
  font-size: .9rem;
}

.testimonial-name {
  color: var(--cream-light);
  font-weight: 600;
  font-size: .9rem;
}

.testimonial-role {
  color: var(--gold);
  font-size: .8rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  background: var(--cream-light);
  text-align: center;
  position: relative;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--marsala);
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #25D366;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 6px 25px rgba(37,211,102,.3);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(37,211,102,.4);
}

.btn-whatsapp svg {
  width: 22px;
  height: 22px;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 6px 25px rgba(225,48,108,.3);
}

.btn-instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(225,48,108,.4);
}

.btn-instagram svg {
  width: 22px;
  height: 22px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer-logo img {
  height: 60px;
  margin: 0 auto 1.5rem;
  opacity: .8;
}

.footer-text {
  color: rgba(239,236,227,.4);
  font-size: .85rem;
  margin-bottom: .5rem;
}

.footer-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem auto;
  opacity: .4;
}

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
  }

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

  .services-grid .service-card:last-child {
    grid-column: span 2;
  }

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

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

@media (max-width: 768px) {
  /* Founder */
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .founder-image img { height: 400px; }
  .founder-accent { display: none; }
  section { padding: 5rem 0; }

  /* Navbar */
  .navbar-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    height: 100vh;
    background: rgba(26,26,26,.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right .4s ease;
    padding: 2rem;
  }

  .navbar-links.active { right: 0; }

  .menu-toggle { display: flex; }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image img { height: 350px; }
  .about-accent { display: none; }

  /* Differentials */
  .diff-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

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

  .services-grid .service-card:last-child {
    grid-column: span 1;
  }

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

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

  /* Hero */
  .hero-logo { width: 110px; height: 110px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
}

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

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

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 80px rgba(0,0,0,.5);
  transition: transform .4s ease;
}

.lightbox.active img {
  animation: scaleIn .4s ease;
}

.lightbox-close {
  position: absolute;
  top: 2rem; right: 2rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border: none;
  cursor: pointer;
}

.lightbox-close:hover {
  background: var(--marsala);
}
