/* ══════════════════════════════════════════════
   MAIHUE — LUXURY MOBILE BATHROOMS
   Design system: dark luxury / gold accent
   ══════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── TOKENS ── */
:root {
  --bg:          #07070A;
  --surface:     #12121A;
  --surface-2:   #1C1C28;
  --surface-3:   #222232;
  --gold:        #D4AF37;
  --gold-light:  #E8CB6A;
  --gold-dim:    rgba(212, 175, 55, 0.10);
  --gold-border: rgba(212, 175, 55, 0.28);
  --gold-glow:   rgba(212, 175, 55, 0.35);
  --text:        #F0EEE8;
  --text-muted:  #8A8A7A;
  --text-faint:  #4A4A3A;
  --white:       #FFFFFF;
  --green-wa:    #25D366;
  --green-wa-h:  #1EBA5A;

  --font-h:      'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-b:      'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm:   3px;
  --radius:      6px;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t:           0.28s;
  --t-slow:      0.55s;

  --max-w:       1240px;
  --gutter:      clamp(1.25rem, 4vw, 2.5rem);
  --section-pad: clamp(4.5rem, 9vw, 8rem);
}

/* ── BASE ── */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-h);
  line-height: 1.15;
  font-weight: 600;
}

a { color: var(--gold); text-decoration: none; transition: color var(--t) var(--ease); }
a:hover { color: var(--gold-light); }
address { font-style: normal; }
img, video { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── UTILITIES ── */
.gold-italic { color: var(--gold); font-style: italic; font-weight: 300; }

.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 300;
  text-align: center;
  letter-spacing: 0.01em;
  margin-bottom: 0.6rem;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ── SCROLL REVEAL ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════
   BUTTONS
═══════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-b);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition:
    background var(--t) var(--ease),
    color var(--t) var(--ease),
    box-shadow var(--t) var(--ease),
    transform var(--t) var(--ease),
    border-color var(--t) var(--ease),
    letter-spacing var(--t) var(--ease);
}

.btn--whatsapp {
  background: var(--green-wa);
  color: var(--white);
  box-shadow:
    0 4px 18px rgba(37, 211, 102, 0.30),
    0 0   40px rgba(37, 211, 102, 0.10);
  animation: pulseWA 2.8s ease-in-out infinite;
}
.btn--whatsapp:hover {
  background: var(--green-wa-h);
  color: var(--white);
  animation: none;
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 8px 32px  rgba(37, 211, 102, 0.55),
    0 0   60px  rgba(37, 211, 102, 0.25),
    0 0   100px rgba(37, 211, 102, 0.10);
}
.btn--whatsapp:active { transform: translateY(-1px) scale(1.00); }

@keyframes pulseWA {
  0%, 100% {
    box-shadow:
      0 4px 18px rgba(37, 211, 102, 0.30),
      0 0 0 0   rgba(37, 211, 102, 0.40);
  }
  50% {
    box-shadow:
      0 4px 18px rgba(37, 211, 102, 0.30),
      0 0 0 16px rgba(37, 211, 102, 0);
  }
}

.btn--outline {
  background: transparent;
  color: rgba(240, 238, 232, 0.85);
  border: 1px solid rgba(240, 238, 232, 0.22);
}
.btn--outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-dim);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
  z-index: 0;
}
.btn--outline > * { position: relative; z-index: 1; }
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--outline:hover::before { transform: scaleX(1); }

.btn--gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  font-size: 0.78rem;
  padding: 0.65rem 1.4rem;
}
.btn--gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
  z-index: 0;
}
.btn--gold span,
.btn--gold:not(:has(span)) { position: relative; z-index: 1; }
.btn--gold:hover {
  color: var(--bg);
  border-color: var(--gold);
  letter-spacing: 0.12em;
}
.btn--gold:hover::before { transform: scaleX(1); }

.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.78rem; }

/* ═══════════════════════════════════
   NAV
═══════════════════════════════════ */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  background: linear-gradient(to bottom, rgba(7,7,10,0.96), transparent);
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
}
.nav.scrolled {
  background: rgba(7,7,10,0.97);
  border-bottom: 1px solid rgba(212,175,55,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav__logo img { height: 38px; width: auto; object-fit: contain; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.nav__links a:not(.nav__cta) {
  position: relative;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 4px;
  transition: color var(--t) var(--ease);
}
.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.38s cubic-bezier(0.65, 0.05, 0.35, 0.95);
}
.nav__links a:not(.nav__cta):hover { color: var(--gold); }
.nav__links a:not(.nav__cta):hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.nav__cta {
  color: var(--gold) !important;
  border: 1px solid var(--gold-border) !important;
  padding: 0.48rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}
.nav__cta:hover {
  background: var(--gold-dim);
  box-shadow: 0 0 16px rgba(212,175,55,0.2);
  transform: translateY(-1px);
  color: var(--gold-light) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 36px;
  height: 36px;
}
.nav__toggle span {
  display: block;
  height: 1px;
  background: var(--text);
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
  transform-origin: center;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ═══════════════════════════════════
   STICKY CTA BAR
═══════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 190;
  background: var(--gold);
  padding: 0.8rem var(--gutter);
  transform: translateY(100%);
  transition: transform 0.48s var(--ease-spring);
  pointer-events: none;
}
.sticky-cta.visible {
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.sticky-cta__text {
  font-family: var(--font-b);
  font-size: 0.82rem;
  color: var(--bg);
  letter-spacing: 0.01em;
}
.sticky-cta__text strong { font-weight: 600; }

.sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg);
  color: var(--gold);
  padding: 0.42rem 1.1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-b);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--t) var(--ease), color var(--t) var(--ease), transform var(--t) var(--ease);
}
.sticky-cta__btn:hover {
  background: var(--surface-2);
  color: var(--gold-light);
  transform: translateY(-1px);
}

.sticky-cta__close {
  background: none;
  border: none;
  color: var(--bg);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 0.2rem;
  opacity: 0.55;
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
  flex-shrink: 0;
}
.sticky-cta__close:hover { opacity: 1; transform: scale(1.15); }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 var(--gutter);
  padding-top: 80px;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero__title {
  font-size: clamp(2.6rem, 7.5vw, 5.8rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.hero__sub {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  color: rgba(240, 238, 232, 0.55);
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 2.75rem;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  80%  { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; }
}

/* ═══════════════════════════════════
   TRUST BAR
═══════════════════════════════════ */
.trust-bar {
  overflow: hidden;
  background: var(--surface);
  border-block: 1px solid rgba(212,175,55,0.08);
  padding-block: 0.9rem;
  cursor: default;
}

.trust-bar__track {
  display: flex;
  width: max-content;
  animation: trustMarquee 46s linear infinite;
}
.trust-bar:hover .trust-bar__track { animation-play-state: paused; }

@keyframes trustMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.trust-bar__item {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  padding-inline: clamp(1.5rem, 3vw, 2.5rem);
  transition: color 0.2s ease;
}
.trust-bar__item::after {
  content: '◆';
  margin-left: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--gold);
  font-size: 0.4rem;
  opacity: 0.55;
}
.trust-bar:hover .trust-bar__item { color: var(--text); }

/* ═══════════════════════════════════
   WEDDING SECTION
═══════════════════════════════════ */
.wedding {
  padding-block: var(--section-pad);
  background: var(--surface);
}

.wedding__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.wedding__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 400;
  opacity: 0.9;
}

.wedding__title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.35rem;
}

.wedding__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 480px;
}

.wedding__stats {
  display: flex;
  gap: 0;
  margin-bottom: 2.25rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  background: var(--gold-dim);
  overflow: hidden;
}

.wedding__stat {
  flex: 1;
  padding: 1.4rem 1.75rem;
}

.wedding__stat-divider {
  width: 1px;
  background: var(--gold-border);
  flex-shrink: 0;
}

.wedding__stat-num {
  display: block;
  font-family: var(--font-h);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.wedding__stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.wedding__image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gold-border);
}

.wedding__image::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  z-index: 1;
}

.wedding__image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
  display: block;
}
.wedding__image:hover img { transform: scale(1.03); }

/* ═══════════════════════════════════
   MODULE SECTION
═══════════════════════════════════ */
.module-section {
  padding-block: var(--section-pad);
  background: var(--bg);
}

.module__showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

/* Gallery */
.module__gallery {}

.module__gallery-main {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(212,175,55,0.15);
  position: relative;
}

.module__gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), opacity 0.25s ease;
}

.module__gallery:hover .module__gallery-main img { transform: scale(1.03); }

.module__gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.module__thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  background: none;
  padding: 0;
  transition: border-color var(--t) var(--ease);
  position: relative;
}
.module__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transition: opacity 0.25s ease, transform 0.5s var(--ease);
  pointer-events: none;
}
.module__thumb:hover img { opacity: 0.75; transform: scale(1.06); }
.module__thumb:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.module__thumb.active { border-color: var(--gold); }
.module__thumb.active img { opacity: 1; }

/* Details */
.module__tag {
  display: inline-block;
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 0.3rem 0.85rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.module__name {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 0.25rem;
}

.module__specs-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  background: var(--gold-dim);
  margin: 1.5rem 0 2rem;
  overflow: hidden;
}

.module__spec {
  flex: 1;
  padding: 1.35rem 1.6rem;
}

.module__spec-divider {
  width: 1px;
  background: var(--gold-border);
  flex-shrink: 0;
}

.module__spec-num {
  display: block;
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.module__spec-label {
  display: block;
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.module__features {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.module__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.module__features li svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.module__price-box {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  margin-bottom: 1.75rem;
}

.module__price-label {
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.4rem;
}

.module__price-main {
  font-family: var(--font-h);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.module__price-main span {
  color: var(--gold);
}

.module__price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════
   INCLUDES SECTION
═══════════════════════════════════ */
.includes {
  padding-block: var(--section-pad);
  background: var(--surface);
}

.includes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
  margin-bottom: 2rem;
}

.includes__item {
  text-align: center;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1rem, 3vw, 1.75rem);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius);
  cursor: default;
  transition:
    border-color var(--t) var(--ease),
    background   var(--t) var(--ease),
    transform    var(--t-slow) var(--ease),
    box-shadow   var(--t-slow) var(--ease);
}
.includes__item:hover {
  border-color: var(--gold-border);
  background: var(--gold-dim);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(212,175,55,0.07);
}

.includes__icon {
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
}
.includes__icon svg {
  transition: transform 0.35s var(--ease), filter 0.35s var(--ease);
}
.includes__item:hover .includes__icon svg {
  transform: scale(1.22) rotate(-6deg);
  filter: drop-shadow(0 0 10px rgba(212,175,55,0.65));
}

.includes__item h3 {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
  transition: color var(--t) var(--ease);
}
.includes__item:hover h3 { color: var(--gold-light); }

.includes__item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.includes__note {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  max-width: 640px;
  margin-inline: auto;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(212,175,55,0.14);
  border-radius: var(--radius);
  background: rgba(212,175,55,0.04);
}
.includes__note svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.includes__note p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
.includes__note strong { color: var(--text); }

/* ═══════════════════════════════════
   WHY MAIHUE
═══════════════════════════════════ */
.why {
  padding-block: var(--section-pad);
  background: var(--bg);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.why__item {
  text-align: center;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1rem, 3vw, 1.75rem);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius);
  cursor: default;
  transition:
    border-color var(--t) var(--ease),
    background   var(--t) var(--ease),
    transform    var(--t-slow) var(--ease),
    box-shadow   var(--t-slow) var(--ease);
}
.why__item:hover {
  border-color: var(--gold-border);
  background: var(--gold-dim);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(212,175,55,0.07);
}

.why__icon {
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
}
.why__icon svg { transition: transform 0.35s var(--ease), filter 0.35s var(--ease); }
.why__item:hover .why__icon svg {
  transform: scale(1.22) rotate(-6deg);
  filter: drop-shadow(0 0 10px rgba(212,175,55,0.65));
}

.why__item h3 {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
  transition: color var(--t) var(--ease);
}
.why__item:hover h3 { color: var(--gold-light); }

.why__item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ═══════════════════════════════════
   GALLERY ACCENT
═══════════════════════════════════ */
.gallery-accent {
  position: relative;
  height: clamp(300px, 45vw, 540px);
  overflow: hidden;
}
.gallery-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.9s var(--ease);
}
.gallery-accent:hover img { transform: scale(1.02); }

.gallery-accent__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
}
.gallery-accent__overlay blockquote {
  font-family: var(--font-h);
  font-size: clamp(1.35rem, 3.5vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  text-align: center;
  max-width: 760px;
  padding-top: 1.5rem;
}
.gallery-accent__overlay blockquote::before {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}

/* ═══════════════════════════════════
   EVENT STRIP
═══════════════════════════════════ */
.event-strip {
  height: clamp(200px, 35vw, 400px);
  overflow: hidden;
}
.event-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.72) saturate(0.8);
}

/* ═══════════════════════════════════
   FAQ
═══════════════════════════════════ */
.faq {
  padding-block: var(--section-pad);
  background: var(--bg);
}

.faq__list {
  max-width: 780px;
  margin-inline: auto;
}

.faq__item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq__item[open] > .faq__question { color: var(--gold); }

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 0;
  font-family: var(--font-h);
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  gap: 1.25rem;
  color: var(--text);
  transition: color var(--t) var(--ease);
  user-select: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  font-family: var(--font-b);
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  display: inline-block;
  transition: transform var(--t) var(--ease), text-shadow var(--t) var(--ease);
}
.faq__item[open] > .faq__question::after {
  transform: rotate(45deg);
  text-shadow: 0 0 12px rgba(212,175,55,0.7);
}

.faq__answer {
  overflow: hidden;
  max-height: none;
  transition: max-height 0.38s var(--ease);
}
.faq__answer p {
  padding-bottom: 1.35rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
}
.faq__answer strong { color: var(--text); }

/* ═══════════════════════════════════
   CTA BAND
═══════════════════════════════════ */
.cta-band {
  background: var(--surface);
  border-top: 1px solid rgba(212,175,55,0.1);
  border-bottom: 1px solid rgba(212,175,55,0.1);
  padding-block: clamp(4rem, 8vw, 6.5rem);
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 300;
  margin-bottom: 0.75rem;
}
.cta-band p {
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  margin-bottom: 2.25rem;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer {
  background: var(--surface);
  border-top: 1px solid rgba(212,175,55,0.12);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer__brand img { max-height: 60px; width: auto; object-fit: contain; margin-bottom: 1rem; }

.footer__tagline {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.footer__desc {
  font-size: 0.82rem;
  color: var(--text-faint);
  line-height: 1.7;
  max-width: 280px;
}

.footer__nap h4,
.footer__social h4 {
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer__nap address p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
  line-height: 1.5;
}
.footer__nap address a { color: var(--text-muted); }
.footer__nap address a:hover { color: var(--gold); }

.footer__social-links {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: flex-start;
}

.footer__ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color var(--t) var(--ease), transform var(--t) var(--ease);
}
.footer__ig-link:hover { color: var(--gold); transform: translateX(3px); }

.footer__bottom {
  padding-block: 1.4rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════
   ACCESSIBILITY MODULE
═══════════════════════════════════ */
.accessibility-module {
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  background: var(--surface);
  border-top: 1px solid rgba(212,175,55,0.08);
}

.accessibility-module__inner {
  display: flex;
  gap: 0;
  align-items: stretch;
  max-width: 860px;
  margin-inline: auto;
  background: var(--surface-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
}

/* Accessibility gallery — mirrors main module gallery pattern */
.accessibility-module__gallery {
  flex-shrink: 0;
  width: clamp(160px, 26vw, 240px);
}

.accessibility-module__gallery-main {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}

.accessibility-module__gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease), opacity 0.25s ease;
}

.accessibility-module__gallery:hover .accessibility-module__gallery-main img {
  transform: scale(1.03);
}

.accessibility-module__gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
  margin: 0.3rem;
}

.accessibility-module__content {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.accessibility-module__label {
  display: inline-block;
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 0.9rem;
  align-self: flex-start;
}

.accessibility-module__title {
  font-family: var(--font-h);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.accessibility-module__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 440px;
}

/* ═══════════════════════════════════
   CONFÍAN EN NOSOTROS
═══════════════════════════════════ */
.clients {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.clients__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.clients__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
}

.clients__logo img {
  height: 60px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0.8) grayscale(1);
  transition:
    filter var(--t) var(--ease),
    transform var(--t) var(--ease);
  display: block;
}

.clients__logo img:hover {
  filter: brightness(1) grayscale(0);
  transform: scale(1.06);
}

/* ═══════════════════════════════════
   RESPONSIVE — 1100px
═══════════════════════════════════ */
@media (max-width: 1100px) {
  .module__showcase { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════
   RESPONSIVE — 900px
═══════════════════════════════════ */
@media (max-width: 900px) {
  .wedding__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .wedding__image { order: -1; }
  .wedding__image img { aspect-ratio: 16 / 9; }
  .wedding__desc { max-width: 100%; }
}

/* ═══════════════════════════════════
   RESPONSIVE — 768px
═══════════════════════════════════ */
@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    top: 70px;
    background: rgba(7,7,10,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 199;
  }
  .nav__links.open { display: flex; }
  .nav__links a:not(.nav__cta) { font-size: 1.1rem; }
  .nav__cta { font-size: 1rem !important; padding: 0.7rem 1.8rem !important; }
  .nav__toggle { display: flex; }

  .hero__title { font-size: clamp(2rem, 10vw, 3.2rem); }

  .includes__grid { grid-template-columns: 1fr; }
  .wedding__stats { flex-direction: column; gap: 0; }
  .wedding__stat-divider { width: 100%; height: 1px; }

  .why__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .footer__desc { max-width: 100%; }

  .gallery-accent__overlay blockquote { font-size: 1.2rem; }

  .sticky-cta__text { font-size: 0.78rem; text-align: center; }
}

/* ═══════════════════════════════════
   RESPONSIVE — 480px
═══════════════════════════════════ */
@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; }
  .why__grid { grid-template-columns: 1fr; }
  .cta-band .btn { width: 100%; justify-content: center; }
  .sticky-cta__inner { gap: 0.75rem; }
  .sticky-cta__text { font-size: 0.72rem; }
  .module__specs-row { flex-direction: column; }
  .module__spec-divider { width: 100%; height: 1px; }
  .module__spec { padding: 1.1rem 1.4rem; }
  .accessibility-module__inner { flex-direction: column; }
  .accessibility-module__gallery { width: 100%; }
  .accessibility-module__gallery-main { aspect-ratio: 16 / 9; }
  .clients__grid { gap: 1.5rem 2.5rem; }
  .clients__logo img { height: 44px; }
}

/* ═══════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1; transform: none; }
  .trust-bar__track { animation: none; }
  .btn--whatsapp { animation: none; }
}
