/* ============ Design Tokens ============ */
:root {
  --ink: #171311;
  --ink-2: #221c18;
  --ink-3: #2e2620;
  --gold: #c9a76a;
  --gold-deep: #ad8a50;
  --gold-soft: #e6d3ab;
  --blush: #f3e8e2;
  --blush-deep: #e9d3c9;
  --cream: #faf7f1;
  --cream-2: #f4ede3;
  --text: #433a32;
  --muted: #84776b;
  --white: #ffffff;
  --green: #25d366;
  --green-dark: #128c4b;
  --wa: #25d366;
  --shadow-sm: 0 4px 18px rgba(23, 19, 17, 0.08);
  --shadow-md: 0 14px 40px rgba(23, 19, 17, 0.14);
  --shadow-gold: 0 14px 34px rgba(201, 167, 106, 0.35);
  --radius: 18px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-script: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Segoe UI", sans-serif;
  --header-h: 78px;
}

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

.container { width: min(1200px, 92%); margin-inline: auto; }
section { position: relative; }
.section { padding: 110px 0; }
.section-tint { background: var(--cream-2); }

::selection { background: var(--gold); color: var(--ink); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold), var(--gold-deep)); border-radius: 8px; }

/* ============ Typography ============ */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; color: var(--ink); line-height: 1.15; }
h1 em, h2 em, h3 em {
  font-family: var(--font-script);
  font-weight: 500;
  font-style: italic;
  color: var(--gold-deep);
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  text-transform: uppercase; letter-spacing: 4px;
  font-size: 0.74rem; font-weight: 500; color: var(--gold-deep);
  margin-bottom: 16px;
}
.section-kicker::before, .section-kicker::after {
  content: ""; width: 30px; height: 1px; background: var(--gold);
}
.section-title { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 18px; }
.section-sub { color: var(--muted); font-size: 1.05rem; }
.lead { font-size: 1.12rem; color: var(--ink-2); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 30px; border-radius: 999px;
  font-weight: 500; font-size: 0.92rem; letter-spacing: 1.2px; text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn-lg { padding: 17px 38px; font-size: 0.98rem; }
.btn-sm { padding: 10px 20px; font-size: 0.78rem; }
.btn-block { width: 100%; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--ink); box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(201, 167, 106, 0.5); }
.btn-dark { background: var(--ink); color: var(--gold-soft); }
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-ghost { border: 1.5px solid rgba(255, 255, 255, 0.55); color: var(--white); background: rgba(255,255,255,0.06); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: var(--white); color: var(--ink); transform: translateY(-3px); }
.btn-light { background: var(--cream); color: var(--ink); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.link-gold { color: var(--gold-deep); font-weight: 500; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.link-gold:hover { color: var(--gold); }

/* ============ Preloader ============ */
.preloader {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--ink); display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-monogram {
  font-family: var(--font-script); font-size: 4.5rem; color: var(--gold);
  display: block; animation: pulse 1.4s ease infinite;
}
.preloader-bar { display: block; width: 120px; height: 2px; background: rgba(255,255,255,0.12); margin: 14px auto 0; border-radius: 4px; overflow: hidden; }
.preloader-bar i { display: block; height: 100%; width: 40%; background: var(--gold); border-radius: 4px; animation: slide 1.1s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.96); } }
@keyframes slide { 0% { transform: translateX(-120%); } 100% { transform: translateX(320%); } }

/* ============ Topbar ============ */
.topbar { background: var(--ink); color: rgba(255,255,255,0.8); font-size: 0.82rem; position: relative; z-index: 60; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 9px 0; }
.topbar-item { display: flex; align-items: center; gap: 8px; }
.topbar-item svg { color: var(--gold); flex-shrink: 0; }
.topbar-actions { display: flex; gap: 22px; }
.topbar-link { display: inline-flex; align-items: center; gap: 7px; color: inherit; transition: color 0.3s; font-weight: 400; }
.topbar-link:hover { color: var(--gold); }
.topbar-link svg { color: var(--gold); }

/* ============ Header ============ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(201, 167, 106, 0.18);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: var(--header-h); }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--ink); display: grid; place-items: center;
  font-family: var(--font-script); font-size: 1.7rem; font-weight: 600;
  box-shadow: var(--shadow-gold); flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-size: 1.35rem; color: var(--ink); letter-spacing: 0.5px; }
.brand-tag { font-size: 0.62rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold-deep); font-weight: 500; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav-list { display: flex; align-items: center; gap: 26px; }
.nav-link { font-size: 0.84rem; font-weight: 400; letter-spacing: 1.6px; text-transform: uppercase; color: var(--text); position: relative; padding: 6px 0; transition: color 0.3s; }
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--gold); transition: width 0.35s ease;
}
.nav-link:hover, .nav-link.active { color: var(--gold-deep); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta { padding: 12px 24px; }
.nav-extras { display: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; z-index: 120; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); transition: 0.35s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ Hero ============ */
.hero { min-height: 100vh; min-height: 100svh; display: flex; align-items: center; overflow: hidden; color: var(--white); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 28%; animation: slowZoom 22s ease-out forwards; }
@keyframes slowZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 25% 40%, rgba(23,19,17,0.18), transparent 70%),
    linear-gradient(100deg, rgba(20,16,14,0.82) 0%, rgba(20,16,14,0.5) 45%, rgba(20,16,14,0.28) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 120px 0 150px; max-width: 780px; }
.hero-kicker { display: flex; align-items: center; gap: 14px; letter-spacing: 4px; text-transform: uppercase; font-size: 0.78rem; color: var(--gold-soft); margin-bottom: 26px; }
.hero-kicker .line { width: 46px; height: 1px; background: var(--gold); }
.hero-title { color: var(--white); font-size: clamp(2.9rem, 8vw, 5.4rem); line-height: 1.02; margin-bottom: 26px; text-shadow: 0 6px 30px rgba(0,0,0,0.35); }
.hero-title em { color: var(--gold); }
.hero-sub { font-size: clamp(1.02rem, 2vw, 1.22rem); color: rgba(255,255,255,0.86); max-width: 560px; margin-bottom: 40px; font-weight: 300; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 64px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stat {
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px); border-radius: 14px; padding: 16px 26px; min-width: 132px;
}
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--gold); font-weight: 500; }
.hero-stat strong i { font-style: normal; font-size: 1.2rem; margin-left: 2px; }
.hero-stat span { font-size: 0.74rem; letter-spacing: 1.6px; text-transform: uppercase; color: rgba(255,255,255,0.75); }

.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; }
.mouse { width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.6); border-radius: 20px; display: flex; justify-content: center; padding-top: 7px; }
.wheel { width: 3px; height: 8px; background: var(--gold); border-radius: 3px; animation: wheel 1.6s ease infinite; }
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ============ Marquee ============ */
.marquee { background: var(--ink); color: var(--gold-soft); overflow: hidden; padding: 20px 0; }
.marquee-track { display: flex; align-items: center; gap: 40px; white-space: nowrap; width: max-content; animation: marquee 26s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 3px; }
.marquee-track i { color: var(--gold); font-style: normal; font-size: 0.7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ Reveal ============ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.6, 0.2, 1); will-change: opacity, transform; }
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }

/* ============ About ============ */
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 70px; align-items: center; }
.about-media { position: relative; padding-bottom: 70px; }
.about-img-main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.about-img-main img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; transition: transform 1.2s ease; }
.about-media:hover .about-img-main img { transform: scale(1.06); }
.about-img-small { position: absolute; right: -14px; bottom: 0; width: 46%; border-radius: var(--radius); overflow: hidden; border: 6px solid var(--cream); box-shadow: var(--shadow-md); }
.about-img-small img { aspect-ratio: 4 / 3.4; object-fit: cover; }
.about-badge {
  position: absolute; left: 14px; top: 24px;
  background: var(--ink); color: var(--gold-soft); border-radius: 14px;
  padding: 18px 22px; text-align: center; box-shadow: var(--shadow-md);
}
.about-badge strong { font-family: var(--font-display); font-size: 2.1rem; color: var(--gold); display: block; line-height: 1; }
.about-badge span { font-size: 0.68rem; letter-spacing: 1.6px; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.about-content .section-kicker { margin-bottom: 12px; }
.about-content p { margin-bottom: 18px; color: var(--muted); }
.about-content .lead { color: var(--text); }
.about-list { margin: 26px 0 34px; display: grid; gap: 14px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-size: 1rem; }
.about-list li span { display: inline-flex; align-items: center; gap: 12px; }
.about-list li span::before {
  content: "✦"; color: var(--gold); font-size: 1rem;
}
.about-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; border-top: 1px solid rgba(201,167,106,0.35); padding-top: 28px; }
.about-sign { display: flex; flex-direction: column; }
.sign-name { font-family: var(--font-script); font-size: 2.4rem; color: var(--ink); line-height: 1; }
.sign-role { font-size: 0.72rem; letter-spacing: 2.4px; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* ============ Services ============ */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.service-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform 0.45s ease, box-shadow 0.45s ease;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.service-img { position: relative; overflow: hidden; }
.service-img img { aspect-ratio: 4 / 3.2; object-fit: cover; width: 100%; transition: transform 0.8s ease; }
.service-card:hover .service-img img { transform: scale(1.1); }
.service-tag {
  position: absolute; top: 14px; left: 14px; background: var(--ink); color: var(--gold);
  font-size: 0.68rem; letter-spacing: 1.6px; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.service-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { font-size: 1.32rem; margin-bottom: 10px; }
.service-body p { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; flex: 1; }
.service-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.service-price { font-family: var(--font-display); font-size: 1.05rem; color: var(--gold-deep); font-weight: 600; white-space: nowrap; }
.services-cta { margin-top: 54px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.services-cta p { color: var(--muted); font-size: 1.02rem; }

/* ============ Bridal ============ */
.bridal { background: var(--ink); color: rgba(255,255,255,0.82); overflow: hidden; }
.bridal::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 85% 20%, rgba(201,167,106,0.14), transparent 60%);
}
.bridal-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px; align-items: center; position: relative; z-index: 2; }
.bridal-content .section-kicker { color: var(--gold); }
.bridal-content .section-kicker::before, .bridal-content .section-kicker::after { background: var(--gold); }
.bridal-content .section-title { color: var(--white); }
.bridal-content .section-title em { color: var(--gold); }
.bridal-content .lead { color: rgba(255,255,255,0.88); }
.bridal-content p { color: rgba(255,255,255,0.7); }
.bridal-list { margin: 26px 0 38px; display: grid; gap: 13px; }
.bridal-list li { display: flex; align-items: center; gap: 12px; }
.bridal-list li::before { content: "✦"; color: var(--gold); }
.bridal-cta { display: flex; flex-wrap: wrap; gap: 16px; }
.bridal-media { position: relative; }
.bridal-img-main { border-radius: var(--radius); overflow: hidden; }
.bridal-img-main img { aspect-ratio: 4 / 4.7; object-fit: cover; width: 100%; }
.bridal-frame { position: absolute; inset: 26px -26px -26px 26px; border: 1px solid rgba(201,167,106,0.55); border-radius: var(--radius); z-index: -1; }
.bridal-note {
  position: absolute; bottom: -24px; left: -24px; background: var(--gold); color: var(--ink);
  display: flex; align-items: center; gap: 12px; padding: 16px 22px; border-radius: 14px;
  box-shadow: var(--shadow-gold); max-width: 240px;
}
.bridal-note svg { flex-shrink: 0; }
.bridal-note span { font-size: 0.9rem; line-height: 1.3; }
.bridal-note strong { font-family: var(--font-display); font-size: 1.15rem; display: block; }

/* ============ Packages ============ */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.package-card {
  background: var(--white); border-radius: var(--radius); padding: 42px 34px;
  box-shadow: var(--shadow-sm); text-align: center; position: relative;
  display: flex; flex-direction: column; transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.package-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.package-featured { background: var(--ink); color: rgba(255,255,255,0.82); box-shadow: var(--shadow-md); transform: scale(1.04); }
.package-featured:hover { transform: scale(1.04) translateY(-10px); }
.package-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: var(--ink);
  font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  padding: 7px 18px; border-radius: 999px; box-shadow: var(--shadow-gold); white-space: nowrap;
}
.package-name { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-deep); margin-bottom: 10px; }
.package-featured .package-name { color: var(--gold); }
.package-price { font-family: var(--font-display); font-size: 2.6rem; color: var(--ink); margin-bottom: 24px; }
.package-price span { font-size: 1.3rem; color: var(--gold-deep); vertical-align: top; }
.package-featured .package-price { color: var(--white); }
.package-featured .package-price span { color: var(--gold); }
.package-card ul { text-align: left; margin: 0 0 30px; display: grid; gap: 11px; }
.package-card ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; }
.package-card ul li::before { content: "✦"; color: var(--gold); font-size: 0.8rem; margin-top: 3px; flex-shrink: 0; }
.package-card .btn { margin-top: auto; }
.packages-note { text-align: center; margin-top: 46px; color: var(--muted); display: flex; flex-direction: column; gap: 6px; align-items: center; }

/* ============ Gallery ============ */
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 44px; }
.filter-btn {
  padding: 10px 24px; border-radius: 999px; border: 1px solid rgba(201,167,106,0.5);
  color: var(--text); font-size: 0.82rem; letter-spacing: 1.6px; text-transform: uppercase;
  transition: 0.3s ease; font-weight: 400;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-deep); }
.filter-btn.active { background: var(--ink); color: var(--gold); border-color: var(--ink); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-item {
  position: relative; border-radius: 14px; overflow: hidden; cursor: pointer;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.gallery-item.hide { display: none; }
.gallery-item img { aspect-ratio: 1 / 1.1; object-fit: cover; width: 100%; transition: transform 0.7s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(23,19,17,0.7), transparent 55%);
  opacity: 0; transition: opacity 0.4s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item figcaption {
  position: absolute; left: 18px; bottom: 14px; z-index: 2;
  color: var(--gold-soft); font-family: var(--font-display); font-size: 1.05rem;
  opacity: 0; transform: translateY(10px); transition: 0.4s ease;
}
.gallery-item:hover figcaption { opacity: 1; transform: none; }

/* ============ CTA Band ============ */
.cta-band { position: relative; padding: 120px 0; text-align: center; color: var(--white); overflow: hidden; }
.cta-band-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-band-bg::after { content: ""; position: absolute; inset: 0; background: rgba(23,19,17,0.78); }
.cta-band-inner { position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 16px; }
.cta-band h2 em { color: var(--gold); }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 38px; font-size: 1.08rem; }
.cta-band-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ============ Testimonials ============ */
.slider { max-width: 780px; margin: 0 auto; position: relative; }
.slider-track { display: grid; }
.slide {
  grid-area: 1 / 1;
  padding: 10px 6px; text-align: center;
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease, visibility 0s linear 0.55s;
  touch-action: pan-y;
}
.slide.active { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.slide-stars { color: var(--gold); letter-spacing: 4px; font-size: 1.15rem; margin-bottom: 22px; }
.slide p { font-family: var(--font-script); font-size: clamp(1.15rem, 3.5vw, 1.5rem); font-style: italic; color: var(--ink-2); line-height: 1.55; margin-bottom: 28px; }
.slide-author { display: flex; flex-direction: column; gap: 2px; }
.slide-author strong { font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); }
.slide-author span { font-size: 0.8rem; letter-spacing: 1.8px; text-transform: uppercase; color: var(--muted); }
.slider-nav { display: flex; align-items: center; justify-content: center; gap: 26px; margin-top: 34px; }
.slider-arrow {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(201,167,106,0.5);
  display: grid; place-items: center; color: var(--gold-deep); transition: 0.3s ease;
}
.slider-arrow:hover { background: var(--ink); color: var(--gold); border-color: var(--ink); }
.slider-dots { display: flex; gap: 9px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(23,19,17,0.18); cursor: pointer; transition: 0.3s ease; }
.dot.active { background: var(--gold); transform: scale(1.35); }

/* ============ FAQ ============ */
.faq-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro .lead { color: var(--muted); margin-bottom: 30px; }
.faq-list { display: grid; gap: 14px; }
.faq-item { background: var(--white); border-radius: 14px; box-shadow: var(--shadow-sm); overflow: hidden; border: 1px solid rgba(201,167,106,0.18); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; text-align: left;
  font-family: var(--font-display); font-size: 1.08rem; color: var(--ink); font-weight: 500;
}
.faq-icon { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--gold-deep); border-radius: 2px; transition: 0.35s ease; }
.faq-icon::before { width: 22px; height: 2px; top: 10px; left: 0; }
.faq-icon::after { width: 2px; height: 22px; left: 10px; top: 0; }
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.2, 0.6, 0.2, 1); }
.faq-a-inner { padding: 0 24px 22px; }
.faq-a p { color: var(--muted); font-size: 0.98rem; }
.faq-item.open .faq-q { color: var(--gold-deep); }

/* ============ Contact ============ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: start; }
.contact-info { display: grid; gap: 14px; }
.info-card {
  display: flex; align-items: center; gap: 18px; padding: 18px 22px;
  background: var(--white); border-radius: 14px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,167,106,0.18); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
a.info-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.info-icon {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--ink); display: grid; place-items: center;
}
.info-icon-wa { background: var(--wa); color: var(--white); }
.info-card small { display: block; font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.info-card strong { font-family: var(--font-display); font-size: 1.12rem; color: var(--ink); font-weight: 500; }
.contact-social { display: flex; gap: 12px; margin-top: 6px; }
.contact-social a {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--ink); color: var(--gold-soft); transition: 0.3s ease;
}
.contact-social a:hover { background: var(--gold); color: var(--ink); transform: translateY(-4px); }

.booking-form {
  background: var(--white); border-radius: var(--radius); padding: 40px 38px;
  box-shadow: var(--shadow-md); border: 1px solid rgba(201,167,106,0.2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.8rem; letter-spacing: 1.4px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px;
  border: 1px solid rgba(23,19,17,0.14); background: var(--cream);
  color: var(--text); font-weight: 300; transition: 0.3s ease; resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 4px rgba(201,167,106,0.15);
}
.form-note { margin-top: 16px; text-align: center; color: var(--muted); font-size: 0.92rem; }
.form-note a { color: var(--gold-deep); font-weight: 500; }
.map-wrap { margin-top: 60px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 4px solid var(--white); }
.map-wrap iframe { display: block; filter: saturate(0.9); }

/* ============ Footer ============ */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr; gap: 46px; padding-bottom: 56px; }
.brand-footer { margin-bottom: 20px; }
.brand-footer .brand-name { color: var(--white); }
.footer-brand p { font-size: 0.95rem; max-width: 300px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.16); color: rgba(255,255,255,0.75); transition: 0.3s ease;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-3px); }
.footer-col h4 { color: var(--gold); font-size: 1.05rem; margin-bottom: 22px; font-weight: 500; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col ul a { font-size: 0.94rem; color: rgba(255,255,255,0.7); transition: 0.3s ease; position: relative; }
.footer-col ul a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.94rem; }
.footer-contact svg { color: var(--gold); margin-top: 4px; flex-shrink: 0; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0;
  padding-bottom: calc(24px + env(safe-area-inset-bottom));
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 0.86rem; color: rgba(255,255,255,0.55);
}
.heart { color: #e05d5d; }

/* ============ Floating Buttons ============ */
.floating-actions { position: fixed; right: max(22px, env(safe-area-inset-right)); bottom: calc(24px + env(safe-area-inset-bottom)); z-index: 300; display: flex; flex-direction: column; gap: 14px; }
.float-btn {
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(0,0,0,0.3); transition: transform 0.3s ease;
  position: relative; animation: floaty 3s ease-in-out infinite;
}
.float-btn:hover { transform: scale(1.12); }
.float-wa { background: var(--wa); color: var(--white); }
.float-call { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: var(--ink); animation-delay: 0.4s; }
.float-wa::after {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid var(--wa); opacity: 0; animation: ring 2s ease infinite;
}
@keyframes ring { 0% { transform: scale(0.85); opacity: 0.8; } 100% { transform: scale(1.3); opacity: 0; } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

body.menu-open .floating-actions,
body.menu-open .to-top { opacity: 0; visibility: hidden; }

.to-top {
  position: fixed; right: max(26px, env(safe-area-inset-right)); bottom: calc(104px + env(safe-area-inset-bottom)); width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: var(--gold); display: grid; place-items: center;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: 0.4s ease; z-index: 250;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--gold); color: var(--ink); }

/* ============ Lightbox ============ */
.lightbox {
  position: fixed; inset: 0; z-index: 500; background: rgba(15,12,10,0.92);
  display: none; align-items: center; justify-content: center; padding: 30px;
  opacity: 0; transition: opacity 0.35s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: min(900px, 92vw); max-height: 84vh; object-fit: contain; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lightbox figcaption { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: var(--gold-soft); font-family: var(--font-display); font-size: 1.15rem; }
.lightbox-close {
  position: absolute; top: 22px; right: 28px; color: var(--white); font-size: 2.6rem;
  line-height: 1; transition: transform 0.3s ease, color 0.3s ease; width: 52px; height: 52px;
}
.lightbox-close:hover { color: var(--gold); transform: rotate(90deg); }

/* ============ Responsive ============ */
@media (max-width: 1280px) {
  .nav { gap: 16px; }
  .nav-list { gap: 18px; }
  .nav-link { font-size: 0.78rem; letter-spacing: 1.2px; }
}

@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .packages-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .package-card { padding: 36px 24px; }
}

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: var(--cream);
    flex-direction: column; justify-content: safe center; gap: 30px;
    transform: translateX(100%); transition: transform 0.5s cubic-bezier(0.6, 0, 0.2, 1);
    z-index: 110; overflow-y: auto; padding: 40px 24px 48px;
  }
  .nav.open { transform: none; }
  .nav-list { flex-direction: column; gap: 20px; }
  .nav-link { font-size: 1.15rem; letter-spacing: 3px; }
  .nav-cta { display: none; }
  .nav-extras { display: flex; flex-direction: column; gap: 12px; width: min(320px, 86%); }
  .nav-extras .btn { width: 100%; padding: 15px 20px; }
  .nav-extras .btn svg { flex-shrink: 0; }
  .nav-social { display: flex; justify-content: center; gap: 14px; margin-top: 12px; }
  .nav-social a {
    width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
    border: 1px solid rgba(201,167,106,0.45); color: var(--gold-deep); transition: 0.3s ease;
  }
  .nav-social a:hover, .nav-social a:active { background: var(--gold); color: var(--ink); border-color: var(--gold); }
}

@media (max-width: 900px) {
  .topbar-hide { display: none; }
  .about-grid, .bridal-grid, .contact-grid, .faq-grid { grid-template-columns: 1fr; gap: 54px; }
  .faq-intro { position: static; }
  .about-media { max-width: 460px; margin-inline: auto; width: 100%; }
  .bridal-media { max-width: 460px; margin-inline: auto; width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .package-featured { transform: none; }
  .package-featured:hover { transform: translateY(-10px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 84px 0; }
}

@media (max-width: 760px) {
  .topbar-item:first-child { display: none; }
  .topbar-inner { justify-content: center; }
}

@media (max-width: 620px) {
  .topbar-actions { gap: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-inner { padding: 100px 0 140px; }
  .hero-stats { gap: 10px; }
  .hero-stat { padding: 13px 18px; min-width: 0; flex: 1 1 40%; }
  .booking-form { padding: 30px 22px; }
  .section { padding: 70px 0; }
  .section-head { margin-bottom: 42px; }
  .about-img-small { right: -6px; width: 52%; }
  .float-btn { width: 52px; height: 52px; }
  .scroll-hint { display: none; }
  .bridal-frame { inset: 12px -12px -12px 12px; }
  .bridal-note { left: 6px; bottom: 6px; max-width: 210px; padding: 13px 16px; }
  .map-wrap { margin-top: 44px; border-width: 2px; }
  .map-wrap iframe { height: 320px; }
  .slider-nav { gap: 16px; margin-top: 26px; }
}

@media (max-width: 480px) {
  .brand-mark { width: 40px; height: 40px; font-size: 1.5rem; }
  .brand-name { font-size: 1.15rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-title { font-size: clamp(2.4rem, 11vw, 3rem); }
  .hero-stat { flex: 1 1 45%; }
  .gallery-item figcaption { left: 12px; bottom: 10px; font-size: 0.9rem; }
  .about-badge { padding: 12px 16px; }
  .about-badge strong { font-size: 1.7rem; }
  .about-sign .sign-name { font-size: 2rem; }
  .package-price { font-size: 2.2rem; }
  .booking-form { padding: 26px 18px; }
  .info-card { padding: 15px 16px; }
  .info-icon { width: 46px; height: 46px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ============ Mobile & Tablet UX ============ */
@media (min-width: 901px) and (max-width: 1024px) {
  .section { padding: 92px 0; }
  .hero-inner { padding: 110px 0 150px; }
}

@media (max-width: 760px) {
  .hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-stat { width: 100%; padding: 14px 16px; }
  .hero-stat strong { font-size: 1.5rem; }
  .hero-kicker { letter-spacing: 3px; font-size: 0.72rem; }
  .filter-btn { min-height: 44px; }
  .form-group input, .form-group select, .form-group textarea { font-size: 16px; min-height: 48px; }
  .map-wrap iframe { height: 340px; }
  .section-head { margin-bottom: 40px; }
  .section-title { font-size: clamp(1.8rem, 6vw, 2.3rem); }
  .info-card { padding: 16px 18px; }
  .info-card strong { font-size: 1.02rem; }
  .faq-q { padding: 18px 18px; font-size: 1.02rem; }
  .services-cta { margin-top: 40px; }
}

@media (max-width: 620px) {
  .marquee { padding: 14px 0; }
  .marquee-track { gap: 26px; }
  .marquee-track span { font-size: 1.02rem; letter-spacing: 2px; }
  .slide p { margin-bottom: 22px; }
  .lightbox { padding: 16px; }
  .lightbox-close { top: 12px; right: 14px; font-size: 2.2rem; }
  .lightbox figcaption { bottom: 14px; font-size: 0.95rem; padding: 0 16px; }
  .hero-title { margin-bottom: 18px; }
  .hero-sub { margin-bottom: 30px; }
  .gallery-item img { aspect-ratio: 1 / 1; }
  .about-list { gap: 12px; }
  .bridal-list { gap: 11px; }
}

@media (max-width: 400px) {
  .topbar-link { font-size: 0.76rem; gap: 5px; }
  .brand-tag { letter-spacing: 2px; }
  .hero-stat span { letter-spacing: 1px; font-size: 0.68rem; }
  .hero-stat strong { font-size: 1.35rem; }
  .package-name { font-size: 1.3rem; }
}

@media (max-height: 540px) and (orientation: landscape) {
  .hero { min-height: 560px; }
  .scroll-hint { display: none; }
  .nav { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  html { scroll-behavior: auto; }
}
