/* ============================================
   GracefulPleats - Royal Ethnic Gold Theme
   ============================================ */

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

:root {
  --maroon: #800020;
  --maroon-dark: #5C0015;
  --maroon-deep: #3D000E;
  --gold: #C9A84C;
  --gold-light: #D4BA6A;
  --gold-dark: #A68A3E;
  --ivory: #FFFDD0;
  --cream: #FFF8F0;
  --cream-dark: #F5EDE0;
  --charcoal: #2C2C2C;
  --text-dark: #3A3A3A;
  --text-muted: #777;
  --white: #FFFFFF;
  --shadow-soft: 0 4px 30px rgba(128,0,32,0.08);
  --shadow-hover: 0 15px 50px rgba(128,0,32,0.12);
  --transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; font-weight: 700; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* --- NAV --- */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1.1rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(128,0,32,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.2);
  padding: 0.8rem 3rem;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; font-weight: 700;
  color: var(--gold); letter-spacing: 2px;
}
.nav-links { list-style: none; display: flex; gap: 2.2rem; align-items: center; }
.nav-links li a {
  color: var(--ivory); font-size: 0.82rem; font-weight: 400;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: var(--transition); position: relative; padding-bottom: 4px;
}
.nav-links li a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links li a:hover { color: var(--gold); }
.nav-links li a:hover::after { width: 100%; }
.nav-cta {
  padding: 0.6rem 1.6rem !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  font-weight: 500 !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--maroon) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 6px;
  cursor: pointer; z-index: 1001; padding: 5px;
}
.hamburger span {
  width: 28px; height: 2px; background: var(--gold);
  transition: var(--transition); display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px,6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

.nav-overlay { display: none; }

/* --- HERO --- */
.hero {
  height: 100vh; min-height: 700px; position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(128,0,32,0.78), rgba(92,0,21,0.85) 50%, rgba(61,0,14,0.9));
}
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.12), transparent 60%);
  z-index: 1;
}

.shimmer-container {
  position: absolute; inset: 0; overflow: hidden;
  pointer-events: none; z-index: 1;
}
.shimmer-particle {
  position: absolute; width: 3px; height: 3px;
  background: var(--gold); border-radius: 50%;
  animation: shimmer-float 7s infinite ease-in-out; opacity: 0;
}
@keyframes shimmer-float {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  30% { opacity: 0.7; }
  70% { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1.2); }
}

.hero-content { position: relative; z-index: 2; padding: 2rem; max-width: 850px; }
.hero-label {
  display: inline-block; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  position: relative; padding: 0 1rem;
}
.hero-label::before, .hero-label::after {
  content: ''; position: absolute; top: 50%;
  width: 40px; height: 1px; background: var(--gold); opacity: 0.5;
}
.hero-label::before { right: 100%; }
.hero-label::after { left: 100%; }

.hero h1 {
  font-size: clamp(2.8rem,6vw,5rem);
  color: var(--ivory); line-height: 1.15; margin-bottom: 1.5rem;
}
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero-desc {
  color: rgba(255,253,208,0.8); font-size: clamp(1rem,1.8vw,1.2rem);
  max-width: 600px; margin: 0 auto 2.5rem; font-weight: 300; line-height: 1.8;
}
.hero-buttons { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

.btn-gold {
  display: inline-block; padding: 1rem 2.8rem;
  background: var(--gold); color: var(--maroon);
  font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase;
  border: 2px solid var(--gold); cursor: pointer; transition: var(--transition);
}
.btn-gold:hover {
  background: transparent; color: var(--gold);
  transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,168,76,0.2);
}
.btn-outline {
  display: inline-block; padding: 1rem 2.8rem;
  background: transparent; color: var(--ivory);
  font-family: 'Poppins', sans-serif; font-weight: 500;
  font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase;
  border: 1.5px solid rgba(255,253,208,0.4); cursor: pointer; transition: var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,253,208,0.5); font-size: 0.7rem;
  letter-spacing: 3px; text-transform: uppercase; animation: bounce 2s infinite;
}
.scroll-indicator .mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,253,208,0.4);
  border-radius: 12px; position: relative;
}
.scroll-indicator .mouse::before {
  content: ''; position: absolute; top: 6px;
  left: 50%; transform: translateX(-50%);
  width: 3px; height: 8px; background: var(--gold);
  border-radius: 2px; animation: scroll-mouse 2s infinite;
}
@keyframes scroll-mouse {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* --- DIVIDER --- */
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 1.2rem; padding: 2rem 0;
}
.divider-line {
  width: 80px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.divider-ornament {
  width: 12px; height: 12px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg); opacity: 0.6;
}
.divider-lg { padding: 3rem 0; }
.divider-lg .divider-line { width: 120px; }

/* --- SECTION COMMONS --- */
section { padding: 6rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.container-wide { max-width: 1400px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
}
.section-title {
  font-size: clamp(2rem,4vw,3rem);
  color: var(--maroon); line-height: 1.2; margin-bottom: 1rem;
}
.section-desc {
  max-width: 580px; margin: 0 auto;
  color: var(--text-muted); font-size: 1rem; line-height: 1.8; font-weight: 300;
}
.section-light .section-title { color: var(--ivory); }
.section-light .section-desc { color: rgba(255,253,208,0.7); }

/* --- SERVICES --- */
.services { background: var(--cream); }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem;
}
.service-card {
  background: var(--white); padding: 2.8rem 2rem;
  text-align: center; transition: var(--transition);
  position: relative; overflow: hidden;
  border: 1px solid rgba(201,168,76,0.1);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--maroon), var(--gold), var(--maroon));
  transform: scaleX(0); transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-icon {
  width: 70px; height: 70px; margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, rgba(128,0,32,0.05), rgba(201,168,76,0.08));
  border-radius: 50%; transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  transform: scale(1.05);
}
.service-icon svg {
  width: 28px; height: 28px; stroke: var(--maroon);
  stroke-width: 1.5; fill: none; transition: var(--transition);
}
.service-card:hover .service-icon svg { stroke: var(--gold); }
.service-card h3 { font-size: 1.25rem; color: var(--maroon); margin-bottom: 0.8rem; }
.service-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; }

/* --- GALLERY --- */
.gallery { background: var(--maroon); padding: 6rem 0; overflow: hidden; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 280px;
  gap: 0.8rem; padding: 0 2rem;
}
.gallery-item {
  overflow: hidden; position: relative; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.23,1,0.32,1);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(92,0,21,0.9), rgba(128,0,32,0.3) 40%, transparent);
  opacity: 0; transition: opacity 0.4s ease;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .g-overlay { opacity: 1; }
.g-overlay h4 { color: var(--gold); font-size: 1.1rem; letter-spacing: 1px; margin-bottom: 0.3rem; }
.g-overlay p { color: rgba(255,253,208,0.7); font-size: 0.8rem; font-weight: 300; }
.g-wide { grid-column: span 2; }
.g-tall { grid-row: span 2; }
.g-feature { grid-column: span 2; grid-row: span 2; }

/* --- STATS --- */
.stats {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  padding: 4rem 2rem;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; color: var(--gold); line-height: 1; margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.8rem; color: rgba(255,253,208,0.6);
  letter-spacing: 2px; text-transform: uppercase;
}

/* --- ABOUT --- */
.about { background: var(--cream); padding: 7rem 2rem; }
.about-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-images { position: relative; height: 580px; }
.about-img-main {
  position: relative; width: 85%; height: 100%;
  overflow: hidden; border: 3px solid var(--gold);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: -30px; right: -30px;
  width: 200px; height: 250px; overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-frame {
  position: absolute; top: 25px; left: 25px;
  width: 85%; height: 100%;
  border: 1.5px solid var(--gold); z-index: -1; opacity: 0.4;
}
.about-text .section-label { text-align: left; }
.about-text h2 {
  font-size: clamp(2rem,3.5vw,2.8rem);
  color: var(--maroon); margin-bottom: 1.5rem; line-height: 1.2;
}
.about-text p {
  color: var(--text-muted); font-size: 1rem;
  line-height: 2; margin-bottom: 1.5rem; font-weight: 300;
}
.about-signature {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 1.6rem; color: var(--gold); margin-top: 0.5rem;
}
.about-highlights { display: flex; gap: 2rem; margin-top: 2rem; }
.highlight-item { text-align: center; }
.highlight-item .h-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--maroon); line-height: 1;
}
.highlight-item .h-label {
  font-size: 0.75rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1px; margin-top: 0.3rem;
}

/* --- PROCESS --- */
.process { background: var(--cream-dark); padding: 6rem 2rem; }
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2rem; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 40px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.process-step { text-align: center; position: relative; }
.step-number {
  width: 80px; height: 80px; margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.8rem;
  color: var(--gold); border: 2px solid var(--gold);
  border-radius: 50%; background: var(--cream-dark);
  position: relative; z-index: 1;
}
.process-step h4 { font-size: 1.1rem; color: var(--maroon); margin-bottom: 0.8rem; }
.process-step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* --- TESTIMONIALS --- */
.testimonials {
  background: linear-gradient(145deg, var(--maroon), var(--maroon-dark), var(--maroon-deep));
  padding: 7rem 2rem; position: relative; overflow: hidden;
}
.testimonials::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.06), transparent 70%);
  border-radius: 50%;
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 2.5rem; transition: var(--transition);
  position: relative; backdrop-filter: blur(5px);
}
.testimonial-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-5px); background: rgba(255,255,255,0.07);
}
.testimonial-card::before {
  content: '\201C'; font-family: 'Playfair Display', serif;
  font-size: 5rem; color: var(--gold); opacity: 0.15;
  position: absolute; top: 10px; left: 20px; line-height: 1;
}
.testimonial-stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 1.2rem; font-size: 0.9rem; }
.testimonial-card .t-text {
  color: rgba(255,253,208,0.8); font-size: 1rem;
  line-height: 1.85; margin-bottom: 1.8rem;
  position: relative; z-index: 1; font-weight: 300;
}
.t-author { display: flex; align-items: center; gap: 1rem; }
.t-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--maroon); font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.t-author-info strong { display: block; color: var(--gold); font-size: 0.95rem; font-weight: 600; }
.t-author-info span { color: rgba(255,253,208,0.5); font-size: 0.8rem; }

/* --- CTA BANNER --- */
.cta-banner { background: var(--gold); padding: 4.5rem 2rem; text-align: center; }
.cta-banner h2 {
  font-size: clamp(1.8rem,3.5vw,2.5rem);
  color: var(--maroon); margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(128,0,32,0.7); font-size: 1.05rem;
  max-width: 550px; margin: 0 auto 2rem; font-weight: 300;
}
.btn-maroon {
  display: inline-block; padding: 1rem 3rem;
  background: var(--maroon); color: var(--ivory);
  font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase;
  border: 2px solid var(--maroon); cursor: pointer; transition: var(--transition);
}
.btn-maroon:hover {
  background: var(--maroon-dark); border-color: var(--maroon-dark);
  transform: translateY(-2px); box-shadow: 0 10px 30px rgba(128,0,32,0.3);
}

/* --- CONTACT --- */
.contact { background: var(--cream); padding: 7rem 2rem; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info h3 { font-size: 1.8rem; color: var(--maroon); margin-bottom: 1rem; }
.contact-info > p { color: var(--text-muted); line-height: 1.8; margin-bottom: 2.5rem; font-weight: 300; }
.contact-detail { display: flex; align-items: flex-start; gap: 1.2rem; margin-bottom: 1.5rem; }
.contact-icon {
  width: 50px; height: 50px; background: var(--maroon);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition);
}
.contact-detail:hover .contact-icon { background: var(--gold); }
.contact-icon svg {
  width: 20px; height: 20px; stroke: var(--gold);
  stroke-width: 1.5; fill: none; transition: var(--transition);
}
.contact-detail:hover .contact-icon svg { stroke: var(--maroon); }
.contact-detail strong {
  display: block; color: var(--maroon); font-size: 0.85rem;
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.2rem;
}
.contact-detail span { color: var(--text-muted); font-size: 0.95rem; }
.contact-social { display: flex; gap: 1rem; margin-top: 2rem; }
.social-link {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); }
.social-link svg { width: 18px; height: 18px; fill: var(--gold); transition: var(--transition); }
.social-link:hover svg { fill: var(--maroon); }

.contact-form {
  background: var(--white); padding: 3rem;
  border: 1px solid rgba(201,168,76,0.15);
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--maroon); margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 0.9rem 1rem;
  border: 1px solid rgba(201,168,76,0.25);
  background: var(--cream); font-family: 'Poppins', sans-serif;
  font-size: 0.92rem; color: var(--text-dark);
  outline: none; transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }
.form-submit { margin-top: 0.5rem; }
.form-submit .btn-gold { width: 100%; text-align: center; border: none; }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 60px; height: 60px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999; transition: var(--transition);
  animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* --- FOOTER --- */
.footer { background: var(--charcoal); padding: 4rem 2rem 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .nav-logo { font-size: 1.5rem; display: block; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,253,208,0.5); font-size: 0.9rem; line-height: 1.8; font-weight: 300; }
.footer h4 { color: var(--gold); font-size: 1rem; margin-bottom: 1.2rem; letter-spacing: 1px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links li a { color: rgba(255,253,208,0.5); font-size: 0.88rem; transition: var(--transition); }
.footer-links li a:hover { color: var(--gold); padding-left: 5px; }
.footer-newsletter p { color: rgba(255,253,208,0.5); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1rem; }
.newsletter-form { display: flex; }
.newsletter-form input {
  flex: 1; padding: 0.8rem 1rem;
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(255,255,255,0.05); color: var(--ivory);
  font-family: 'Poppins', sans-serif; font-size: 0.85rem; outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,253,208,0.3); }
.newsletter-form button {
  padding: 0.8rem 1.5rem; background: var(--gold); color: var(--maroon);
  border: none; font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: 0.8rem; letter-spacing: 1px; cursor: pointer; transition: var(--transition);
}
.newsletter-form button:hover { background: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding-top: 2rem; display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { color: rgba(255,253,208,0.4); font-size: 0.8rem; }
.footer-bottom p span { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,253,208,0.4); font-size: 0.8rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.23,1,0.32,1), transform 0.8s cubic-bezier(0.23,1,0.32,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.23,1,0.32,1), transform 0.8s cubic-bezier(0.23,1,0.32,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.23,1,0.32,1), transform 0.8s cubic-bezier(0.23,1,0.32,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-stagger > * {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.23,1,0.32,1), transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 250px; }
  .g-feature { grid-column: span 2; grid-row: span 1; }
  .g-tall { grid-row: span 1; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 2rem 1rem; }
  .about-wrapper { gap: 3rem; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar { padding: 1rem 1.5rem; }
  .navbar.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-overlay {
    display: block; position: fixed; inset: 0;
    background: rgba(128,0,32,0.98); z-index: 999;
    opacity: 0; visibility: hidden; transition: var(--transition);
  }
  .nav-overlay.active { opacity: 1; visibility: visible; }
  .nav-overlay-links {
    list-style: none; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    text-align: center;
  }
  .nav-overlay-links li { margin-bottom: 2rem; }
  .nav-overlay-links li a {
    color: var(--ivory); font-family: 'Playfair Display', serif;
    font-size: 1.8rem; transition: var(--transition);
  }
  .nav-overlay-links li a:hover { color: var(--gold); }

  section { padding: 4rem 1.5rem; }
  .hero { min-height: 600px; }
  .hero-label::before, .hero-label::after { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .g-wide, .g-feature { grid-column: span 2; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .about-wrapper { grid-template-columns: 1fr; }
  .about-images { height: 400px; }
  .about-frame, .about-img-accent { display: none; }
  .about-img-main { width: 100%; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .g-wide, .g-feature { grid-column: span 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2.2rem; }
  .process-steps { grid-template-columns: 1fr; }
  .about-highlights { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .whatsapp-float { bottom: 1.2rem; right: 1.2rem; width: 52px; height: 52px; }
}
