:root {
  --navy-950: #050716;
  --navy-900: #090b1f;
  --navy-850: #0d1030;
  --navy-800: #111642;
  --purple: #8b4dff;
  --pink: #ff2db2;
  --cyan: #21e6f3;
  --lime: #8ef23c;
  --yellow: #ffe450;
  --white: #ffffff;
  --ink: #12152e;
  --muted: #69708c;
  --surface: #f6f7fb;
  --border: rgba(18, 21, 46, .11);
  --shadow: 0 24px 80px rgba(20, 17, 62, .18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--navy-950);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; padding: 12px 18px; border-radius: 12px; background: var(--white); color: var(--ink); font-weight: 800; transition: top .2s; }
.skip-link:focus { top: 16px; }

.space-bg { position: fixed; inset: 0; z-index: -2; overflow: hidden; background:
  radial-gradient(circle at 10% 20%, rgba(33,230,243,.14), transparent 24%),
  radial-gradient(circle at 88% 10%, rgba(255,45,178,.16), transparent 28%),
  radial-gradient(circle at 60% 80%, rgba(139,77,255,.18), transparent 28%),
  linear-gradient(180deg, var(--navy-950), var(--navy-900));
}
.space-bg::before, .space-bg::after { content: ""; position: absolute; inset: 0; background-image:
  radial-gradient(circle, rgba(255,255,255,.9) 0 1px, transparent 1.5px),
  radial-gradient(circle, rgba(255,255,255,.55) 0 1px, transparent 1.3px);
  background-size: 78px 78px, 123px 123px; background-position: 0 0, 30px 60px; opacity: .32; }
.space-bg::after { transform: rotate(16deg) scale(1.2); opacity: .13; }
.planet { position: absolute; border-radius: 50%; filter: blur(.2px); }
.planet-a { width: 220px; height: 220px; right: -70px; top: 20%; background: radial-gradient(circle at 32% 30%, #d8ff5e, #67d618 48%, #1f770d 75%); box-shadow: 0 0 80px rgba(142,242,60,.28); opacity: .35; }
.planet-b { width: 110px; height: 110px; left: 4%; bottom: 14%; background: radial-gradient(circle at 35% 25%, #aef6ff, #4488ff 48%, #22215c 78%); box-shadow: 0 0 60px rgba(33,230,243,.3); opacity: .28; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; transform: rotate(-18deg); }
.orbit-a { width: 440px; height: 120px; right: -160px; top: 28%; }
.orbit-b { width: 300px; height: 90px; left: -110px; bottom: 19%; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; transition: background .25s, box-shadow .25s, backdrop-filter .25s; }
.site-header.is-scrolled { background: rgba(5,7,22,.82); box-shadow: 0 10px 30px rgba(0,0,0,.22); backdrop-filter: blur(18px); }
.header-inner { min-height: 82px; display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--white); min-width: max-content; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; color: var(--cyan); filter: drop-shadow(0 0 12px rgba(33,230,243,.45)); }
.brand-mark svg { width: 100%; height: 100%; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 22px; letter-spacing: .02em; font-style: italic; color: var(--pink); text-shadow: 0 0 18px rgba(255,45,178,.45); }
.brand-copy strong span { color: var(--cyan); }
.brand-copy small { margin-top: 5px; font-size: 9px; letter-spacing: .36em; padding-left: 2px; color: var(--lime); font-weight: 900; }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a { color: rgba(255,255,255,.78); font-weight: 700; font-size: 14px; transition: color .2s; }
.desktop-nav a:hover { color: var(--white); }
.header-cta { margin-left: 4px; }
.menu-button { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: rgba(255,255,255,.08); padding: 11px; }
.menu-button span:not(.sr-only) { display: block; height: 2px; background: var(--white); border-radius: 2px; margin: 5px 0; transition: transform .2s, opacity .2s; }
.mobile-nav { display: none; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 13px 22px; border: 1px solid transparent; border-radius: 16px; font-weight: 850; line-height: 1.1; transition: transform .2s, box-shadow .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; }
.button-primary { color: #07101b; background: linear-gradient(120deg, var(--cyan), var(--lime)); box-shadow: 0 12px 30px rgba(33,230,243,.2), inset 0 1px rgba(255,255,255,.55); }
.button-primary:hover { box-shadow: 0 16px 38px rgba(33,230,243,.3); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.06); backdrop-filter: blur(12px); }
.button-ghost:hover { background: rgba(255,255,255,.12); }
.button-small { min-height: 44px; padding: 11px 17px; border-radius: 13px; font-size: 14px; }
.button-large { min-height: 60px; padding-inline: 28px; }

.hero { position: relative; min-height: 800px; padding: 142px 0 115px; color: var(--white); display: grid; align-items: center; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,7,22,.03), rgba(5,7,22,.2)); pointer-events: none; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 72px; }
.eyebrow { margin: 0 0 18px; display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 900; color: var(--cyan); }
.eyebrow span { width: 30px; height: 2px; background: linear-gradient(90deg, var(--pink), var(--cyan)); border-radius: 2px; }
.eyebrow-dark { color: #5b31ca; }
.hero h1 { max-width: 720px; margin: 0; font-size: clamp(54px, 6vw, 88px); line-height: .98; letter-spacing: -.055em; text-wrap: balance; }
.hero h1 em { color: transparent; font-style: normal; background: linear-gradient(100deg, var(--pink), #b74dff 47%, var(--cyan)); -webkit-background-clip: text; background-clip: text; filter: drop-shadow(0 0 28px rgba(255,45,178,.25)); }
.hero-lead { max-width: 650px; margin: 28px 0 0; color: rgba(255,255,255,.74); font-size: 19px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-highlights { display: flex; flex-wrap: wrap; gap: 0; margin-top: 40px; }
.hero-highlights div { display: grid; gap: 3px; padding: 0 24px; border-left: 1px solid rgba(255,255,255,.16); }
.hero-highlights div:first-child { padding-left: 0; border-left: 0; }
.hero-highlights strong { font-size: 16px; }
.hero-highlights span { color: rgba(255,255,255,.55); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.hero-visual { position: relative; min-height: 540px; display: grid; place-items: center; }
.hero-photo-card { position: relative; z-index: 2; width: min(100%, 510px); padding: 10px; border-radius: 34px; background: linear-gradient(135deg, var(--cyan), var(--pink), var(--lime)); box-shadow: 0 40px 110px rgba(0,0,0,.45); transform: rotate(2deg); }
.hero-photo-card::after { content: ""; position: absolute; inset: 9px; border-radius: 25px; border: 1px solid rgba(255,255,255,.45); pointer-events: none; }
.hero-photo-card img { border-radius: 25px; width: 100%; aspect-ratio: 1.02; object-fit: cover; }
.photo-orbit { position: absolute; width: 620px; height: 210px; border: 2px solid rgba(33,230,243,.22); border-radius: 50%; transform: rotate(-14deg); }
.photo-orbit::before, .photo-orbit::after { content: ""; position: absolute; border-radius: 50%; }
.photo-orbit::before { width: 14px; height: 14px; background: var(--pink); top: 40px; left: 55px; box-shadow: 0 0 20px var(--pink); }
.photo-orbit::after { width: 10px; height: 10px; background: var(--lime); right: 70px; bottom: 25px; box-shadow: 0 0 20px var(--lime); }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; padding: 13px 16px; border-radius: 16px; background: rgba(10,12,36,.86); border: 1px solid rgba(255,255,255,.13); backdrop-filter: blur(14px); box-shadow: 0 16px 45px rgba(0,0,0,.28); font-size: 13px; }
.floating-card span { font-size: 22px; }
.floating-card-a { left: -12px; top: 90px; }
.floating-card-b { right: -4px; bottom: 85px; }
.hero-wave { position: absolute; left: -5%; right: -5%; bottom: -85px; height: 150px; background: var(--surface); border-radius: 50% 50% 0 0 / 100% 100% 0 0; }

.section { position: relative; padding: 110px 0; }
.section-light { background: var(--surface); }
.section-heading { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-heading h2, .party-copy h2, .visit-info h2, .faq-heading h2, .final-cta h2 { margin: 0; font-size: clamp(38px, 4vw, 58px); line-height: 1.08; letter-spacing: -.045em; }
.section-heading > p:last-child { margin: 18px auto 0; color: var(--muted); max-width: 620px; font-size: 17px; }

.experience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.experience-card { position: relative; overflow: hidden; padding: 28px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--border); box-shadow: 0 14px 40px rgba(20,17,62,.07); transition: transform .25s, box-shadow .25s; }
.experience-card::after { content: ""; position: absolute; width: 120px; height: 120px; right: -45px; bottom: -55px; border-radius: 50%; background: linear-gradient(135deg, rgba(255,45,178,.14), rgba(33,230,243,.16)); }
.experience-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.experience-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: linear-gradient(135deg, #1a1c4d, #7036c9); color: var(--white); font-weight: 900; box-shadow: 0 10px 24px rgba(87,52,190,.25); }
.experience-card:nth-child(2) .experience-icon { background: linear-gradient(135deg, #008fa7, #23e5f2); color: #062532; }
.experience-card:nth-child(3) .experience-icon { background: linear-gradient(135deg, #ea2fa4, #ff76cb); }
.experience-card:nth-child(4) .experience-icon { background: linear-gradient(135deg, #6ab529, #a9f46e); color: #18330a; }
.experience-card h3 { margin: 22px 0 8px; font-size: 20px; }
.experience-card p { margin: 0; color: var(--muted); font-size: 14px; }
.feature-showcase { margin-top: 60px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 0; align-items: stretch; background: var(--navy-900); color: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); }
.feature-image img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.feature-copy { display: flex; flex-direction: column; justify-content: center; padding: 56px; background:
  radial-gradient(circle at 90% 10%, rgba(255,45,178,.18), transparent 33%),
  radial-gradient(circle at 10% 90%, rgba(33,230,243,.14), transparent 35%); }
.mini-tag { align-self: flex-start; padding: 7px 11px; border-radius: 999px; color: var(--lime); background: rgba(142,242,60,.1); border: 1px solid rgba(142,242,60,.25); text-transform: uppercase; letter-spacing: .12em; font-size: 10px; font-weight: 900; }
.feature-copy h3 { margin: 20px 0 16px; font-size: clamp(30px, 3vw, 44px); line-height: 1.12; letter-spacing: -.035em; }
.feature-copy p { margin: 0; color: rgba(255,255,255,.68); }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; font-weight: 850; color: #6f35db; }
.feature-copy .text-link, .gallery-cta .text-link { color: var(--cyan); }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }

.party-section { color: var(--white); background:
  radial-gradient(circle at 15% 25%, rgba(255,45,178,.18), transparent 35%),
  radial-gradient(circle at 85% 75%, rgba(33,230,243,.16), transparent 35%),
  linear-gradient(145deg, #090b22, #14103a 58%, #090b22); overflow: hidden; }
.party-section::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(circle, #fff 0 1px, transparent 1.5px); background-size: 55px 55px; }
.party-grid { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 80px; }
.party-copy > p:not(.eyebrow) { color: rgba(255,255,255,.7); font-size: 17px; margin: 22px 0 0; }
.check-list { list-style: none; padding: 0; margin: 30px 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,.84); }
.check-list span { flex: 0 0 auto; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: rgba(142,242,60,.14); color: var(--lime); font-weight: 900; }
.party-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.party-photos { position: relative; min-height: 610px; }
.party-photo-main { position: absolute; inset: 20px 90px 20px 0; margin: 0; overflow: hidden; border-radius: 28px; border: 8px solid rgba(255,255,255,.09); box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.party-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.party-photo-small { position: absolute; margin: 0; right: 0; bottom: 42px; width: 245px; height: 285px; overflow: hidden; border-radius: 24px; border: 7px solid #17113a; box-shadow: 0 24px 60px rgba(0,0,0,.45); transform: rotate(4deg); }
.party-photo-small img { width: 100%; height: 100%; object-fit: cover; }
.party-badge { position: absolute; top: 0; right: 20px; z-index: 3; display: grid; padding: 17px 20px; border-radius: 18px; background: linear-gradient(135deg, var(--pink), #a83bff); box-shadow: 0 14px 40px rgba(255,45,178,.3); transform: rotate(3deg); }
.party-badge strong { font-size: 15px; }
.party-badge span { font-size: 11px; opacity: .8; }

.gallery-section { padding-bottom: 95px; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 250px; gap: 18px; }
.gallery-item { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius-lg); grid-column: span 6; box-shadow: 0 18px 44px rgba(20,17,62,.12); }
.gallery-item.gallery-tall { grid-row: span 2; grid-column: span 5; }
.gallery-item:nth-child(2), .gallery-item:nth-child(3) { grid-column: span 7; }
.gallery-item.gallery-wide { grid-column: span 7; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(transparent, rgba(5,7,22,.8)); }
.gallery-item figcaption { position: absolute; left: 22px; bottom: 18px; z-index: 2; color: var(--white); font-weight: 850; }
.gallery-cta { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 34px; }
.gallery-cta p { margin: 0; color: var(--muted); }
.gallery-cta .text-link { margin: 0; color: #6131c5; }

.visit-section { color: var(--white); background: var(--navy-950); }
.visit-card { display: grid; grid-template-columns: .85fr 1.15fr; min-height: 620px; border-radius: var(--radius-xl); overflow: hidden; background: #0d1030; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 30px 100px rgba(0,0,0,.35); }
.visit-info { padding: 58px; background:
  radial-gradient(circle at 0 0, rgba(139,77,255,.23), transparent 38%),
  radial-gradient(circle at 100% 100%, rgba(33,230,243,.12), transparent 40%); }
.visit-info h2 { margin-bottom: 36px; }
.info-block { display: grid; grid-template-columns: 44px 1fr; gap: 14px; margin: 22px 0; }
.info-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: rgba(255,255,255,.07); color: var(--cyan); font-size: 20px; }
.info-block strong { font-size: 14px; }
.info-block p { margin: 4px 0 0; color: rgba(255,255,255,.64); font-size: 14px; }
.info-block a { color: var(--cyan); }
.schedule-note { color: rgba(255,255,255,.48); font-size: 12px; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.map-wrap { position: relative; min-height: 620px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: saturate(.8) contrast(1.05); }
.entrance-card { position: absolute; right: 20px; bottom: 20px; width: 190px; height: 150px; padding: 6px; border-radius: 18px; background: var(--white); box-shadow: 0 18px 50px rgba(0,0,0,.35); transform: rotate(-2deg); }
.entrance-card img { width: 100%; height: 100%; object-fit: cover; border-radius: 13px; }

.faq-section { background: var(--surface); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.faq-heading p:last-child { color: var(--muted); }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--border); border-radius: 18px; background: var(--white); box-shadow: 0 10px 30px rgba(20,17,62,.05); overflow: hidden; }
.faq-list summary { list-style: none; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 22px 24px; font-weight: 850; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: #f0ecff; color: #6032c3; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 24px 22px; color: var(--muted); }

.final-cta { padding: 80px 0; color: var(--white); background:
  radial-gradient(circle at 15% 50%, rgba(255,45,178,.22), transparent 30%),
  radial-gradient(circle at 80% 20%, rgba(33,230,243,.18), transparent 33%),
  linear-gradient(120deg, #110c35, #080a20); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.final-cta p:not(.eyebrow) { margin: 14px 0 0; color: rgba(255,255,255,.65); }

.site-footer { padding: 72px 0 28px; color: rgba(255,255,255,.66); background: #040512; }
.footer-grid { display: grid; grid-template-columns: 1.8fr repeat(3, 1fr); gap: 56px; }
.footer-brand { margin-bottom: 16px; }
.footer-grid h3 { margin: 0 0 14px; color: var(--white); font-size: 14px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid p { margin: 0; }
.footer-grid a:not(.brand) { margin: 5px 0; font-size: 14px; transition: color .2s; }
.footer-grid a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); font-size: 12px; }

.whatsapp-float { position: fixed; z-index: 950; right: 22px; bottom: 22px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; color: #2ce06f; background: #0b1520; border: 1px solid rgba(44,224,111,.35); box-shadow: 0 16px 40px rgba(0,0,0,.35), 0 0 24px rgba(44,224,111,.2); transition: transform .2s; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 34px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .header-cta { margin-left: auto; }
  .menu-button { display: block; }
  .mobile-nav { position: absolute; top: 74px; left: 20px; right: 20px; display: grid; gap: 4px; padding: 14px; border-radius: 20px; background: rgba(7,9,28,.96); border: 1px solid rgba(255,255,255,.1); box-shadow: 0 24px 60px rgba(0,0,0,.35); transform: translateY(-10px); opacity: 0; visibility: hidden; transition: .2s; }
  .mobile-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .mobile-nav a { padding: 12px 14px; border-radius: 12px; color: rgba(255,255,255,.84); font-weight: 750; }
  .mobile-nav a:hover { background: rgba(255,255,255,.07); }
  .hero-grid { gap: 38px; }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .party-grid { gap: 48px; }
  .visit-card { grid-template-columns: 1fr; }
  .map-wrap { min-height: 500px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 72px; }
  .header-cta { display: none; }
  .hero { min-height: auto; padding: 120px 0 100px; }
  .hero-grid, .feature-showcase, .party-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-highlights { justify-content: center; }
  .hero-visual { min-height: 500px; margin-top: 10px; }
  .hero-photo-card { width: min(88vw, 500px); }
  .floating-card-a { left: 0; }
  .floating-card-b { right: 0; }
  .section { padding: 82px 0; }
  .feature-copy { padding: 40px; }
  .party-copy { text-align: center; }
  .party-copy .eyebrow, .party-actions { justify-content: center; }
  .check-list { max-width: 560px; margin-inline: auto; text-align: left; }
  .party-photos { min-height: 560px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 260px; }
  .gallery-item, .gallery-item.gallery-tall, .gallery-item:nth-child(2), .gallery-item:nth-child(3), .gallery-item.gallery-wide { grid-column: auto; grid-row: auto; }
  .gallery-item:first-child { grid-row: span 2; }
  .faq-grid { gap: 42px; }
  .faq-heading { text-align: center; }
  .faq-heading .eyebrow { justify-content: center; }
  .final-cta-inner { flex-direction: column; text-align: center; }
  .final-cta .eyebrow { justify-content: center; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .brand-copy strong { font-size: 19px; }
  .brand-mark { width: 38px; height: 38px; }
  .hero h1 { font-size: clamp(46px, 15vw, 66px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-highlights { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; }
  .hero-highlights div { padding: 0 8px; }
  .hero-highlights strong { font-size: 13px; }
  .hero-highlights span { font-size: 9px; }
  .hero-visual { min-height: 410px; }
  .photo-orbit { width: 115vw; }
  .floating-card { padding: 9px 11px; font-size: 11px; }
  .floating-card span { font-size: 18px; }
  .floating-card-a { top: 42px; }
  .floating-card-b { bottom: 35px; }
  .experience-grid { grid-template-columns: 1fr; }
  .feature-image img { min-height: 300px; }
  .feature-copy { padding: 32px 26px; }
  .party-photos { min-height: 460px; }
  .party-photo-main { inset: 20px 45px 20px 0; }
  .party-photo-small { width: 180px; height: 220px; }
  .party-badge { right: 0; padding: 12px 14px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 270px; }
  .gallery-item:first-child { grid-row: auto; }
  .gallery-cta { flex-direction: column; gap: 4px; }
  .visit-info { padding: 38px 25px; }
  .map-wrap { min-height: 430px; }
  .entrance-card { width: 140px; height: 110px; }
  .visit-actions { display: grid; }
  .visit-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
