
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --gold: #D4AF37;
  --gold-light: #e8c84a;
  --burgundy: #800020;
  --dark: #1a1a1a;
  --cream: #FAF7F2;
  --emerald: #046307;
  --white: #ffffff;
  --charcoal: #333333;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--charcoal); background: var(--white); overflow-x: hidden; line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 500; line-height: 1.2; }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(.23,1,.32,1), transform 0.8s cubic-bezier(.23,1,.32,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }
.reveal-delay-9 { transition-delay: 0.9s; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4%; transition: all 0.4s ease;
}
nav.scrolled { background: rgba(26,26,26,0.95); backdrop-filter: blur(10px); padding: 0.8rem 4%; }
.nav-logo img { height: 70px; transition: height 0.3s; filter: brightness(1.3) drop-shadow(0 0 8px rgba(212,175,55,0.3)); }
nav.scrolled .nav-logo img { height: 55px; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--white); font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 300; position: relative; transition: color 0.3s; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--gold); color: var(--dark); padding: 0.6rem 1.5rem; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; font-family: var(--font-body); font-weight: 700; border: none; cursor: pointer; transition: all 0.3s; }
.nav-cta:hover { background: var(--white); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 28px; height: 2px; background: var(--white); transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu { position: fixed; inset: 0; background: #111111; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; z-index: 2000; opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu a { color: var(--white); font-family: var(--font-heading); font-size: 1.8rem; letter-spacing: 2px; }

/* ── HERO ── */
#hero {
  position: relative; height: 100vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero.webp') center/cover no-repeat;
  animation: kenBurns 20s ease-in-out infinite alternate;
}
@keyframes kenBurns { 0% { transform: scale(1); } 100% { transform: scale(1.08); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.55) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); max-width: 900px; padding: 0 2rem; }
.hero-badge { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 1s 0.3s forwards; }
.hero-title { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 500; margin-bottom: 1.2rem; }
.hero-title .word { display: inline-block; opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s forwards; }
.hero-title .word:nth-child(1) { animation-delay: 0.5s; }
.hero-title .word:nth-child(2) { animation-delay: 0.7s; }
.hero-title .word:nth-child(3) { animation-delay: 0.9s; }
.hero-title .word:nth-child(4) { animation-delay: 1.1s; }
.hero-title .word:nth-child(5) { animation-delay: 1.3s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.hero-sub { font-family: var(--font-body); font-size: 1.1rem; font-weight: 300; letter-spacing: 1px; opacity: 0; animation: fadeUp 1s 1.4s forwards; margin-bottom: 2.5rem; }
.hero-cta { display: inline-block; padding: 1rem 2.5rem; border: 1px solid var(--gold); color: var(--gold); font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; font-family: var(--font-body); transition: all 0.4s; opacity: 0; animation: fadeUp 1s 1.7s forwards; }
.hero-cta:hover { background: var(--gold); color: var(--dark); }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--white); opacity: 0; animation: fadeUp 1s 2s forwards; }
.scroll-indicator span { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,0.3); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: var(--gold); animation: scrollDown 1.5s ease-in-out infinite; }
@keyframes scrollDown { 0% { top: -100%; } 50% { top: 0; } 100% { top: 100%; } }

/* ── EDITORIAL INTRO ── */
#about {
  padding: 8rem 4%;
  background: var(--cream);
}
.about-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-img { position: relative; overflow: hidden; }
.about-img img { width: 100%; height: 600px; object-fit: cover; transition: transform 0.6s; }
.about-img:hover img { transform: scale(1.03); }
.about-img::after { content: ''; position: absolute; bottom: -20px; right: -20px; width: 200px; height: 200px; border: 1px solid var(--gold); z-index: -1; }
.about-text .section-label { font-size: 0.75rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.about-text h2 { font-size: 2.5rem; color: var(--dark); margin-bottom: 1.5rem; }
.about-text p { font-size: 1rem; color: #666; line-height: 1.9; margin-bottom: 1.5rem; }
.stats { display: flex; gap: 3rem; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(0,0,0,0.1); }
.stat { text-align: center; }
.stat-number { font-family: var(--font-heading); font-size: 2.5rem; color: var(--gold); }
.stat-label { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: #999; margin-top: 0.3rem; }

/* ── PORTFOLIO ── */
#portfolio { padding: 6rem 4%; background: var(--white); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-label { font-size: 0.75rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.section-header h2 { font-size: 2.5rem; color: var(--dark); }
.section-header p { max-width: 600px; margin: 1rem auto 0; color: #888; font-size: 1rem; }
.portfolio-filters { display: flex; justify-content: center; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }
.filter-btn { padding: 0.5rem 1.5rem; border: 1px solid #ddd; background: transparent; font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }
.filter-btn.active, .filter-btn:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.portfolio-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem;
}
.portfolio-item { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 1/1; }
.portfolio-item.tall { grid-row: span 2; aspect-ratio: auto; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(.23,1,.32,1); }
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem;
  opacity: 0; transition: opacity 0.4s;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h3 { color: var(--white); font-size: 1.1rem; font-weight: 500; }
.portfolio-overlay span { color: var(--gold); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; margin-top: 0.3rem; }
.portfolio-cta { text-align: center; margin-top: 3rem; }
.btn-outline { display: inline-block; padding: 1rem 2.5rem; border: 1px solid var(--dark); color: var(--dark); font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; transition: all 0.3s; }
.btn-outline:hover { background: var(--dark); color: var(--white); }

/* ── LIGHTBOX ── */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 2rem; right: 2rem; color: var(--white); font-size: 2rem; cursor: pointer; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; transition: color 0.3s; }
.lightbox-close:hover { color: var(--gold); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); color: var(--white); font-size: 2.5rem; cursor: pointer; padding: 1rem; transition: color 0.3s; user-select: none; }
.lightbox-nav:hover { color: var(--gold); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-caption { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: var(--white); text-align: center; font-family: var(--font-heading); font-size: 1.2rem; }

/* ── WEDDING SERVICES ── */
#weddings { padding: 8rem 4%; background: var(--cream); }
.wedding-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.wedding-card { position: relative; padding: 2.5rem 2rem; text-align: center; background: var(--white); border: 1px solid rgba(0,0,0,0.06); transition: all 0.4s; overflow: hidden; }
.wedding-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.wedding-card .card-icon { font-size: 2rem; margin-bottom: 1rem; }
.wedding-card h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: 0.8rem; }
.wedding-card p { font-size: 0.9rem; color: #888; line-height: 1.7; }
.wedding-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform 0.4s; }
.wedding-card:hover::before { transform: scaleX(1); }
.section-cta { text-align: center; margin-top: 3rem; }
.btn-gold { display: inline-block; padding: 1rem 2.5rem; background: var(--gold); color: var(--dark); font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; transition: all 0.3s; border: 2px solid var(--gold); }
.btn-gold:hover { background: transparent; color: var(--gold); }

/* ── CORPORATE ── */
#corporate { padding: 8rem 4%; background: var(--dark); color: var(--white); }
#corporate .section-header h2 { color: var(--white); }
#corporate .section-header p { color: #aaa; }
.corporate-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.corporate-card { padding: 2rem; border: 1px solid rgba(255,255,255,0.1); text-align: center; transition: all 0.4s; }
.corporate-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.corporate-card .card-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 1rem; }
.corporate-card h3 { font-size: 1rem; font-weight: 500; margin-bottom: 0.5rem; }
.corporate-card p { font-size: 0.85rem; color: #999; }
#corporate .btn-gold { border-color: var(--gold); }

/* ── ESTIMATOR SECTION ── */
#estimate { padding: 6rem 4%; background: var(--dark); }
#estimate .section-header h2 { color: var(--white); }
#estimate .section-header p { color: #aaa; }
.est-card { background: #222; border: 1px solid #333; border-radius: 16px; max-width: 560px; width: 100%; padding: 2.5rem; margin: 0 auto; }
.est-step { margin-bottom: 1.8rem; }
.est-step-label { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; font-weight: 700; }
.est-step h3 { font-size: 1rem; color: var(--cream); margin-bottom: 0.8rem; font-weight: 400; }
.est-options { display: grid; gap: 0.6rem; }
.est-options.est-two-col { grid-template-columns: 1fr 1fr; }
.est-btn { background: #1a1a1a; border: 2px solid #333; border-radius: 10px; padding: 0.9rem 1rem; cursor: pointer; transition: all 0.2s; text-align: center; font-family: var(--font-body); color: var(--cream); font-size: 0.9rem; }
.est-btn:hover { border-color: var(--gold); background: #2a2515; }
.est-btn.est-selected { border-color: var(--gold); background: #2a2515; box-shadow: 0 0 20px rgba(212,175,55,0.1); }
.est-btn .est-emoji { font-size: 1.4rem; display: block; margin-bottom: 0.3rem; }
.est-btn .est-label { font-weight: 600; }
.est-btn .est-sub { font-size: 0.75rem; color: #888; margin-top: 0.2rem; }
.est-slider-wrap { padding: 0.5rem 0; }
.est-slider-wrap input[type=range] { width: 100%; -webkit-appearance: none; appearance: none; height: 6px; background: linear-gradient(90deg, var(--gold) 0%, #333 0%); border-radius: 3px; outline: none; cursor: pointer; }
.est-slider-wrap input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--gold); cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.est-slider-wrap input[type=range]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--gold); cursor: pointer; border: none; }
.est-guest-display { text-align: center; margin-top: 0.8rem; }
.est-guest-num { font-family: var(--font-heading); font-size: 2.2rem; color: var(--gold); font-weight: 700; }
.est-guest-label { color: #888; font-size: 0.8rem; }
.est-tier-opt { padding: 1rem; text-align: left; }
.est-tier-opt .est-label { font-weight: 700; }
.est-tier-opt .est-desc { font-size: 0.75rem; color: #888; margin-top: 0.3rem; line-height: 1.4; }
.est-tier-opt .est-price-hint { font-size: 0.8rem; color: var(--gold); margin-top: 0.4rem; font-weight: 600; }
.est-t-essential { border-color: #555; }
.est-t-essential.est-selected { border-color: #7dcea0; background: #1a2a1a; }
.est-t-premium { border-color: #555; }
.est-t-premium.est-selected { border-color: var(--gold); background: #2a2515; }
.est-t-luxury { border-color: #555; }
.est-t-luxury.est-selected { border-color: #e8a0b0; background: #2a1a1f; }
.est-result-box { display: none; background: linear-gradient(135deg, #1a2a1a, #2a2515); border: 2px solid var(--gold); border-radius: 16px; padding: 2rem; text-align: center; margin-top: 0.5rem; animation: estFadeIn 0.5s ease; }
@keyframes estFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.est-result-box .est-range-label { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.est-result-box .est-range { font-family: var(--font-heading); font-size: 2.5rem; color: var(--white); font-weight: 700; margin-bottom: 0.3rem; }
.est-result-box .est-range-note { color: #999; font-size: 0.85rem; margin-bottom: 1.5rem; line-height: 1.5; }
.est-result-box .est-cta-btn { display: inline-block; background: var(--gold); color: var(--dark); padding: 0.8rem 2rem; border-radius: 8px; font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; transition: all 0.3s; }
.est-result-box .est-cta-btn:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(212,175,55,0.3); }
.est-result-box .est-or-text { color: #666; font-size: 0.8rem; margin: 0.8rem 0; }
.est-result-box .est-alt-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.est-result-box .est-alt-link { color: var(--gold); font-size: 0.8rem; text-decoration: none; border-bottom: 1px solid rgba(212,175,55,0.3); }
.est-result-box .est-alt-link:hover { border-bottom-color: var(--gold); }
.est-disclaimer { color: #666; font-size: 0.7rem; text-align: center; margin-top: 1rem; line-height: 1.5; }

/* ── EXPERIENCE ── */
#experience { padding: 8rem 4%; background: var(--white); }
.experience-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.experience-grid::before { content: ''; position: absolute; top: 40px; left: 12.5%; right: 12.5%; height: 1px; background: var(--gold); opacity: 0.3; }
.step { text-align: center; position: relative; }
.step-number { width: 80px; height: 80px; border-radius: 50%; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-family: var(--font-heading); font-size: 1.5rem; color: var(--gold); background: var(--white); position: relative; z-index: 1; transition: all 0.4s; }
.step:hover .step-number { background: var(--gold); color: var(--white); }
.step h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 0.8rem; }
.step p { font-size: 0.85rem; color: #888; line-height: 1.7; }

/* ── TESTIMONIALS ── */
#testimonials { padding: 8rem 4%; background: var(--dark); color: var(--white); overflow: hidden; }
.testimonial-slider { max-width: 800px; width: 100%; margin: 0 auto; position: relative; min-height: 250px; overflow: hidden; }
.testimonial { position: absolute; inset: 0; width: 100%; max-width: 100%; text-align: center; opacity: 0; transition: opacity 0.6s, transform 0.6s; transform: translateX(0); box-sizing: border-box; }
.testimonial.active { opacity: 1; transform: translateX(0); }
.testimonial-stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 1.5rem; letter-spacing: 4px; }
.testimonial blockquote { font-family: var(--font-heading); font-size: 1.5rem; font-style: italic; line-height: 1.8; margin-bottom: 1.5rem; color: #eee; }
.testimonial cite { font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-style: normal; }
.testimonial-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.dot { width: 10px; height: 10px; border-radius: 50%; border: 1px solid var(--gold); background: transparent; cursor: pointer; transition: background 0.3s; }
.dot.active { background: var(--gold); }

/* ── SERVICE AREAS ── */
#areas { padding: 8rem 4%; background: var(--cream); }
.areas-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.area-card { text-align: center; padding: 2rem 1rem; background: var(--white); border: 1px solid rgba(0,0,0,0.06); transition: all 0.3s; }
.area-card:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(0,0,0,0.06); border-color: var(--gold); }
.area-card h3 { font-size: 1rem; color: var(--dark); margin-bottom: 0.3rem; }
.area-card span { font-size: 0.75rem; color: #999; letter-spacing: 1px; }
.areas-seo { max-width: 800px; margin: 0 auto; text-align: center; color: #777; font-size: 0.95rem; line-height: 1.9; }

/* ── INSTAGRAM ── */
#instagram { padding: 6rem 4%; background: var(--white); }
.insta-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.5rem; }
.insta-item { aspect-ratio: 1; overflow: hidden; position: relative; cursor: pointer; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.insta-item:hover img { transform: scale(1.1); }
.insta-item::after { content: '♥'; position: absolute; inset: 0; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; opacity: 0; transition: opacity 0.3s; }
.insta-item:hover::after { opacity: 1; }

/* ── CONTACT ── */
#contact { padding: 8rem 4%; background: var(--cream); }
.contact-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-form h3 { font-size: 1.8rem; color: var(--dark); margin-bottom: 0.5rem; }
.contact-form > p { color: #888; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: #999; margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.9rem 1rem; border: 1px solid #ddd; background: var(--white);
  font-family: var(--font-body); font-size: 0.95rem; transition: border 0.3s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit { width: 100%; padding: 1rem; background: var(--gold); color: var(--dark); border: none; font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; cursor: pointer; font-family: var(--font-body); transition: all 0.3s; margin-top: 0.5rem; }
.btn-submit:hover { background: var(--dark); color: var(--gold); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.contact-info h3 { font-size: 1.8rem; color: var(--dark); margin-bottom: 2rem; }
.info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.info-item .icon { width: 40px; height: 40px; background: var(--gold); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.info-item h4 { font-size: 0.9rem; color: var(--dark); margin-bottom: 0.2rem; }
.info-item p { font-size: 0.9rem; color: #888; }
.info-item a { color: var(--gold); }
.social-links { display: flex; gap: 1rem; margin-top: 2rem; }
.social-link { width: 45px; height: 45px; border: 1px solid var(--dark); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: all 0.3s; }
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.map-embed { margin-top: 2rem; width: 100%; height: 200px; border: none; filter: grayscale(0.5); }
.form-success { display: none; text-align: center; padding: 3rem; }
.form-success h3 { color: var(--gold); margin-bottom: 1rem; }
.form-error { display: none; text-align: center; padding: 1rem; color: #e74c3c; font-size: 0.9rem; margin-top: 0.5rem; }

/* ── FOOTER ── */
footer { background: var(--dark); color: #aaa; padding: 4rem 4% 2rem; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; margin-top: 1rem; }
.footer-col h4 { color: var(--white); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col a { display: block; color: #888; font-size: 0.9rem; margin-bottom: 0.5rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; }
.footer-cities { color: #666; font-size: 0.75rem; }

/* ── FLOATING BUTTONS ── */
.floating-btns { position: fixed; bottom: 2rem; right: 2rem; z-index: 900; display: flex; flex-direction: column; gap: 0.8rem; }
.float-btn { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.2); border: none; }
.float-btn:hover { transform: scale(1.1); }
.btn-whatsapp { background: #25D366; color: #fff; font-size: 1.4rem; }
.btn-phone { background: var(--gold); color: var(--white); }
.btn-insta { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: var(--white); }
.btn-top { background: var(--dark); color: var(--white); opacity: 0; pointer-events: none; transition: all 0.3s; }
.btn-top.show { opacity: 1; pointer-events: all; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .experience-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img img { height: 400px; }
  .about-img::after { display: none; }
  .stats { gap: 1.5rem; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.tall { grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .section-header h2 { font-size: 2rem; }
  .testimonial blockquote { font-size: 1.2rem; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .est-options.est-two-col { grid-template-columns: 1fr; }
  .est-result-box .est-range { font-size: 2rem; }
  .est-card { padding: 1.5rem; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .experience-grid { grid-template-columns: 1fr; }
  .wedding-grid { grid-template-columns: 1fr; }
  .corporate-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (prefers-reduced-motion: reduce){*,*::before,*::after{animation:none!important;transition:none!important;scroll-behavior:auto!important;}}
@media (max-width:768px){.site-links a{padding:0.45rem 0!important;margin:0!important;}}
#hero .hero-content{padding-top:7.5rem;padding-bottom:4rem;}
.scroll-indicator{opacity:0.55;}

/* ══════════════════════════════════════════════
   Shared inner-page + a11y + mobile polish (v2)
   ══════════════════════════════════════════════ */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 3000;
  background: var(--gold); color: #111; padding: 0.7rem 1.1rem;
  font-weight: 700; min-height: 44px;
}
.skip-link:focus { left: 8px; outline: 3px solid #fff; }
html { overflow-x: hidden; }
img { height: auto; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

body.page-inner {
  color: var(--cream);
  background: var(--dark);
}
body.page-inner .section h2,
body.page-inner .section-dark h2 { color: #fff; }
body.page-inner .section p,
body.page-inner .section-dark p { color: #bbb; }

nav, .site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 2001;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 4%; gap: 1rem;
  background: rgba(26,26,26,0.95); backdrop-filter: blur(10px);
}
nav.transparent { background: transparent; }
nav.scrolled { background: rgba(26,26,26,0.95); padding: 0.7rem 4%; }
.nav-logo img { height: 55px; width: auto; filter: brightness(1.3) drop-shadow(0 0 8px rgba(212,175,55,0.3)); }
.nav-links { display: flex; gap: 1.05rem; list-style: none; align-items: center; margin: 0; padding: 0; flex-wrap: nowrap; }
.nav-links a { color: #fff; font-size: 0.72rem; letter-spacing: 1.1px; text-transform: uppercase; font-weight: 300; min-height: 44px; display: inline-flex; align-items: center; white-space: nowrap; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--dark) !important; padding: 0.7rem 1.4rem;
  font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
  min-height: 44px; display: inline-flex; align-items: center; white-space: nowrap;
}
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  cursor: pointer; z-index: 2002; background: none; border: none;
  width: 44px; height: 44px; padding: 8px;
}
.hamburger span { width: 26px; height: 2px; background: #fff; display: block; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  position: fixed; inset: 0; background: #111111;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.1rem; z-index: 2000; opacity: 0; pointer-events: none; transition: opacity 0.35s;
  padding: 5.5rem 1.5rem 2rem; overflow-y: auto;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu a {
  color: #fff; font-family: var(--font-heading); font-size: 1.5rem; letter-spacing: 1px;
  min-height: 44px; display: flex; align-items: center;
}
.mobile-menu a:hover { color: var(--gold); }

/* Inner heroes */
.hero, section.hero {
  padding: 9rem 5% 5rem; text-align: center;
  min-height: 52vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  background-color: var(--dark);
  background-image: linear-gradient(180deg, rgba(0,0,0,0.62), rgba(26,26,26,0.92)), url('../images/hero.webp');
  background-size: cover;
  background-position: center;
}
.hero-badge { font-size: 0.8rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.hero h1 { font-size: clamp(1.85rem, 5vw, 3.4rem); color: #fff; margin-bottom: 1rem; }
.hero p { font-size: 1.05rem; color: #ccc; max-width: 720px; margin: 0 auto 1.6rem; font-weight: 300; }

.section { padding: 4.5rem 5%; max-width: 1100px; margin: 0 auto; }
.section-dark { background: #111; padding: 4.5rem 5%; }
.section-dark .inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 0.75rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)); gap: 1.5rem; margin-top: 2rem; }
.service-card { padding: 2rem; border: 1px solid rgba(212,175,55,0.2); text-align: center; transition: all 0.4s; background: rgba(255,255,255,0.02); }
.service-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.service-card h3 { font-size: 1.1rem; color: #fff; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; color: #999; }
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px;
  padding: 0.9rem 2rem; background: var(--gold); color: var(--dark);
  font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
  border: 2px solid var(--gold); transition: all 0.3s;
}
.btn-gold:hover { background: transparent; color: var(--gold); }
.cta-section { text-align: center; padding: 4.5rem 5%; background: linear-gradient(135deg, #1a1a1a, #2a2515); }
.cta-section h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); color: #fff; margin-bottom: 1rem; }
.cta-section p { color: #bbb; margin-bottom: 1.6rem; }
.cta-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.gallery-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-top: 2rem; }
.gallery-strip img { width: 100%; height: 220px; object-fit: cover; }
.cities-list { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.5rem; justify-content: center; }
.cities-list a { padding: 0.6rem 1.2rem; min-height: 44px; display: inline-flex; align-items: center; border: 1px solid rgba(212,175,55,0.3); color: var(--gold); font-size: 0.85rem; }
.cities-list a:hover { background: var(--gold); color: var(--dark); }
.faq-item { margin-bottom: 1.6rem; }
.faq-item h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 0.4rem; }
.faq-item p { color: #555; }
body.page-inner .faq-item h3, body.page-tool .faq-item h3, .section-dark .faq-item h3 { color: #fff; }
body.page-inner .faq-item p, body.page-tool .faq-item p, .section-dark .faq-item p { color: #bbb; }
body.page-inner .testimonial { border-left: 3px solid var(--gold); padding: 1.4rem 1.6rem; margin-bottom: 1.4rem; background: rgba(255,255,255,0.03); position: static; opacity: 1; transform: none; }
body.page-inner .testimonial p { color: #ccc; }
.internal-links a { color: var(--gold); margin-right: 1.2rem; }

.site-links { background: #0d0d0d; border-top: 1px solid rgba(212,175,55,0.25); padding: 2.4rem 1.2rem 2rem; }
.site-links .site-links-grid, .site-links > div {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.4rem; text-align: left;
}
.site-links p { color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.7rem; }
.site-links a { display: block; color: #cfcfcf; font-size: 0.85rem; min-height: 36px; padding: 0.2rem 0; text-decoration: none; }
.site-links a:hover { color: var(--gold); }

footer { text-align: center; padding: 2rem 5% 5.5rem; background: #111; color: #888; font-size: 0.85rem; }
footer a { color: var(--gold); }
body.page-home footer { text-align: left; padding: 4rem 4% 2rem; }

/* Sticky mobile call/book bar */
.sticky-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 980;
  background: rgba(17,17,17,0.96); border-top: 1px solid rgba(212,175,55,0.35);
  padding: 0.45rem 0.7rem calc(0.45rem + env(safe-area-inset-bottom));
  gap: 0.5rem;
}
.sticky-cta a {
  flex: 1; min-height: 44px; display: flex; align-items: center; justify-content: center;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 0.78rem;
}
.sticky-cta .cta-call { border: 1px solid var(--gold); color: var(--gold); }
.sticky-cta .cta-book { background: var(--gold); color: var(--dark); }

/* Blog / article */
.article-hero { background: linear-gradient(135deg, #800020 0%, #1a1a1a 100%); padding: 8rem 1.5rem 3.5rem; text-align: center; }
.article-hero h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); color: var(--gold); max-width: 800px; margin: 0 auto 1rem; }
.content { max-width: 800px; margin: 0 auto; padding: 3rem 1.25rem; }
.content h2 { color: var(--gold); font-size: 1.6rem; margin: 2.2rem 0 1rem; border-left: 4px solid #800020; padding-left: 1rem; }
.content h3 { color: var(--gold); font-size: 1.2rem; margin: 1.8rem 0 0.7rem; }
.content p { margin-bottom: 1.1rem; color: #e8e0d4; }
.content ul, .content ol { margin: 1rem 0 1.5rem 1.4rem; color: #e8e0d4; }
.highlight-box { background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.3); border-radius: 10px; padding: 1.4rem; margin: 2rem 0; }
.cta-box { background: linear-gradient(135deg, #800020, #5a0015); border: 2px solid #D4AF37; border-radius: 12px; padding: 2rem; text-align: center; margin: 2.5rem 0; }
.cta-btn { display: inline-flex; min-height: 44px; align-items: center; background: #D4AF37; color: #1a1a1a; padding: 0.8rem 2rem; font-weight: 700; }

@media (max-width: 768px) {
  .nav-links { display: none !important; }
  nav .nav-cta { display: none; }
  .hamburger { display: flex; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 0; }
  body.page-inner, body.page-home { padding-bottom: 3.6rem; }
  body.page-tool { padding-bottom: 0; }
  .hero, section.hero { padding-top: 7.5rem; min-height: 46vh; }
  h1, .hero h1 { overflow-wrap: anywhere; }
}
@media (min-width: 1440px) {
  .section, .section-dark .inner, .content { max-width: 1180px; }
  .about-grid, .contact-grid { max-width: 1320px; }
}
@media (max-width: 375px) {
  nav { padding: 0.7rem 3%; }
  .hero h1 { font-size: 1.7rem; }
}

/* ══════════════════════════════════════════════
   Visual bugfixes (hero path, overlay, ticker, FABs)
   ══════════════════════════════════════════════ */
.mobile-menu,
.mobile-menu.active {
  background: #111111 !important;
  background-color: #111111 !important;
  opacity: 0;
}
.mobile-menu.active {
  opacity: 1 !important;
  pointer-events: auto;
  z-index: 2000;
}
.mobile-menu a { position: relative; z-index: 1; font-size: clamp(1.15rem, 4.2vw, 1.45rem); }
body.menu-open { overflow: hidden; }
body.menu-open .sticky-cta,
body.menu-open .floating-btns { opacity: 0 !important; pointer-events: none !important; visibility: hidden; }

.gold-ticker {
  margin: 1.4rem auto 0;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 1.2px;
  line-height: 1.9;
  max-width: min(640px, 100%);
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.gold-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 2.4rem;
  width: max-content;
  will-change: transform;
}
.gold-ticker-track span { white-space: nowrap; padding-right: 2.4rem; flex-shrink: 0; }
.gold-ticker-track span[aria-hidden="true"] { display: none; }
.gold-ticker { text-align: center; mask-image: none; -webkit-mask-image: none; }
@media (max-width: 720px) {
  .gold-ticker {
    font-size: 0.68rem;
    letter-spacing: 0.6px;
    width: 100%;
    max-width: 100%;
    text-align: left;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }
  .gold-ticker-track span[aria-hidden="true"] { display: inline; }
  .gold-ticker-track { animation: gold-marquee 16s linear infinite; gap: 0; }
}
@media (max-width: 375px) {
  .gold-ticker { font-size: 0.64rem; letter-spacing: 0.4px; }
}
@keyframes gold-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .gold-ticker { white-space: normal; mask-image: none; -webkit-mask-image: none; text-align: center; padding: 0 0.8rem; }
  .gold-ticker-track { animation: none !important; display: block; width: auto; white-space: normal; }
  .gold-ticker-track span[aria-hidden="true"] { display: none; }
}

#testimonials, .testimonial-slider { overflow-x: hidden; max-width: 100%; }
.testimonial-slider .testimonial { left: 0; right: 0; width: 100%; max-width: 100%; transform: none; }
@media (max-width: 375px) {
  .testimonial-slider, .testimonial, .testimonial-card, blockquote {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
  }
  .testimonial blockquote { font-size: 1.05rem; overflow-wrap: anywhere; }
  .testimonials-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  .floating-btns {
    bottom: calc(4.8rem + env(safe-area-inset-bottom, 0px));
    right: 0.7rem;
    gap: 0.55rem;
  }
  .float-btn { width: 44px; height: 44px; }
  /* Keep bubbles off the hero fold so BEGIN YOUR STORY stays tappable */
  body.page-home:not(.past-hero) .floating-btns {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
}

@media (min-width: 769px) and (max-width: 1180px) {
  .nav-links { gap: 0.7rem; }
  .nav-links a { font-size: 0.68rem; letter-spacing: 0.8px; }
  .nav-cta { padding: 0.6rem 1rem; font-size: 0.72rem; }
}

/* Link-in-bio (/links): no marketing chrome, no inner-page header offset */
body.page-links {
  padding: 0;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--dark);
  color: var(--cream);
}
body.page-links nav,
body.page-links .hamburger,
body.page-links .mobile-menu,
body.page-links .sticky-cta,
body.page-links .site-links,
body.page-links .section,
body.page-links #mobileCTA,
body.page-links #scrollTopBtn {
  display: none !important;
  pointer-events: none !important;
  visibility: hidden !important;
}
@media (max-width: 768px) {
  body.page-links {
    padding-bottom: 0;
  }
  body.page-links .sticky-cta { display: none !important; }
  body.page-links .hamburger { display: none !important; }
}
