/* ===================================================================
   Anand Band Party — Global Stylesheet
   Elegant Indian wedding theme: maroon, royal gold & cream
=================================================================== */

:root {
  --maroon: #7b1e2b;
  --maroon-dark: #5a121d;
  --gold: #c9a14a;
  --gold-light: #e7c976;
  --cream: #fdf8ef;
  --cream-dark: #f3e9d6;
  --ink: #2b2118;
  --muted: #6e6256;
  --white: #ffffff;
  --shadow: 0 14px 40px rgba(43, 33, 24, 0.12);
  --shadow-sm: 0 6px 18px rgba(43, 33, 24, 0.10);
  --radius: 16px;
  --maxw: 1180px;
  --head: "Playfair Display", Georgia, serif;
  --body: "Poppins", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--head); font-weight: 700; line-height: 1.2; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: 92%; max-width: var(--maxw); margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--maroon-dark);
  box-shadow: 0 10px 24px rgba(201, 161, 74, 0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(201, 161, 74, 0.5); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold-light);
}
.btn-outline:hover { background: var(--gold-light); color: var(--maroon-dark); transform: translateY(-3px); }
.btn-dark { background: var(--maroon); color: #fff; box-shadow: var(--shadow-sm); }
.btn-dark:hover { background: var(--maroon-dark); transform: translateY(-3px); }

/* ---------- Section helpers ---------- */
.section { padding: 90px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 14px;
  position: relative;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  display: inline-block;
  width: 26px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 10px;
}
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--maroon); }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.02rem; }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 18px 0;
}
.header.scrolled {
  background: rgba(253, 248, 239, 0.96);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  padding: 10px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-dark);
  font-family: var(--head);
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 6px 16px rgba(201,161,74,0.45);
}
.logo-text { line-height: 1.1; }
.logo-text strong { font-family: var(--head); font-size: 1.25rem; color: var(--maroon); display: block; }
.logo-text span { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.header.scrolled .logo-text strong { color: var(--maroon); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.header.scrolled .nav-links a { color: var(--ink); }
.header.scrolled .nav-links a:hover, .header.scrolled .nav-links a.active { color: var(--maroon); }
.header.scrolled .nav-links a::after { background: var(--maroon); }

.nav-cta {
  padding: 11px 26px;
  font-size: 0.9rem;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.nav-cta::after {
  content: "";
  position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.nav-cta:hover::after { left: 130%; }
/* keep the gold CTA readable on both transparent and scrolled headers */
.header .nav-links .nav-cta { color: var(--maroon-dark); }
.header.scrolled .nav-links .nav-cta { color: var(--maroon-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { width: 26px; height: 3px; background: var(--white); border-radius: 3px; transition: 0.3s; }
.header.scrolled .hamburger span { background: var(--maroon); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background:
    url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1700&q=85") center/cover no-repeat;
}
/* layered tint: deep on the left (where text sits), lighter on the right so the photo breathes */
.hero-tint {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(105deg, rgba(34,9,14,0.94) 0%, rgba(60,14,22,0.82) 38%, rgba(74,16,26,0.45) 70%, rgba(74,16,26,0.30) 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(circle at 82% 22%, rgba(201,161,74,0.30), transparent 45%),
    linear-gradient(to top, rgba(34,9,14,0.85), transparent 28%);
}
/* subtle vignette frame */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  box-shadow: inset 0 0 220px rgba(20,5,9,0.7);
}
.hero-inner { position: relative; z-index: 2; max-width: 720px; margin: 0; padding: 130px 0 90px; }
.hero .eyebrow {
  color: var(--gold-light); letter-spacing: 4px;
  background: rgba(201,161,74,0.12); border: 1px solid rgba(231,201,118,0.35);
  padding: 8px 18px; border-radius: 50px; backdrop-filter: blur(3px);
}
.hero .eyebrow::before, .hero .eyebrow::after { display: none; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem); margin: 26px 0 22px; line-height: 1.08;
  text-shadow: 0 6px 30px rgba(0,0,0,0.35);
}
.hero h1 .accent {
  color: var(--gold-light);
  background: linear-gradient(120deg, var(--gold-light), #f6e2a9 60%, var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p { font-size: 1.14rem; max-width: 560px; margin-bottom: 38px; color: #f0e3d3; line-height: 1.75; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions .btn-primary span { transition: transform 0.25s ease; }
.hero-actions .btn-primary:hover span { transform: translateX(4px); }

.hero-stats { display: flex; align-items: center; gap: 30px; margin-top: 58px; flex-wrap: wrap; }
.hero-stat .num { font-family: var(--head); font-size: 2.4rem; color: #fff; line-height: 1; }
.hero-stat .num span { color: var(--gold-light); }
.hero-stat .lbl { font-size: 0.78rem; letter-spacing: 1.5px; color: #d9c6b2; text-transform: uppercase; margin-top: 6px; }
.hero-divider { width: 1px; height: 44px; background: linear-gradient(var(--gold-light), transparent); opacity: 0.6; }

/* scroll cue */
.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: #f4e9da; font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: opacity 0.25s ease;
}
.scroll-cue:hover { opacity: 0.7; }
.scroll-cue .mouse { width: 22px; height: 36px; border: 2px solid var(--gold-light); border-radius: 14px; position: relative; }
.scroll-cue .mouse::after { content:""; position:absolute; top:7px; left:50%; transform:translateX(-50%); width:4px; height:7px; background:var(--gold-light); border-radius:3px; animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0%{opacity:1;top:7px} 100%{opacity:0;top:18px} }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 28px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 70px; height: 70px; border-radius: 18px;
  display: grid; place-items: center; font-size: 1.9rem;
  background: linear-gradient(135deg, rgba(201,161,74,0.18), rgba(231,201,118,0.25));
  color: var(--maroon); margin-bottom: 22px;
}
.service-card h3 { font-size: 1.35rem; color: var(--maroon); margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- About / Feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split-media .badge {
  position: absolute; bottom: -24px; right: -10px;
  background: var(--maroon); color: #fff; padding: 18px 26px; border-radius: var(--radius);
  box-shadow: var(--shadow); text-align: center;
}
.split-media .badge strong { font-family: var(--head); font-size: 2rem; display: block; color: var(--gold-light); }
.split-media .badge span { font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; }
.split-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--maroon); margin-bottom: 18px; }
.split-content p { color: var(--muted); margin-bottom: 18px; }
.feature-list { display: grid; gap: 14px; margin: 26px 0 32px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; }
.feature-list .tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-dark); display: grid; place-items: center; font-size: 0.8rem; font-weight: 700;
}

/* ---------- Section tints ---------- */
.tint { background: var(--cream-dark); }
.maroon-band { background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%); color: #fff; }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stats-band .stat .num { font-family: var(--head); font-size: clamp(2rem,4vw,3rem); color: var(--gold-light); }
.stats-band .stat .lbl { letter-spacing: 1px; text-transform: uppercase; font-size: 0.82rem; color: #f0e3cf; margin-top: 6px; }

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  border: 1px solid var(--gold); background: transparent; color: var(--maroon);
  padding: 9px 22px; border-radius: 50px; cursor: pointer; font-weight: 500; font-family: var(--body);
  transition: all 0.25s ease; font-size: 0.9rem;
}
.filter-btn.active, .filter-btn:hover { background: var(--maroon); color: #fff; border-color: var(--maroon); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); height: 260px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px; color: #fff; opacity: 0; transition: opacity 0.35s ease;
  background: linear-gradient(transparent, rgba(40,12,18,0.85));
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay h4 { font-size: 1.15rem; }
.gallery-item .overlay span { font-size: 0.82rem; color: var(--gold-light); letter-spacing: 1px; text-transform: uppercase; }

/* ---------- Steps / process ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 26px; }
.step { text-align: center; padding: 30px 22px; position: relative; }
.step .step-num {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
  display: grid; place-items: center; font-family: var(--head); font-size: 1.6rem; font-weight: 700;
  background: var(--white); color: var(--maroon); box-shadow: var(--shadow-sm); border: 2px solid var(--gold);
}
.step h3 { color: var(--maroon); font-size: 1.2rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 26px; }
.testi-card {
  background: var(--white); border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark); position: relative;
}
.testi-card .quote { font-family: var(--head); font-size: 3rem; color: var(--gold-light); line-height: 0.5; height: 26px; }
.testi-card p { color: var(--muted); font-style: italic; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author .avatar {
  width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--gold-light); display: grid; place-items: center; font-family: var(--head); font-weight: 700; font-size: 1.2rem;
}
.testi-author strong { color: var(--maroon); display: block; }
.testi-author span { font-size: 0.85rem; color: var(--muted); }
.stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 2px; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(1.9rem,4vw,3rem); color: #fff; margin-bottom: 16px; }
.cta-band p { color: #f0e3cf; max-width: 560px; margin: 0 auto 32px; }

/* ---------- Page banner ---------- */
.page-banner {
  position: relative; min-height: 52vh; display: flex; align-items: center; color: #fff; text-align: center;
  background: linear-gradient(rgba(40,12,18,0.78), rgba(90,18,29,0.78)),
    url("https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=1600&q=80") center/cover;
}
.page-banner .inner { width: 100%; padding-top: 70px; }
.page-banner h1 { font-size: clamp(2.2rem,5vw,3.6rem); margin-bottom: 12px; }
.breadcrumb { color: var(--gold-light); font-size: 0.9rem; letter-spacing: 1px; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-info .info-card {
  display: flex; gap: 16px; align-items: flex-start; padding: 22px;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  margin-bottom: 18px; border: 1px solid var(--cream-dark);
}
.contact-info .info-card .ic {
  flex: none; width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; font-size: 1.3rem;
  background: linear-gradient(135deg, rgba(201,161,74,0.2), rgba(231,201,118,0.3)); color: var(--maroon);
}
.contact-info .info-card h4 { color: var(--maroon); margin-bottom: 4px; }
.contact-info .info-card p { color: var(--muted); font-size: 0.94rem; }

.contact-form {
  background: var(--white); padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--cream-dark);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 8px; font-size: 0.9rem; color: var(--ink); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--cream-dark); border-radius: 10px;
  font-family: var(--body); font-size: 0.95rem; background: var(--cream); color: var(--ink); transition: border 0.25s ease, box-shadow 0.25s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,161,74,0.18); background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { margin-top: 14px; font-size: 0.88rem; color: var(--muted); }
.form-alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: 0.92rem; display: none; }
.form-alert.success { background: #e7f5ec; color: #1d6b3a; border: 1px solid #b7e0c4; display: block; }
.form-alert.error { background: #fdeaea; color: #a02020; border: 1px solid #f0bcbc; display: block; }
.map-wrap { margin-top: 60px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 28px; align-items: stretch; }
.price-card {
  background: var(--white); border-radius: var(--radius); padding: 40px 32px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark); text-align: center; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.price-card.featured { border: 2px solid var(--gold); position: relative; }
.price-card.featured::before {
  content: "Most Popular"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--maroon-dark);
  padding: 5px 18px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px;
}
.price-card h3 { color: var(--maroon); font-size: 1.5rem; margin-bottom: 8px; }
.price-card .price { font-family: var(--head); font-size: 2.6rem; color: var(--maroon); margin: 10px 0; }
.price-card .price small { font-size: 0.9rem; color: var(--muted); font-family: var(--body); }
.price-card ul { text-align: left; margin: 22px 0 28px; display: grid; gap: 12px; }
.price-card ul li { display: flex; gap: 10px; align-items: center; color: var(--muted); font-size: 0.94rem; }
.price-card ul li::before { content: "✓"; color: var(--gold); font-weight: 700; }
.price-card .btn { margin-top: auto; justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: #2a1015; color: #d9c9b6; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
.footer h4 { color: #fff; font-size: 1.1rem; margin-bottom: 20px; font-family: var(--head); }
.footer .logo-text strong { color: #fff; }
.footer p { font-size: 0.92rem; line-height: 1.8; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.92rem; transition: color 0.2s ease, padding 0.2s ease; }
.footer-links a:hover { color: var(--gold-light); padding-left: 5px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 0.92rem; align-items: flex-start; }
.footer-contact .ic { color: var(--gold-light); }
.social { display: flex; gap: 12px; margin-top: 20px; }
.social a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,0.08); color: #fff; transition: background 0.25s ease, transform 0.25s ease;
}
.social a:hover { background: var(--gold); color: var(--maroon-dark); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; text-align: center; font-size: 0.85rem; }
.footer-bottom a { color: var(--gold-light); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; font-size: 1.7rem; box-shadow: 0 10px 26px rgba(37,211,102,0.5);
  transition: transform 0.25s ease;
}
.wa-float:hover { transform: scale(1.1); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-media .badge { right: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .hero { background-attachment: scroll; }
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: 75%; max-width: 320px;
    background: var(--maroon-dark); flex-direction: column; justify-content: center; gap: 28px;
    transition: right 0.4s ease; box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: #fff; font-size: 1.1rem; }
  .header.scrolled .nav-links a { color: #fff; }
  .nav-links .nav-cta { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--maroon-dark); }
  .hamburger { display: flex; z-index: 1100; }
  .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); background:#fff; }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background:#fff; }
  .section { padding: 64px 0; }
  .form-row { grid-template-columns: 1fr; }
  .hero-inner { padding: 120px 0 90px; }
  .hero-stats { gap: 20px 24px; margin-top: 44px; }
  .hero-stat .num { font-size: 2rem; }
  .hero-divider { display: none; }
}
@media (max-width: 480px) {
  .stats-band { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 26px; }
}
