:root {
  --black: #020101;
  --black-soft: #080604;
  --black-glass: rgba(2, 1, 1, 0.72);
  --gold: #b89b61;
  --gold-bright: #f8d77d;
  --champagne: #b8b094;
  --pearl: #f5f4db;
  --white: #fffaf0;
  --blush: #d9a1ad;
  --aqua: #9cd8dd;
  --emerald: #2d5a4c;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
  --gold-glow: 0 0 24px rgba(248, 215, 125, 0.42), 0 0 64px rgba(184, 155, 97, 0.26);
  --line: rgba(245, 244, 219, 0.16);
  --radius: 8px;
  --container: 1180px;
  --header-h: 82px;
  color-scheme: dark;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
}

body {
  margin: 0;
  font-family: "Montserrat", "Poppins", Arial, sans-serif;
  color: var(--pearl);
  background:
    radial-gradient(circle at 18% 12%, rgba(184, 155, 97, 0.22), transparent 32rem),
    radial-gradient(circle at 82% 18%, rgba(217, 161, 173, 0.1), transparent 25rem),
    linear-gradient(180deg, var(--black), #0c0905 35%, var(--black));
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 1000;
  transform: translateY(-160%);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--pearl);
  padding: 0.75rem 1rem;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

#luxury-particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.section-dark,
.section-gold,
.section-pearl {
  position: relative;
  isolation: isolate;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(2, 1, 1, 0.94), rgba(8, 6, 4, 0.98)),
    var(--black);
}

.section-gold {
  background:
    radial-gradient(circle at top left, rgba(248, 215, 125, 0.18), transparent 34rem),
    linear-gradient(135deg, #0a0704, #171008 54%, #060403);
}

.section-pearl {
  color: #15100a;
  background:
    radial-gradient(circle at 18% 10%, rgba(248, 215, 125, 0.28), transparent 28rem),
    linear-gradient(180deg, #fff9e7, #f5f1da 48%, #e7dac0);
}

.section-pearl .eyebrow,
.section-pearl h2 {
  color: #130d08;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(245, 244, 219, 0.1);
  background: rgba(2, 1, 1, 0.46);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(2, 1, 1, 0.84);
  border-color: rgba(184, 155, 97, 0.28);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand img,
.footer-logo img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--gold-glow);
}

.brand strong {
  display: block;
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.98rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 0.1rem;
  color: var(--champagne);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(184, 155, 97, 0.42);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.06);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--gold-bright);
  grid-area: 1 / 1;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.primary-nav {
  position: fixed;
  inset: var(--header-h) 1rem auto 1rem;
  display: grid;
  gap: 0.15rem;
  padding: 1rem;
  border: 1px solid rgba(184, 155, 97, 0.28);
  border-radius: var(--radius);
  background: rgba(2, 1, 1, 0.92);
  box-shadow: var(--shadow);
  transform: translateY(-0.6rem);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
}

.nav-open .primary-nav {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.primary-nav a {
  border-radius: var(--radius);
  padding: 0.85rem;
  color: rgba(245, 244, 219, 0.86);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s ease, background 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: rgba(184, 155, 97, 0.14);
  color: var(--gold-bright);
  outline: none;
}

.header-cta {
  display: none;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-h) + 4rem) 1rem 4rem;
  overflow: hidden;
}

.hero-bg,
.trailer-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
  animation: kenburns 18s ease-in-out infinite alternate;
}

.hero-bg {
  background-image: url("../assets/optimized/hero.webp");
}

.hero-overlay,
.trailer-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 72% 42%, rgba(248, 215, 125, 0.24), transparent 18rem),
    linear-gradient(90deg, rgba(2, 1, 1, 0.96), rgba(2, 1, 1, 0.72) 48%, rgba(2, 1, 1, 0.34)),
    linear-gradient(180deg, rgba(2, 1, 1, 0.34), var(--black));
}

.gold-dust {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.62;
  background-image:
    radial-gradient(circle, rgba(248, 215, 125, 0.9) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(245, 244, 219, 0.62) 0 1px, transparent 1.2px);
  background-position: 0 0, 34px 50px;
  background-size: 120px 120px, 170px 170px;
  mask-image: linear-gradient(90deg, transparent, #000 38%, #000 100%);
  animation: dustMove 16s linear infinite;
}

.hero-content {
  width: min(100%, 850px);
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold-bright);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  line-height: 0.98;
}

h1 {
  max-width: 780px;
  font-size: 2.45rem;
  text-shadow: 0 0 38px rgba(248, 215, 125, 0.28);
}

h2 {
  font-size: 2.05rem;
}

h3 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1rem;
  line-height: 1.25;
}

.hero-copy,
.lead {
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-copy {
  max-width: 690px;
  margin: 1.3rem 0 0;
  color: rgba(245, 244, 219, 0.88);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.6rem 0 0;
}

.hero-badges span,
.expo-date {
  border: 1px solid rgba(248, 215, 125, 0.34);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.08);
  box-shadow: inset 0 0 22px rgba(248, 215, 125, 0.08);
  padding: 0.7rem 0.9rem;
  color: var(--pearl);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2rem;
}

.btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  font-weight: 800;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.btn::after {
  content: "";
  position: absolute;
  top: -80%;
  left: -40%;
  width: 36%;
  height: 260%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: rotate(22deg) translateX(-180%);
  transition: transform 0.65s ease;
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: rotate(22deg) translateX(430%);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  color: #120d06;
  background: linear-gradient(135deg, #f8e6a8, var(--gold-bright) 38%, #b38125 100%);
  box-shadow: var(--gold-glow), 0 12px 36px rgba(0, 0, 0, 0.32);
}

.btn-secondary {
  border-color: rgba(248, 215, 125, 0.45);
  color: var(--gold-bright);
  background: rgba(2, 1, 1, 0.42);
  backdrop-filter: blur(10px);
}

.hero-signature {
  position: absolute;
  right: 1rem;
  bottom: 1.2rem;
  color: rgba(245, 244, 219, 0.52);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.experience,
.princess,
.collections,
.journey,
.testimonials,
.expo,
.faq,
.contact {
  padding: 4.5rem 0;
}

.split {
  display: grid;
  gap: 2rem;
}

.cinema-frame {
  position: relative;
  margin: 0;
  border: 1px solid rgba(248, 215, 125, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.05);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cinema-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 52%, rgba(2, 1, 1, 0.84)),
    radial-gradient(circle at 72% 16%, rgba(248, 215, 125, 0.2), transparent 15rem);
  pointer-events: none;
}

.cinema-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transform: scale(1.01);
}

.cinema-frame figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--pearl);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.play-dot {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(248, 215, 125, 0.5);
  border-radius: 50%;
  background: rgba(248, 215, 125, 0.14);
  box-shadow: var(--gold-glow);
}

.play-dot::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 12px 0 0 16px;
  border-block: 8px solid transparent;
  border-left: 12px solid var(--gold-bright);
}

.section-copy p:not(.eyebrow):not(.lead),
.section-head p,
.timeline-card p,
.testimonial-card p,
.contact-copy p,
.footer-grid p,
.privacy-content p,
.faq-panel p {
  line-height: 1.75;
}

.section-copy .lead,
.section-head p {
  color: rgba(245, 244, 219, 0.82);
}

.section-pearl .section-head p {
  color: rgba(21, 16, 10, 0.72);
}

.benefit-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.benefit-grid article {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 64px;
  border: 1px solid rgba(248, 215, 125, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.06);
  padding: 0.85rem;
  box-shadow: inset 0 0 30px rgba(248, 215, 125, 0.04);
}

.benefit-grid span {
  color: var(--gold-bright);
  text-shadow: var(--gold-glow);
}

.section-head {
  max-width: 850px;
  margin-bottom: 2rem;
}

.carousel-shell {
  position: relative;
  z-index: 1;
}

.carousel-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto 1rem;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(248, 215, 125, 0.38);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.08);
  color: var(--gold-bright);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
  outline: none;
}

.luxury-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(245px, 78vw);
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(255, 250, 240, 0.08);
  padding: 0.6rem max(1rem, calc((100vw - var(--container)) / 2)) 1.5rem;
}

.dress-card,
.collection-card,
.testimonial-card,
.timeline-card,
.expo-card,
.contact-form,
.privacy-modal {
  border: 1px solid rgba(248, 215, 125, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 250, 240, 0.1), rgba(255, 250, 240, 0.035));
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.dress-card {
  position: relative;
  scroll-snap-align: center;
  overflow: hidden;
  min-height: 520px;
  isolation: isolate;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.dress-card::before,
.collection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 45%, rgba(2, 1, 1, 0.94));
  pointer-events: none;
}

.dress-card::after,
.collection-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  z-index: 2;
  width: 44%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: rotate(24deg) translateX(-40%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.dress-card:hover,
.dress-card:focus-within,
.collection-card:hover {
  transform: translateY(-5px);
  border-color: rgba(248, 215, 125, 0.54);
  box-shadow: var(--gold-glow), var(--shadow);
}

.dress-card:hover::after,
.dress-card:focus-within::after,
.collection-card:hover::after {
  transform: rotate(24deg) translateX(360%);
}

.dress-card img,
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.dress-card:hover img,
.collection-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.1) contrast(1.05);
}

.dress-card picture {
  position: absolute;
  inset: 0;
}

.dress-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 1rem;
}

.dress-info h3 {
  font-size: 1.08rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.68);
}

.dress-price {
  display: block;
  margin: 0.35rem 0 0.85rem;
  color: var(--gold-bright);
  font-family: "Cinzel", Georgia, serif;
  font-weight: 800;
}

.dress-info .btn {
  min-height: 44px;
  width: 100%;
  padding: 0.72rem 0.9rem;
  font-size: 0.88rem;
}

.collection-marquee {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 62vw);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  scrollbar-color: #926c21 rgba(2, 1, 1, 0.15);
  padding: 0.5rem max(1rem, calc((100vw - var(--container)) / 2)) 1.8rem;
}

.collection-card {
  position: relative;
  aspect-ratio: 3 / 4.3;
  overflow: hidden;
  scroll-snap-align: center;
  background: #0b0805;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.collection-card:nth-child(3n + 2) {
  aspect-ratio: 4 / 3;
  align-self: center;
}

.collection-card span {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  z-index: 3;
  color: var(--pearl);
  font-family: "Cinzel", Georgia, serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 1.3rem;
  top: 1rem;
  bottom: 1rem;
  width: 1px;
  background: linear-gradient(var(--gold-bright), rgba(248, 215, 125, 0.08));
  box-shadow: var(--gold-glow);
}

.timeline-card {
  position: relative;
  min-height: 170px;
  padding: 1.2rem 1.2rem 1.2rem 4rem;
}

.timeline-card > span {
  position: absolute;
  left: 0.72rem;
  top: 1.2rem;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(248, 215, 125, 0.42);
  border-radius: 50%;
  background: #110b05;
  color: var(--gold-bright);
  font-family: "Cinzel", Georgia, serif;
  font-weight: 800;
  box-shadow: var(--gold-glow);
}

.timeline-card p {
  margin-bottom: 0;
  color: rgba(245, 244, 219, 0.74);
}

.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.testimonial-card {
  min-height: 280px;
  padding: 1.25rem;
}

.avatar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(248, 215, 125, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, var(--pearl), transparent 22%),
    linear-gradient(135deg, var(--gold), #5f4212);
  color: #130d08;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 900;
  box-shadow: var(--gold-glow);
}

.stars {
  margin: 1rem 0 0.85rem;
  color: var(--gold-bright);
  letter-spacing: 0.08em;
}

.testimonial-card p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.28;
}

.testimonial-card span {
  color: var(--champagne);
  font-weight: 800;
}

.expo {
  overflow: hidden;
}

.expo-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 75% 18%, rgba(248, 215, 125, 0.26), transparent 24rem),
    radial-gradient(circle at 18% 68%, rgba(156, 216, 221, 0.1), transparent 25rem),
    linear-gradient(135deg, #050303, #160d05 52%, #030202);
}

.expo-card {
  padding: 1.5rem;
  text-align: center;
}

.expo-card .lead {
  margin-bottom: 0.7rem;
}

.expo-date {
  display: inline-flex;
  margin: 0 0 1.4rem;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1rem auto 1.4rem;
  max-width: 580px;
}

.countdown div {
  border: 1px solid rgba(248, 215, 125, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.07);
  padding: 0.9rem 0.55rem;
}

.countdown strong {
  display: block;
  color: var(--gold-bright);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1;
  text-shadow: var(--gold-glow);
}

.countdown span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(245, 244, 219, 0.74);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.trailer {
  min-height: 88svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.trailer-bg {
  background-image: url("../assets/optimized/trailer.webp");
}

.trailer-overlay {
  background:
    radial-gradient(circle at center, rgba(184, 155, 97, 0.2), transparent 28rem),
    linear-gradient(180deg, rgba(2, 1, 1, 0.34), rgba(2, 1, 1, 0.96)),
    linear-gradient(90deg, rgba(2, 1, 1, 0.82), rgba(2, 1, 1, 0.44), rgba(2, 1, 1, 0.82));
}

.trailer-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), 820px);
}

.trailer-content h2 {
  font-size: 2.4rem;
  text-shadow: var(--gold-glow);
}

.trailer-content .btn {
  margin-top: 1.4rem;
}

.accordion {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(19, 13, 8, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 16px 44px rgba(70, 42, 12, 0.12);
  overflow: hidden;
}

.faq-item button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  min-height: 64px;
  border: 0;
  background: transparent;
  color: #15100a;
  padding: 1rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  background: #15100a;
  color: var(--gold-bright);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-panel > p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 1rem;
  color: rgba(21, 16, 10, 0.72);
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-panel > p {
  padding-bottom: 1rem;
}

.contact {
  background:
    radial-gradient(circle at 80% 20%, rgba(248, 215, 125, 0.16), transparent 28rem),
    linear-gradient(180deg, #070403, #020101);
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(248, 215, 125, 0.36);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.06);
  color: var(--gold-bright);
  font-family: "Cinzel", Georgia, serif;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
  outline: none;
}

.contact-form {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
}

.contact-form label {
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(248, 215, 125, 0.28);
  border-radius: var(--radius);
  background: rgba(2, 1, 1, 0.52);
  color: var(--pearl);
  padding: 0.85rem 0.9rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form select option {
  color: #15100a;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(248, 215, 125, 0.14);
}

.contact-form .btn {
  margin-top: 0.55rem;
  border: 0;
}

.form-note {
  margin: 0;
  color: rgba(245, 244, 219, 0.64);
  font-size: 0.85rem;
}

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(248, 215, 125, 0.18);
  background: #030202;
  padding: 2.5rem 0;
}

.footer-grid {
  display: grid;
  gap: 1.25rem;
}

.footer-grid h2 {
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.2;
}

.footer-grid p {
  color: rgba(245, 244, 219, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-links a,
.footer-links button {
  border: 0;
  border-bottom: 1px solid rgba(248, 215, 125, 0.34);
  background: transparent;
  color: var(--gold-bright);
  padding: 0.2rem 0;
  cursor: pointer;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: inline-grid;
  place-items: center;
  min-width: 58px;
  height: 58px;
  border: 1px solid rgba(248, 215, 125, 0.52);
  border-radius: 999px;
  background: linear-gradient(135deg, #f8e6a8, #b89b61);
  color: #100b05;
  box-shadow: var(--gold-glow);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  animation: pulseGlow 2.4s ease-in-out infinite;
}

.promo-popup {
  position: fixed;
  right: 1rem;
  bottom: 5.3rem;
  z-index: 120;
  width: min(calc(100% - 2rem), 380px);
  border: 1px solid rgba(248, 215, 125, 0.42);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 12%, rgba(248, 215, 125, 0.22), transparent 10rem),
    rgba(2, 1, 1, 0.94);
  box-shadow: var(--gold-glow), var(--shadow);
  padding: 1.2rem;
  backdrop-filter: blur(16px);
}

.promo-popup[hidden],
.modal[hidden] {
  display: none;
}

.promo-popup h2 {
  font-size: 1.35rem;
  line-height: 1.08;
  margin-bottom: 1rem;
}

.popup-close,
.modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(248, 215, 125, 0.28);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.06);
  color: var(--gold-bright);
  cursor: pointer;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 1, 1, 0.78);
  backdrop-filter: blur(12px);
}

.privacy-modal {
  position: relative;
  z-index: 1;
  width: min(100%, 900px);
  max-height: min(86svh, 760px);
  overflow: auto;
  padding: 1.2rem;
}

.privacy-modal h2 {
  padding-right: 2.2rem;
}

.privacy-content {
  margin-top: 1rem;
  color: rgba(245, 244, 219, 0.8);
}

.privacy-content p {
  margin: 0 0 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes kenburns {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(-1.2%, -1.2%, 0);
  }
}

@keyframes dustMove {
  from {
    background-position: 0 0, 34px 50px;
  }
  to {
    background-position: 240px 180px, 254px 250px;
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: var(--gold-glow);
  }
  50% {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(248, 215, 125, 0.72), 0 0 84px rgba(184, 155, 97, 0.46);
  }
}

@media (min-width: 560px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .countdown {
    grid-template-columns: repeat(4, 1fr);
  }

  .luxury-scroll {
    grid-auto-columns: 320px;
  }

  .collection-marquee {
    grid-auto-columns: 300px;
  }
}

@media (min-width: 860px) {
  :root {
    --header-h: 92px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 0.8rem 1.5rem;
  }

  .brand img {
    width: 62px;
    height: 62px;
  }

  .brand strong {
    font-size: 1.05rem;
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.15rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .primary-nav a {
    padding: 0.7rem 0.55rem;
    font-size: 0.72rem;
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid rgba(248, 215, 125, 0.44);
    border-radius: 999px;
    background: rgba(248, 215, 125, 0.12);
    color: var(--gold-bright);
    padding: 0.7rem 1rem;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }

  .header-cta:hover,
  .header-cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--gold-glow);
    outline: none;
  }

  h1 {
    font-size: 4.65rem;
  }

  h2 {
    font-size: 3.05rem;
  }

  .hero {
    padding-inline: max(2rem, calc((100vw - var(--container)) / 2));
  }

  .experience,
  .princess,
  .collections,
  .journey,
  .testimonials,
  .expo,
  .faq,
  .contact {
    padding: 6.5rem 0;
  }

  .split,
  .contact-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 4rem;
  }

  .cinema-frame img {
    aspect-ratio: 5 / 6;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-grid article:last-child {
    grid-column: 1 / -1;
  }

  .timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .timeline::before {
    left: 8%;
    right: 8%;
    top: 2.55rem;
    bottom: auto;
    width: auto;
    height: 1px;
  }

  .timeline-card {
    padding: 5rem 1.1rem 1.2rem;
  }

  .timeline-card > span {
    left: 50%;
    transform: translateX(-50%);
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .expo-card {
    padding: 3rem;
  }

  .trailer-content h2 {
    font-size: 4.2rem;
  }

  .contact-grid {
    grid-template-columns: 0.9fr 1fr;
  }

  .contact-form {
    padding: 1.4rem;
  }

  .footer-grid {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .privacy-modal {
    padding: 2rem;
  }
}

@media (min-width: 1120px) {
  .primary-nav a {
    padding-inline: 0.72rem;
    font-size: 0.76rem;
  }

  .hero-copy,
  .lead {
    font-size: 1.15rem;
  }

  .luxury-scroll {
    grid-auto-columns: 360px;
  }

  .collection-marquee {
    grid-auto-columns: 340px;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  #luxury-particles {
    display: none;
  }
}
