/* ============================================================
   I.M. Events — Black & Gold Luxury
   ============================================================ */

:root {
  --bg: #0B0B0D;
  --surface: #121216;
  --surface-2: #1A1A20;
  --card: #18181E;
  --gold: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #AA771C;
  --grad-gold: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
  --grad-gold-text: linear-gradient(92deg, #F3E5AB 0%, #D4AF37 45%, #FBF5B7 70%, #AA771C 100%);
  --text: #FDFBF7;
  --muted: #E9E6DC;
  --line: rgba(212, 175, 55, 0.22);
  --line-bright: rgba(212, 175, 55, 0.65);
  --wa: #25D366;
  --wa-dark: #128C7E;
  --font-display: 'Cinzel Decorative', 'Playfair Display', serif;
  --font-sub: 'Cinzel', 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-accent: 'Montserrat', sans-serif;
  --radius: 18px;
  --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.18);
  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(1200px 600px at 85% -100px, rgba(212, 175, 55, 0.07), transparent 60%),
    radial-gradient(900px 500px at -100px 40%, rgba(212, 175, 55, 0.05), transparent 60%);
}

::selection { background: var(--gold); color: #0B0B0D; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0B0B0D; }
::-webkit-scrollbar-thumb { background: linear-gradient(#AA771C, #D4AF37); border-radius: 8px; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; margin-top: 40px; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--gold); color: #0B0B0D; padding: 10px 18px; z-index: 300; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }

h1, h2, h3, h4 { font-family: var(--font-sub); font-weight: 700; line-height: 1.22; letter-spacing: 0.01em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-accent); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after { content: ""; width: 28px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }

.section { padding: 96px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, rgba(212,175,55,0.04), transparent 30%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 1.05rem; }
.lead { font-size: 1.1rem; color: var(--muted); }

/* ---------- badges & buttons ---------- */

.badge-gold {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-accent); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 100px;
  backdrop-filter: blur(8px);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-accent); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 100px; border: 0; cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn-lg { padding: 17px 34px; font-size: 0.92rem; }
.btn-sm { padding: 10px 18px; font-size: 0.72rem; }

.btn-gold { background: var(--grad-gold); color: #14100a; box-shadow: 0 8px 26px rgba(212, 175, 55, 0.3); }
.btn-gold::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform 0.6s ease;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(212, 175, 55, 0.45); }
.btn-gold:hover::after { transform: translateX(120%); }

.btn-outline { background: transparent; color: var(--gold-light); border: 1px solid var(--line-bright); }
.btn-outline:hover { background: rgba(212, 175, 55, 0.12); transform: translateY(-3px); }

.btn-wa { background: linear-gradient(135deg, var(--wa), var(--wa-dark)); color: #fff; box-shadow: 0 8px 26px rgba(37, 211, 102, 0.28); }
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(37, 211, 102, 0.45); }
.btn-wa i { font-size: 1.15em; }

.gold-link { color: var(--gold-light); border-bottom: 1px dashed var(--line-bright); transition: color .2s; word-break: break-word; }
.gold-link:hover { color: var(--gold); }

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 11, 13, 0.97);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}
.site-header.scrolled { background: rgba(11, 11, 13, 0.96); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5); }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 10px; padding-bottom: 10px; }

.brand { display: flex; align-items: center; gap: 14px; position: relative; z-index: 101; }

.logo-ring {
  width: 96px; height: 96px; flex: 0 0 auto;
  border-radius: 50%;
  background:
    linear-gradient(#0B0B0D, #0B0B0D) padding-box,
    var(--grad-gold) border-box;
  border: 2px solid transparent;
  display: grid; place-items: center;
  box-shadow: 0 0 0 1px rgba(212,175,55,.45), 0 16px 48px rgba(212, 175, 55, 0.6), 0 6px 18px rgba(0,0,0,.7), inset 0 0 20px rgba(212,175,55,.32);
  transition: box-shadow .3s ease, transform .3s ease;
}
.brand:hover .logo-ring { transform: rotate(3deg) scale(1.02); box-shadow: 0 0 0 1px rgba(212,175,55,.55), 0 18px 50px rgba(212,175,55,.7), 0 8px 20px rgba(0,0,0,.7); }
.logo-img { width: calc(100% - 10px); height: calc(100% - 10px); border-radius: 50%; object-fit: cover; }

.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-family: var(--font-sub); font-size: 1.25rem; letter-spacing: 0.06em; color: var(--gold-light); }
.brand-text small { font-family: var(--font-accent); font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { font-family: var(--font-accent); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); position: relative; padding: 8px 0; transition: color 0.25s; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--grad-gold); transition: width 0.3s ease; border-radius: 2px; }
.main-nav a:hover, .main-nav a.active { color: var(--gold-light); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.nav-wa-mobile { display: none; }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; background: rgba(212,175,55,.08); border: 1px solid var(--line); cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; position: relative; z-index: 102; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--gold-light); border-radius: 2px; transition: transform .3s, opacity .3s, background-color .3s; }
.nav-open .nav-toggle { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.55); }
.nav-open .nav-toggle span { background: #FFFFFF; width: 22px; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.page-hero { position: relative; min-height: 62vh; display: flex; align-items: center; overflow: hidden; padding: 80px 0 60px; }

.hero-bg { position: absolute; inset: -60px 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); will-change: transform; filter: saturate(0.92) contrast(1.05); }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(180deg, rgba(11,11,13,.82) 0%, rgba(11,11,13,.45) 45%, rgba(11,11,13,.92) 100%),
  radial-gradient(900px 500px at 20% 30%, rgba(212,175,55,.12), transparent 60%);
}
.hero-content { position: relative; z-index: 2; padding-top: 40px; padding-bottom: 120px; }
.page-hero .hero-content { padding-bottom: 40px; }

.hero-badge { margin-bottom: 26px; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.5rem, 6.5vw, 4.6rem); font-weight: 700; line-height: 1.12; letter-spacing: -0.01em; }
.page-title { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.6rem); }

.line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.line-inner { display: inline-block; transform: translateY(115%); animation: lineUp 0.9s cubic-bezier(0.22, 0.8, 0.24, 1) forwards; }
.line:nth-child(2) .line-inner { animation-delay: 0.15s; }
.line:nth-child(3) .line-inner { animation-delay: 0.3s; }
@keyframes lineUp { to { transform: translateY(0); } }

.line-gold .line-inner {
  background: var(--grad-gold-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic;
}

.hero-sub { max-width: 620px; margin-top: 22px; color: #F4F1E8; font-size: clamp(1rem, 1.4vw, 1.15rem); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }

.hero-scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--gold-light); font-size: 0.9rem; opacity: 0.85; }
.hero-scroll-line { width: 1px; height: 42px; background: linear-gradient(var(--gold), transparent); animation: drip 1.8s ease-in-out infinite; }
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- booking ---------- */

.booking { position: relative; z-index: 5; margin-top: -70px; padding-bottom: 20px; }
.booking-card {
  background: rgba(26, 26, 32, 0.75);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line-bright);
  border-radius: 24px;
  box-shadow: var(--shadow-gold), 0 30px 60px rgba(0,0,0,.45);
  padding: 40px;
  position: relative; overflow: hidden;
}
.booking-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-gold); }
.booking-head h2 { margin-top: 16px; }
.booking-head p { color: var(--muted); margin-top: 8px; }

.booking-form { margin-top: 28px; }
.booking-fields { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.field span { display: flex; align-items: center; gap: 8px; font-family: var(--font-accent); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 8px; }
.field input {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  background: rgba(11, 11, 13, 0.7); border: 1px solid var(--line);
  color: var(--text); font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color .25s, box-shadow .25s;
  color-scheme: dark;
}
.field input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18); }
.field input::placeholder { color: #6d6d7a; }

.services-pick { border: 0; margin-top: 22px; }
.services-pick legend { font-family: var(--font-accent); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 12px; display: flex; gap: 8px; align-items: center; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; max-height: 172px; overflow-y: auto; padding: 4px; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-block; padding: 9px 16px; border-radius: 100px;
  border: 1px solid var(--line); color: var(--muted);
  font-size: 0.8rem; font-weight: 500; cursor: pointer; user-select: none;
  transition: all 0.22s ease; background: rgba(11,11,13,.5);
}
.chip:hover span { border-color: var(--line-bright); color: var(--gold-light); }
.chip input:checked + span { background: var(--grad-gold); color: #14100a; font-weight: 700; border-color: transparent; box-shadow: 0 4px 16px rgba(212,175,55,.35); }
.chip input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

.booking-form .btn-wa { margin-top: 26px; width: 100%; }
.booking-note { margin-top: 14px; text-align: center; color: var(--muted); font-size: 0.8rem; }
.booking-note i { color: var(--gold); }

/* ---------- marquee ---------- */

.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(90deg, rgba(212,175,55,.06), rgba(212,175,55,.12), rgba(212,175,55,.06)); margin: 76px 0 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 46s linear infinite; will-change: transform; }
@media (hover: hover) and (pointer: fine) {
  .marquee:hover .marquee-track { animation-play-state: paused; }
}
.marquee-set { display: flex; align-items: center; }
.marquee-item { display: inline-flex; align-items: center; gap: 22px; padding: 18px 30px; font-family: var(--font-sub); font-size: 0.95rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); white-space: nowrap; }
.marquee-item i { font-size: 0.5rem; color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- grids & cards ---------- */

.grid { display: grid; gap: 24px; }
.grid-services { grid-template-columns: repeat(4, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.service-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; position: relative; overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex; flex-direction: column; gap: 12px;
}
.service-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(400px 160px at 50% -40px, rgba(212,175,55,.14), transparent 70%); opacity: 0; transition: opacity .3s; }
.service-card:hover { transform: translateY(-6px); border-color: var(--line-bright); box-shadow: var(--shadow-gold); }
.service-card:hover::before { opacity: 1; }
.service-card h3 { font-size: 1.06rem; font-family: var(--font-sub); }
.service-card p { color: var(--muted); font-size: 0.88rem; flex: 1; }
.service-cat { font-family: var(--font-accent); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.service-cta { align-self: flex-start; margin-top: 4px; }

.service-icon {
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.35rem; color: var(--gold-light);
  background:
    linear-gradient(var(--surface-2), var(--surface-2)) padding-box,
    var(--grad-gold) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 6px 18px rgba(212,175,55,.2);
  transition: transform .3s ease;
}
.service-card:hover .service-icon { transform: rotate(-6deg) scale(1.06); }

.why-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.why-card:hover { transform: translateY(-6px); border-color: var(--line-bright); box-shadow: var(--shadow-gold); }
.why-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.why-card p { color: var(--muted); font-size: 0.9rem; }
.why-icon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; font-size: 1.3rem; color: var(--gold-light); background: rgba(212,175,55,.1); border: 1px solid var(--line); margin-bottom: 18px; }

.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 34px 0; }
.stat { text-align: center; display: flex; flex-direction: column; gap: 6px; }
.stat strong { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem); background: var(--grad-gold-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { font-family: var(--font-accent); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ---------- gallery ---------- */

.grid-gallery-preview { grid-template-columns: repeat(4, 1fr); }
.preview-photo { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 1 / 1.15; display: block; }
.preview-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.preview-photo:hover img { transform: scale(1.06); }
.preview-zoom { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(11,11,13,.35); color: var(--gold-light); font-size: 1.3rem; opacity: 0; transition: opacity .3s; }
.preview-photo:hover .preview-zoom { opacity: 1; }

.filter-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter-chip { font-family: var(--font-accent); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); background: transparent; border: 1px solid var(--line); border-radius: 100px; padding: 10px 20px; cursor: pointer; transition: all .25s ease; }
.filter-chip:hover { color: var(--gold-light); border-color: var(--line-bright); }
.filter-chip.active { background: var(--grad-gold); color: #14100a; border-color: transparent; }

.masonry { columns: 3; column-gap: 20px; }
.gallery-item { break-inside: avoid; margin: 0 0 20px; position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); cursor: zoom-in; }
.gallery-item img { width: 100%; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 30px 16px 14px;
  background: linear-gradient(transparent, rgba(11,11,13,.92));
  color: var(--gold-light); font-family: var(--font-accent); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  opacity: 0; transform: translateY(8px); transition: all .3s ease;
}
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }
.gallery-item.hide { display: none; }
.hide { display: none !important; }

.lightbox { position: fixed; inset: 0; z-index: 250; background: rgba(7,7,9,.92); backdrop-filter: blur(10px); display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.open { display: flex; }
.lightbox figure { max-width: min(1000px, 92vw); text-align: center; }
.lightbox img { max-height: 80vh; max-width: 100%; margin: 0 auto; border-radius: 14px; border: 1px solid var(--line-bright); box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lb-caption { margin-top: 14px; color: var(--gold-light); font-family: var(--font-accent); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; }
.lightbox button { position: absolute; background: rgba(212,175,55,.12); border: 1px solid var(--line-bright); color: var(--gold-light); width: 52px; height: 52px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; transition: all .25s; display: grid; place-items: center; }
.lightbox button:hover { background: var(--gold); color: #14100a; }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- faq ---------- */

.faq-wrap { max-width: 820px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); margin-bottom: 14px; overflow: hidden; transition: border-color .3s; }
.faq-item.open { border-color: var(--line-bright); box-shadow: var(--shadow-gold); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; text-align: left; background: transparent; border: 0; color: var(--text); font-family: var(--font-sub); font-size: 1.05rem; font-weight: 600; padding: 22px 24px; cursor: pointer; }
.faq-q i { color: var(--gold); transition: transform .3s ease; flex: 0 0 auto; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { padding: 0 24px 24px; color: var(--muted); }

/* ---------- contact & map ---------- */

.contact-card p { margin-bottom: 14px; }
.btn-row { display: flex; gap: 10px; flex-wrap: wrap; }
.map-frame { border: 1px solid var(--line-bright); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-gold); }
.map-frame iframe { display: block; filter: grayscale(1) invert(0.92) contrast(0.9); }
.map-note { display: flex; gap: 10px; align-items: center; padding: 16px 20px; color: var(--muted); font-size: 0.85rem; border-top: 1px solid var(--line); }
.map-note i { color: var(--gold); }

/* ---------- about ---------- */

.about-wrap { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: start; }
.about-text h2 { margin: 6px 0 20px; }
.rich p { color: #EDEAE0; margin-bottom: 16px; font-size: 1.02rem; }
.rich strong { color: var(--gold-light); }
.about-media { display: grid; gap: 20px; }
.about-photo { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.about-photo img { transition: transform .5s ease; }
.about-photo:hover img { transform: scale(1.04); }

/* ---------- cta band ---------- */

.cta-band { position: relative; padding: 90px 0; background: linear-gradient(180deg, rgba(212,175,55,.08), rgba(212,175,55,.02)); border-top: 1px solid var(--line); text-align: center; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 600px; height: 240px; background: radial-gradient(closest-side, rgba(212,175,55,.25), transparent); filter: blur(30px); }
.cta-inner { position: relative; }
.cta-inner p { color: var(--muted); margin-top: 12px; }
.cta-inner .hero-ctas { justify-content: center; }

/* ---------- footer ---------- */

.site-footer { background: #070709; border-top: 1px solid var(--line); padding: 70px 0 0; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.7fr 1fr 1.1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand .logo-ring-lg { margin-bottom: 18px; }
.footer-bio { color: var(--muted); font-size: 0.9rem; max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold-light); transition: all .25s; }
.footer-social a:hover { background: var(--grad-gold); color: #14100a; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(212,175,55,.35); }
.footer-col h4 { font-family: var(--font-accent); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; color: var(--muted); font-size: 0.9rem; display: flex; gap: 10px; align-items: baseline; }
.footer-col ul a { color: var(--muted); transition: color .2s; }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-col i { color: var(--gold); width: 18px; }
.footer-bottom { border-top: 1px solid var(--line); padding: 20px 0; }
.footer-bottom p { color: #C7C4BB; font-size: 0.8rem; text-align: center; }

/* ---------- whatsapp float ---------- */

.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 200; width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--wa), var(--wa-dark)); display: grid; place-items: center; color: #fff; font-size: 1.7rem; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); transition: transform .25s ease; }
.wa-float:hover { transform: scale(1.08); }
.wa-float::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(37, 211, 102, 0.5); animation: waPulse 2s ease-out infinite; }
@keyframes waPulse { 0% { transform: scale(0.8); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }
.wa-tooltip { position: absolute; right: 74px; top: 50%; transform: translateY(-50%); background: var(--surface-2); border: 1px solid var(--line-bright); color: var(--gold-light); font-family: var(--font-accent); font-size: 0.7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 8px 14px; border-radius: 10px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .25s; }
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ---------- reveal animations ---------- */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease var(--d, 0s), transform 0.7s ease var(--d, 0s); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .line-inner { animation: none; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
  .grid-services, .grid-4, .grid-gallery-preview { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-wrap { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
}

@media (max-width: 860px) {
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: 0; z-index: 99;
    background: #070709;
    flex-direction: column; justify-content: center; align-items: center; gap: 24px;
    opacity: 0; pointer-events: none; transition: opacity .3s ease;
    padding: 120px 24px 40px;
  }
  .nav-open .main-nav { opacity: 1; pointer-events: auto; }
  .main-nav a { font-size: 1.25rem; font-family: var(--font-sub); text-transform: none; letter-spacing: 0.04em; }
  .nav-wa-mobile { display: inline-flex; margin-top: 12px; }
  .booking-fields { grid-template-columns: 1fr; }
  .booking-card { padding: 28px 22px; }
  .section { padding: 72px 0; }
  .hero-content { padding-bottom: 90px; }
  .booking { margin-top: -50px; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .btn { white-space: normal; min-width: 0; text-align: center; }
  .grid-services, .grid-4, .grid-3, .grid-gallery-preview { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .masonry { columns: 1; }
  .brand-text { display: none; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .footer-brand .logo-ring { margin: 0 auto 18px; }
  .footer-social { justify-content: center; }
  .hero-ctas .btn { width: 100%; }
  .cta-inner .hero-ctas .btn { width: 100%; }
  .header-inner { gap: 10px; }
  .logo-ring { width: 92px; height: 92px; }
  .site-header .logo-ring { width: 96px; height: 96px; }
  .wa-float { width: 54px; height: 54px; font-size: 1.5rem; right: 16px; bottom: 16px; }
  .lightbox { padding: 16px; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
}