/* ============================================================ */
/* LAYOUT TEMPLATE v6 — Luxury Bordered Frame                   */
/* Mirrors luxury_agency_layout.html structure, applied as      */
/* an overlay on top of the existing v3 reference palette.      */
/* ============================================================ */

:root {
  --tpl-line: #FF4DA6;
  --tpl-line-soft: rgba(255, 77, 166, 0.30);
  --tpl-line-faint: rgba(255, 77, 166, 0.12);
  --tpl-gold: #d9b876;
  --tpl-bg: #050505;
  --tpl-panel: #0d0d0d;
  --tpl-panel-2: #121212;
  --tpl-text: #f5f1f3;
  --tpl-muted: #b7aab0;
  --font-tpl-serif: 'Cormorant Garamond', 'Fraunces', 'Times New Roman', serif;
  --font-tpl-sans: 'Inter', 'Outfit', system-ui, sans-serif;
}

/* === Body framing ====================================================== */
body {
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 77, 166, 0.10), transparent 38%),
    linear-gradient(180deg, #12060d 0%, #090909 22%, #050505 100%) !important;
  color: var(--tpl-text) !important;
  font-family: var(--font-tpl-sans) !important;
}

/* === Trust ticker (acts as topbar) ===================================== */
.trust-bar {
  border-top: 1px solid var(--tpl-line) !important;
  border-bottom: 1px solid var(--tpl-line) !important;
  background: rgba(6, 6, 6, 0.92) !important;
  min-height: 38px;
  font-size: 12px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
  color: #ddd3d7 !important;
}

/* === Header / navbar =================================================== */
.header,
header.header {
  background: rgba(6, 6, 6, 0.94) !important;
  border-bottom: 1px solid rgba(217, 184, 118, 0.35) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.55) !important;
  position: fixed !important;
  top: var(--trust-bar-h, 34px) !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 100 !important;
}

.header__inner {
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  gap: 24px !important;
  min-height: 78px !important;
  padding-block: 10px !important;
}

/* Brand block: horizontal serif mark + gold subtitle on one line */
.logo {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: baseline !important;
  gap: 12px !important;
  text-decoration: none !important;
  line-height: 1 !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
  white-space: nowrap !important;
}

.logo__mark {
  font-family: var(--font-tpl-serif) !important;
  font-size: clamp(22px, 2.2vw, 30px) !important;
  font-weight: 700 !important;
  color: var(--tpl-gold) !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  background: none !important;
  -webkit-text-fill-color: var(--tpl-gold) !important;
}

.logo__sub {
  font-family: var(--font-tpl-sans) !important;
  font-size: 10px !important;
  letter-spacing: 0.34em !important;
  color: #b7aab0 !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  margin-top: 0 !important;
  white-space: nowrap !important;
  padding-left: 12px !important;
  border-left: 1px solid rgba(217, 184, 118, 0.35) !important;
}

@media (max-width: 640px) {
  .logo__sub { display: none !important; }
}

/* Nav — uppercase, letter-spaced */
.nav {
  display: flex !important;
  justify-content: center !important;
  gap: 26px !important;
}

.nav__link {
  text-transform: uppercase !important;
  letter-spacing: 0.10em !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #f1e6eb !important;
  padding: 6px 2px !important;
  border-bottom: 1px solid transparent !important;
  transition: color 0.2s, border-color 0.2s !important;
  font-family: var(--font-tpl-sans) !important;
}

.nav__link:hover,
.nav__link:focus {
  color: #ff73ad !important;
  border-bottom-color: var(--tpl-line) !important;
}

/* === Buttons ============================================================ */
.btn {
  border-radius: 2px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
  min-height: 48px !important;
  padding: 14px 26px !important;
  border: 1px solid var(--tpl-line) !important;
  font-family: var(--font-tpl-sans) !important;
  transition: 0.25s ease !important;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--rose,
.btn--gradient,
.btn--primary {
  background: linear-gradient(180deg, #ff5ea0 0%, #ea2f7f 100%) !important;
  color: #fff !important;
  border-color: var(--tpl-line) !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset, 0 6px 16px rgba(234, 47, 127, 0.25) !important;
}

.btn--rose:hover,
.btn--gradient:hover {
  filter: brightness(1.08);
}

.btn--glass,
.btn--ghost,
.btn--outline {
  background: transparent !important;
  color: var(--tpl-text) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.btn--glass:hover,
.btn--ghost:hover {
  background: rgba(255, 77, 166, 0.10) !important;
  box-shadow: 0 0 0 1px rgba(255, 77, 166, 0.25) inset !important;
}

.btn--whatsapp {
  background: #25d366 !important;
  border-color: #25d366 !important;
  color: #fff !important;
}
.btn--whatsapp:hover {
  background: #1ebe5d !important;
}

/* === Hero ============================================================== */
.hero {
  border-bottom: 1px solid var(--tpl-line) !important;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.78), rgba(4, 4, 4, 0.92)),
    radial-gradient(ellipse at 80% 30%, rgba(255, 77, 166, 0.10), transparent 55%) !important;
  padding-block: clamp(3rem, 7vw, 5.5rem) !important;
}

.hero__brand .brand-emblem__word,
.hero__title,
.hero h1 {
  font-family: var(--font-tpl-serif) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  color: #ff4f96 !important;
  font-weight: 600 !important;
  line-height: 0.92 !important;
  background: none !important;
  -webkit-text-fill-color: #ff4f96 !important;
}

.brand-emblem__sub,
.hero__eyebrow,
.section__eyebrow {
  color: var(--tpl-gold) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.28em !important;
  font-size: 12px !important;
  font-family: var(--font-tpl-sans) !important;
  font-weight: 500 !important;
}

.hero__tagline,
.brand-emblem__tagline {
  color: var(--tpl-gold) !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
}

.hero__lead {
  color: #e6dbe0 !important;
  letter-spacing: 0.06em !important;
}

/* Hero feature pills — keep but border-only */
.hero-feature {
  border: 1px solid var(--tpl-line-soft) !important;
  background: rgba(8, 8, 8, 0.6) !important;
  border-radius: 0 !important;
}

/* === Feature strip (.trust-features) =================================== */
.trust-features {
  background: rgba(8, 8, 8, 0.92) !important;
  border-top: 1px solid var(--tpl-line) !important;
  border-bottom: 1px solid var(--tpl-line) !important;
  padding: 0 !important;
}

.trust-features__grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 0 !important;
  width: min(1180px, 96vw) !important;
  margin-inline: auto !important;
}

.trust-feature {
  padding: 22px 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  min-height: 84px !important;
  border-right: 1px solid var(--tpl-line-soft) !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.trust-feature:last-child {
  border-right: 0 !important;
}

.trust-feature__icon {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  border: 1px solid var(--tpl-line) !important;
  display: grid !important;
  place-items: center !important;
  background: transparent !important;
  color: #ff4f96 !important;
  flex: 0 0 auto !important;
  padding: 0 !important;
}
.trust-feature__icon svg {
  width: 18px !important;
  height: 18px !important;
}

.trust-feature__label {
  font-size: 13px !important;
  line-height: 1.35 !important;
  color: #f0e5ea !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  font-weight: 500 !important;
}

/* === Sections =========================================================== */
.section,
section.section {
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.98), rgba(4, 4, 4, 0.98)) !important;
  border-bottom: 1px solid var(--tpl-line) !important;
  padding: clamp(3.5rem, 6vw, 4.5rem) 0 !important;
  --section-text: #f5f1f3 !important;
  --section-text-secondary: rgba(245, 241, 243, 0.78) !important;
  --section-text-muted: rgba(245, 241, 243, 0.58) !important;
  --bg-deep: #050505 !important;
  color: #f5f1f3 !important;
}

.section *,
section.section * {
  --section-text: #f5f1f3 !important;
}

.section p,
.section li,
.section dd,
.section dt,
.section blockquote,
.section .prose,
.section .lead,
.section .quote,
.section .facts-list,
.section .facts-list dt,
.section .facts-list dd {
  color: #e3d8de !important;
}

.section .prose strong,
.section p strong {
  color: #fff !important;
}

.section h3,
.section h4,
.section .quote p {
  color: #f5f1f3 !important;
}

.section blockquote,
.section .quote {
  color: #f5f1f3 !important;
  border-left: 2px solid var(--tpl-line) !important;
}

/* Section title — serif uppercase + underline flourish */
.section__title,
section h2 {
  font-family: var(--font-tpl-serif) !important;
  text-align: center !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: #f7f1f4 !important;
  font-weight: 600 !important;
  font-size: clamp(32px, 4vw, 50px) !important;
  margin: 0 auto 28px !important;
  position: relative !important;
  padding-bottom: 22px !important;
  background: none !important;
  -webkit-text-fill-color: #f7f1f4 !important;
}

.section__title::after,
section h2::after {
  content: '' !important;
  position: absolute !important;
  left: 50% !important;
  bottom: 0 !important;
  transform: translateX(-50%) !important;
  width: 110px !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, var(--tpl-line), transparent) !important;
}

.section__eyebrow,
section .label--gold {
  display: block !important;
  text-align: center !important;
  margin-bottom: 12px !important;
}

.section__sub,
section .lead {
  text-align: center !important;
  color: var(--tpl-muted) !important;
  letter-spacing: 0.04em !important;
}

/* === Companion cards =================================================== */
.companion-card {
  background: linear-gradient(180deg, #161616 0%, #0b0b0b 100%) !important;
  border: 1px solid var(--tpl-line-soft) !important;
  border-radius: 2px !important;
  overflow: hidden !important;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s !important;
  box-shadow: none !important;
}

.companion-card:hover {
  transform: translateY(-4px) !important;
  border-color: var(--tpl-line) !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--tpl-line) !important;
}

.companion-card__media {
  aspect-ratio: 4 / 5 !important;
  border-bottom: 1px solid var(--tpl-line-faint) !important;
  background: #111 !important;
}

.companion-card__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.companion-card__body {
  padding: 18px 18px 20px !important;
  text-align: center !important;
}

.companion-card__name,
.companion-card h3 {
  font-family: var(--font-tpl-serif) !important;
  font-size: 22px !important;
  letter-spacing: 0.10em !important;
  color: #ff4f96 !important;
  text-transform: uppercase !important;
  margin: 0 0 8px !important;
  font-weight: 600 !important;
  background: none !important;
  -webkit-text-fill-color: #ff4f96 !important;
}

.companion-card__meta {
  color: #ddd0d7 !important;
  font-size: 14px !important;
  margin: 0 0 12px !important;
  letter-spacing: 0.04em !important;
}

.companion-card__lead,
.companion-card p {
  color: #b7aab0 !important;
  font-size: 13px !important;
  margin: 0 0 14px !important;
}

.companion-card .btn,
.companion-card a.btn--whatsapp {
  width: 100% !important;
  min-height: 44px !important;
  font-size: 12px !important;
  padding-block: 12px !important;
}

/* Companion tags */
.companion-card__tags,
.tag-row {
  justify-content: center !important;
  margin-bottom: 12px !important;
}
.tag,
.companion-card__tag {
  border: 1px solid var(--tpl-line-soft) !important;
  background: transparent !important;
  color: #f0e5ea !important;
  border-radius: 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  font-size: 11px !important;
  padding: 3px 9px !important;
}

/* Availability badge */
.label,
.companion-card__badge {
  background: linear-gradient(180deg, #ff5ea0, #ea2f7f) !important;
  color: #fff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.10em !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  border-radius: 0 !important;
  padding: 4px 9px !important;
  border: 0 !important;
}
.label__dot {
  background: #fff !important;
}

/* === Filter row ========================================================= */
.filter-btn {
  border: 1px solid var(--tpl-line-soft) !important;
  background: transparent !important;
  color: #f0e5ea !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  font-size: 12px !important;
  padding: 10px 18px !important;
  border-radius: 0 !important;
  font-weight: 500 !important;
  transition: 0.2s ease !important;
}
.filter-btn:hover,
.filter-btn--active {
  border-color: var(--tpl-line) !important;
  background: rgba(255, 77, 166, 0.10) !important;
  color: #ff73ad !important;
}

/* === Services / USP / Why cards ======================================== */
.service-card,
.usp-card,
.step {
  border: 1px solid var(--tpl-line-soft) !important;
  border-radius: 2px !important;
  background: linear-gradient(180deg, #161616, #0b0b0b) !important;
  padding: 32px 22px !important;
  transition: 0.3s ease !important;
  box-shadow: none !important;
}

.service-card:hover,
.usp-card:hover,
.step:hover {
  border-color: var(--tpl-line) !important;
  transform: translateY(-3px);
}

.service-card__icon,
.usp-card__icon,
.step__marker {
  width: 56px !important;
  height: 56px !important;
  margin: 0 0 16px !important;
  border: 1px solid var(--tpl-line) !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  background: transparent !important;
  color: #ff4f96 !important;
  font-size: 22px !important;
  font-family: var(--font-tpl-serif) !important;
  font-weight: 600 !important;
}

.service-card h3,
.usp-card h3,
.step h3 {
  font-family: var(--font-tpl-serif) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: #ff4f96 !important;
  font-size: 18px !important;
  margin: 0 0 8px !important;
  font-weight: 600 !important;
}

.service-card p,
.usp-card p,
.step p {
  color: #ddd0d7 !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

/* === FAQ items ========================================================== */
.faq-item {
  border: 1px solid var(--tpl-line-soft) !important;
  border-radius: 2px !important;
  background: linear-gradient(180deg, #141414, #0a0a0a) !important;
  box-shadow: none !important;
  margin-bottom: 10px !important;
}
.faq-item:hover {
  border-color: var(--tpl-line) !important;
}
.faq-item summary,
.faq-item__question {
  color: #f5f1f3 !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
}

/* === Testimonials ======================================================= */
.testimonial {
  border: 1px solid var(--tpl-line-soft) !important;
  border-radius: 2px !important;
  background: linear-gradient(180deg, #141414, #0a0a0a) !important;
  box-shadow: none !important;
}

/* === About / At-a-glance card ========================================== */
.about__aside,
.glass-card {
  border: 1px solid var(--tpl-line-soft) !important;
  border-radius: 2px !important;
  background: linear-gradient(180deg, #141414, #0a0a0a) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* === Scrollwork divider — keep but recolor ============================= */
.ornament--scroll {
  color: var(--tpl-line) !important;
}
.ornament__icon,
.ornament__flourish {
  color: var(--tpl-line) !important;
}

/* === CTA banner ========================================================= */
.cta-banner {
  border-top: 1px solid var(--tpl-line) !important;
  border-bottom: 1px solid var(--tpl-line) !important;
  background:
    linear-gradient(90deg, rgba(95, 16, 48, 0.85), rgba(180, 35, 96, 0.55), rgba(9, 6, 11, 0.15)),
    radial-gradient(ellipse at 30% 50%, rgba(255, 77, 166, 0.30), transparent 65%),
    var(--tpl-bg) !important;
  padding: clamp(3rem, 6vw, 5rem) 0 !important;
  min-height: 220px !important;
}

.cta-banner__inner {
  background: transparent !important;
  border: 0 !important;
  backdrop-filter: none !important;
  padding: 0 !important;
}

.cta-banner__title,
.cta-banner h2 {
  font-family: var(--font-tpl-serif) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: #fff !important;
  background: none !important;
  -webkit-text-fill-color: #fff !important;
}
.cta-banner__title em,
.cta-banner h2 em {
  color: #ffd9ea !important;
  font-style: italic !important;
}

.cta-banner__sub,
.cta-banner p {
  color: #f5e9ef !important;
  letter-spacing: 0.04em !important;
}

/* === Footer ============================================================= */
.footer {
  background: #080808 !important;
  border-top: 1px solid var(--tpl-line) !important;
  color: #d9ccd2 !important;
}

.footer__grid {
  padding-block: 38px 0 !important;
}

.footer h4,
.footer__heading {
  text-transform: uppercase !important;
  letter-spacing: 0.10em !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  margin: 0 0 14px !important;
}

.footer a,
.footer p,
.footer li {
  color: #d9ccd2 !important;
  font-size: 14px !important;
}

.footer a:hover {
  color: #ff73ad !important;
}

.footer__bottom,
.footer__legal {
  border-top: 1px solid var(--tpl-line-soft) !important;
  padding: 14px 0 18px !important;
  font-size: 12px !important;
  color: #c5b5bd !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
}

/* === Rates banner ======================================================= */
.rates__banner,
.contact__card {
  border: 1px solid var(--tpl-line-soft) !important;
  background: linear-gradient(180deg, #141414, #0a0a0a) !important;
  border-radius: 2px !important;
}

/* === Pink gradient text override ======================================== */
.gradient-text,
.gradient-text-static {
  background: linear-gradient(90deg, #ff5ea0 0%, #ff8fbe 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

/* === Companion-card lift compatibility ================================= */
.companion-card,
.service-card,
.usp-card,
.faq-item,
.testimonial,
.step,
.glass-card,
.about__aside,
.contact__card {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

/* === Patches: top bar slimmer, normalize all nav buttons ============== */
.trust-bar {
  font-size: 11px !important;
  letter-spacing: 0.20em !important;
  min-height: 34px !important;
}
.trust-bar__item, .trust-bar a, .trust-bar span {
  font-size: 11px !important;
  letter-spacing: 0.20em !important;
}

/* All nav buttons (header CTAs) — angular, uppercase, slimmer */
.header .btn,
.header a.btn,
.nav a.btn,
.nav__cta,
.header__cta {
  border-radius: 2px !important;
  padding: 12px 20px !important;
  min-height: 42px !important;
  font-size: 12px !important;
  letter-spacing: 0.10em !important;
}

/* Force the TERMS link to look like a ghost button */
.nav a[href*="terms"],
.header a[href*="terms"],
.nav__link--terms,
a.nav__link--terms {
  border: 1px solid var(--tpl-line) !important;
  padding: 8px 16px !important;
  border-radius: 2px !important;
  background: transparent !important;
  background-image: none !important;
  text-transform: uppercase !important;
  letter-spacing: 0.10em !important;
  font-size: 12px !important;
  color: #ff73ad !important;
  box-shadow: none !important;
  -webkit-text-fill-color: #ff73ad !important;
}
.nav a[href*="terms"]:hover,
.header a[href*="terms"]:hover,
.nav__link--terms:hover,
a.nav__link--terms:hover {
  background: rgba(255, 77, 166, 0.12) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

/* Hide hamburger at desktop (existing CSS only shows it at <640 so this is safety) */
@media (min-width: 641px) {
  .nav-toggle {
    display: none !important;
  }
}

/* === Responsive ========================================================= */
@media (max-width: 1100px) {
  .trust-features__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .trust-feature {
    border-right: 0 !important;
    border-bottom: 1px solid var(--tpl-line-soft) !important;
  }
  .trust-feature:last-child {
    grid-column: 1 / -1 !important;
    border-bottom: 0 !important;
  }
}

@media (max-width: 960px) {
  .header__inner {
    gap: 14px !important;
    padding-block: 14px !important;
  }
  .logo__mark { font-size: 28px !important; }
  .logo__sub { font-size: 10px !important; letter-spacing: 0.28em !important; }
  .nav { gap: 14px !important; }
  .nav__link { font-size: 12px !important; }
}

@media (max-width: 700px) {
  .trust-features__grid {
    grid-template-columns: 1fr !important;
  }
  .trust-feature {
    justify-content: flex-start !important;
    padding-inline: 22px !important;
  }
  .nav__link {
    font-size: 13px !important;
  }
}


/* === Brand strips (hero banner dividers) ============================= */
.brand-strip {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--tpl-bg, #050505);
  border-top: 1px solid var(--tpl-line-soft);
  border-bottom: 1px solid var(--tpl-line-soft);
  overflow: hidden;
}
.brand-strip__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 960px) {
  .brand-strip__img { max-height: 360px; }
}
@media (max-width: 640px) {
  .brand-strip__img { max-height: 240px; }
}

/* === Hero brand banner (replaces rotating model slideshow) =========== */
.hero__visual--brand .hero__photo--brand {
  aspect-ratio: 5 / 3 !important;
  border-radius: 18px !important;
  background: #050505 !important;
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(217, 184, 118, 0.28),
    0 0 60px rgba(255, 77, 166, 0.18) inset;
}
.hero__visual--brand .hero__photo--brand picture,
.hero__visual--brand .hero__photo--brand .hero__brand-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero__visual--brand .hero__brand-img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transition: transform 0.8s ease;
}
.hero__visual--brand:hover .hero__brand-img {
  transform: scale(1.10);
}
.hero__visual--brand .hero__photo-ring {
  background: linear-gradient(135deg, #d9b876 0%, #FF4DA6 50%, #d9b876 100%) !important;
  opacity: 0.55 !important;
}
@media (max-width: 960px) {
  .hero__visual--brand .hero__photo--brand {
    aspect-ratio: 16 / 10 !important;
    max-width: 560px;
    margin-inline: auto;
  }
}

/* ============================================================ */
/* HERO COUTURE — Editorial cinematic luxury hero (tpl7)        */
/* ============================================================ */
.hero.hero-couture {
  position: relative !important;
  min-height: clamp(680px, 92vh, 940px) !important;
  padding: clamp(80px, 12vh, 140px) 20px clamp(80px, 10vh, 120px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  isolation: isolate;
  background: #050505 !important;
}
.hero-couture::before,
.hero-couture::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tpl-gold) 18%, var(--tpl-line) 50%, var(--tpl-gold) 82%, transparent);
  opacity: .55;
  z-index: 4;
}
.hero-couture::before { top: 0; }
.hero-couture::after  { bottom: 0; }

/* --- Backdrop layers ------------------------------------------ */
.hero-couture__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-couture__bg picture,
.hero-couture__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-couture__bg-img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.12);
  animation: heroCoutureZoom 22s ease-in-out infinite alternate;
  filter: saturate(1.05) contrast(1.04);
}
@keyframes heroCoutureZoom {
  0%   { transform: scale(1.12) translate3d(0,0,0); }
  100% { transform: scale(1.22) translate3d(-1.5%, -1%, 0); }
}
.hero-couture__bg-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.65) 0%, rgba(5,5,5,0.55) 40%, rgba(5,5,5,0.85) 100%),
    linear-gradient(90deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.20) 50%, rgba(5,5,5,0.55) 100%);
}
.hero-couture__bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.55) 75%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.hero-couture__bg-grain {
  position: absolute;
  inset: -10%;
  opacity: 0.07;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* --- Corner filigrees ----------------------------------------- */
.hero-couture__corners {
  position: absolute;
  inset: clamp(24px, 4vw, 56px);
  pointer-events: none;
  z-index: 3;
}
.hero-couture__corner {
  position: absolute;
  width: clamp(54px, 7vw, 96px);
  height: clamp(54px, 7vw, 96px);
  opacity: 0;
  filter: drop-shadow(0 0 12px rgba(217,184,118,0.35));
  animation: heroCornerFade 1.4s ease 0.3s forwards;
}
.hero-couture__corner--tl { top: 0; left: 0; }
.hero-couture__corner--tr { top: 0; right: 0; }
.hero-couture__corner--bl { bottom: 0; left: 0; }
.hero-couture__corner--br { bottom: 0; right: 0; }
@keyframes heroCornerFade {
  to { opacity: .95; }
}

/* --- Floating gilded medallions ------------------------------- */
.hero-couture__float {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: linear-gradient(135deg, rgba(13,13,13,0.85), rgba(8,8,8,0.78));
  border: 1px solid rgba(217,184,118,0.35);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 18px 50px -16px rgba(0,0,0,0.75),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 0 30px rgba(217,184,118,0.12);
  color: #f5f1f3;
  font-family: var(--font-tpl-sans);
  opacity: 0;
  animation: heroFloatIn 1.2s cubic-bezier(.2,.7,.2,1) 1.0s forwards;
}
.hero-couture__float--tr { top: clamp(110px, 16vh, 160px); right: clamp(24px, 4vw, 56px); }
.hero-couture__float--bl { bottom: clamp(110px, 14vh, 150px); left: clamp(24px, 4vw, 56px); }
.hero-couture__float-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #34d27a;
  box-shadow: 0 0 0 4px rgba(52,210,122,0.20), 0 0 12px rgba(52,210,122,0.7);
  animation: heroFloatPulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.hero-couture__float-roman {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4d97a, #d4af37 55%, #a07e1f);
  color: #1a0f04;
  font-family: var(--font-tpl-serif);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.25) inset;
}
.hero-couture__float-body { display: flex; flex-direction: column; line-height: 1.15; }
.hero-couture__float-body strong {
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; font-weight: 600;
}
.hero-couture__float-body span {
  font-size: 11px; color: #b7aab0; letter-spacing: .05em; margin-top: 2px;
}
@keyframes heroFloatIn {
  0%   { opacity: 0; transform: translateY(-8px) scale(.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes heroFloatPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(52,210,122,0.20), 0 0 12px rgba(52,210,122,0.7); }
  50%      { box-shadow: 0 0 0 8px rgba(52,210,122,0.06), 0 0 18px rgba(52,210,122,1); }
}

/* --- Centered editorial content ------------------------------- */
.hero-couture__content {
  position: relative;
  z-index: 4;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  color: #f5f1f3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Ribbon */
.hero-couture__ribbon {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  opacity: 0;
  animation: heroRiseFade 1s ease 0.2s forwards;
}
.hero-couture__ribbon-line {
  width: clamp(40px, 8vw, 90px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tpl-gold));
}
.hero-couture__ribbon-line:last-child {
  background: linear-gradient(90deg, var(--tpl-gold), transparent);
}
.hero-couture__ribbon-text {
  font-family: var(--font-tpl-sans);
  font-size: 11px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--tpl-gold);
  font-weight: 500;
}

/* Monogram crown + V */
.hero-couture__monogram {
  margin-bottom: 6px;
  opacity: 0;
  filter: drop-shadow(0 6px 22px rgba(217,184,118,0.35));
  animation: heroRiseFade 1s ease 0.35s forwards;
}

/* Foiled wordmark */
.hero-couture__wordmark {
  position: relative;
  line-height: 0.9;
  margin: 6px 0 4px;
  opacity: 0;
  animation: heroRiseFade 1.2s ease 0.5s forwards;
}
.hero-couture__wordmark-text {
  font-family: var(--font-tpl-serif);
  font-weight: 700;
  font-size: clamp(72px, 14vw, 180px);
  letter-spacing: clamp(4px, 0.8vw, 12px);
  background: linear-gradient(
    100deg,
    #c9a25a 0%,
    #f4d97a 18%,
    #fff4c7 32%,
    #f4d97a 46%,
    #c9a25a 60%,
    #f4d97a 78%,
    #c9a25a 100%
  );
  background-size: 240% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 12px 40px rgba(217,184,118,0.10);
  animation: heroFoilShift 6s ease-in-out infinite;
  display: inline-block;
}
@keyframes heroFoilShift {
  0%   { background-position:   0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position:   0% 50%; }
}

/* H1 title */
.hero-couture__title {
  font-family: var(--font-tpl-serif);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #e6dcd8;
  margin: 14px 0 6px;
  opacity: 0;
  animation: heroRiseFade 1s ease 0.7s forwards;
}
.hero-couture__title-mark {
  color: var(--tpl-gold);
  font-style: italic;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: none;
  font-family: var(--font-tpl-serif);
}

/* Tagline */
.hero-couture__tagline {
  font-family: var(--font-tpl-serif);
  font-style: italic;
  font-size: clamp(15px, 1.6vw, 19px);
  color: #d8c9c2;
  letter-spacing: .03em;
  margin: 0 0 22px;
  opacity: 0;
  animation: heroRiseFade 1s ease 0.85s forwards;
}
.hero-couture__tagline em {
  font-style: italic;
  position: relative;
  padding: 0 10px;
}
.hero-couture__tagline em + em::before {
  content: "·";
  position: absolute;
  left: -4px;
  color: var(--tpl-gold);
  font-style: normal;
}

/* Lead */
.hero-couture__lead {
  font-family: var(--font-tpl-sans);
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.7;
  color: rgba(245,241,243,0.82);
  max-width: 620px;
  margin: 0 auto 28px;
  opacity: 0;
  animation: heroRiseFade 1s ease 1.0s forwards;
}
.hero-couture__lead strong {
  color: var(--tpl-gold);
  font-weight: 600;
}

/* Trust pills */
.hero-couture__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  opacity: 0;
  animation: heroRiseFade 1s ease 1.15s forwards;
}
.hero-couture__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: rgba(13,13,13,0.55);
  border: 1px solid rgba(217,184,118,0.28);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-tpl-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #e6dcd8;
  transition: border-color .3s ease, transform .3s ease, color .3s ease;
}
.hero-couture__pill svg {
  width: 14px; height: 14px;
  color: var(--tpl-gold);
}
.hero-couture__pill:hover {
  border-color: var(--tpl-gold);
  color: #fff;
  transform: translateY(-1px);
}
.hero-couture__pill--accent {
  border-color: rgba(217,184,118,0.65);
  color: #fff;
  background: linear-gradient(135deg, rgba(217,184,118,0.12), rgba(255,77,166,0.10));
}

/* CTA buttons */
.hero-couture__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  animation: heroRiseFade 1s ease 1.3s forwards;
}
.hero-couture__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: var(--font-tpl-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, background-position .6s ease;
  cursor: pointer;
}
.hero-couture__cta--primary {
  color: #1a0f04;
  background: linear-gradient(120deg, #f4d97a 0%, #d4af37 35%, #fff4c7 50%, #d4af37 65%, #a07e1f 100%);
  background-size: 220% 100%;
  background-position: 0% 50%;
  box-shadow:
    0 18px 40px -10px rgba(217,184,118,0.55),
    0 0 0 1px rgba(255,255,255,0.4) inset,
    0 -2px 10px rgba(0,0,0,0.25) inset;
}
.hero-couture__cta--primary:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow:
    0 22px 50px -10px rgba(217,184,118,0.7),
    0 0 0 1px rgba(255,255,255,0.5) inset;
}
.hero-couture__cta--whatsapp {
  color: #fff;
  background: rgba(8,8,8,0.55);
  border: 1px solid rgba(255,77,166,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px -10px rgba(255,77,166,0.45);
}
.hero-couture__cta--whatsapp:hover {
  background: rgba(37, 211, 102, 0.95);
  border-color: rgba(37, 211, 102, 1);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(37, 211, 102, 0.55);
}
.hero-couture__cta-arrow {
  font-size: 18px;
  transition: transform .3s ease;
}
.hero-couture__cta:hover .hero-couture__cta-arrow {
  transform: translateX(4px);
}

/* Scroll cue */
.hero-couture__scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(22px, 4vh, 42px);
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: heroRiseFade 1s ease 1.5s forwards;
}
.hero-couture__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, transparent, var(--tpl-gold));
  position: relative;
  overflow: hidden;
}
.hero-couture__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, #fff4c7);
  animation: heroScrollFlow 2s ease-in-out infinite;
}
@keyframes heroScrollFlow {
  0%   { top: -50%; }
  100% { top: 100%; }
}
.hero-couture__scroll-text {
  font-family: var(--font-tpl-sans);
  font-size: 10px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--tpl-gold);
}

@keyframes heroRiseFade {
  0%   { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* --- Responsive ----------------------------------------------- */
@media (max-width: 1100px) {
  .hero-couture__float--tr { top: clamp(96px, 14vh, 130px); right: clamp(16px, 3vw, 36px); }
  .hero-couture__float--bl { bottom: clamp(96px, 12vh, 130px); left: clamp(16px, 3vw, 36px); }
}
@media (max-width: 860px) {
  .hero-couture__float { padding: 8px 12px; gap: 8px; }
  .hero-couture__float-body strong { font-size: 11px; }
  .hero-couture__float-body span { font-size: 10px; }
  .hero-couture__float-roman { width: 26px; height: 26px; font-size: 11px; }
  .hero-couture__wordmark-text { letter-spacing: 4px; }
  .hero-couture__title { font-size: 16px; letter-spacing: .2em; }
  .hero-couture__pills { gap: 8px; }
  .hero-couture__pill { font-size: 10px; padding: 7px 12px; letter-spacing: .1em; }
  .hero-couture__cta { padding: 14px 24px; font-size: 11px; letter-spacing: .16em; }
}
@media (max-width: 600px) {
  .hero-couture__float--tr,
  .hero-couture__float--bl { display: none; }
  .hero.hero-couture { padding-top: 90px; padding-bottom: 100px; }
}

/* ============================================================ */
/* HERO COUTURE — Editorial cinematic luxury hero (tpl7)        */
/* ============================================================ */
.hero.hero-couture {
  position: relative !important;
  min-height: clamp(680px, 92vh, 940px) !important;
  padding: clamp(80px, 12vh, 140px) 20px clamp(80px, 10vh, 120px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  isolation: isolate;
  background: #050505 !important;
}
.hero-couture::before,
.hero-couture::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tpl-gold) 18%, var(--tpl-line) 50%, var(--tpl-gold) 82%, transparent);
  opacity: .55;
  z-index: 4;
}
.hero-couture::before { top: 0; }
.hero-couture::after  { bottom: 0; }

/* --- Backdrop layers ------------------------------------------ */
.hero-couture__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-couture__bg picture,
.hero-couture__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-couture__bg-img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.12);
  animation: heroCoutureZoom 22s ease-in-out infinite alternate;
  filter: saturate(1.05) contrast(1.04);
}
@keyframes heroCoutureZoom {
  0%   { transform: scale(1.12) translate3d(0,0,0); }
  100% { transform: scale(1.22) translate3d(-1.5%, -1%, 0); }
}
.hero-couture__bg-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.65) 0%, rgba(5,5,5,0.55) 40%, rgba(5,5,5,0.85) 100%),
    linear-gradient(90deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.20) 50%, rgba(5,5,5,0.55) 100%);
}
.hero-couture__bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.55) 75%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.hero-couture__bg-grain {
  position: absolute;
  inset: -10%;
  opacity: 0.07;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* --- Corner filigrees ----------------------------------------- */
.hero-couture__corners {
  position: absolute;
  inset: clamp(24px, 4vw, 56px);
  pointer-events: none;
  z-index: 3;
}
.hero-couture__corner {
  position: absolute;
  width: clamp(54px, 7vw, 96px);
  height: clamp(54px, 7vw, 96px);
  opacity: 0;
  filter: drop-shadow(0 0 12px rgba(217,184,118,0.35));
  animation: heroCornerFade 1.4s ease 0.3s forwards;
}
.hero-couture__corner--tl { top: 0; left: 0; }
.hero-couture__corner--tr { top: 0; right: 0; }
.hero-couture__corner--bl { bottom: 0; left: 0; }
.hero-couture__corner--br { bottom: 0; right: 0; }
@keyframes heroCornerFade {
  to { opacity: .95; }
}

/* --- Floating gilded medallions ------------------------------- */
.hero-couture__float {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: linear-gradient(135deg, rgba(13,13,13,0.85), rgba(8,8,8,0.78));
  border: 1px solid rgba(217,184,118,0.35);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 18px 50px -16px rgba(0,0,0,0.75),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 0 30px rgba(217,184,118,0.12);
  color: #f5f1f3;
  font-family: var(--font-tpl-sans);
  opacity: 0;
  animation: heroFloatIn 1.2s cubic-bezier(.2,.7,.2,1) 1.0s forwards;
}
.hero-couture__float--tr { top: clamp(110px, 16vh, 160px); right: clamp(24px, 4vw, 56px); }
.hero-couture__float--bl { bottom: clamp(110px, 14vh, 150px); left: clamp(24px, 4vw, 56px); }
.hero-couture__float-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #34d27a;
  box-shadow: 0 0 0 4px rgba(52,210,122,0.20), 0 0 12px rgba(52,210,122,0.7);
  animation: heroFloatPulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.hero-couture__float-roman {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4d97a, #d4af37 55%, #a07e1f);
  color: #1a0f04;
  font-family: var(--font-tpl-serif);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.25) inset;
}
.hero-couture__float-body { display: flex; flex-direction: column; line-height: 1.15; }
.hero-couture__float-body strong {
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; font-weight: 600;
}
.hero-couture__float-body span {
  font-size: 11px; color: #b7aab0; letter-spacing: .05em; margin-top: 2px;
}
@keyframes heroFloatIn {
  0%   { opacity: 0; transform: translateY(-8px) scale(.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes heroFloatPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(52,210,122,0.20), 0 0 12px rgba(52,210,122,0.7); }
  50%      { box-shadow: 0 0 0 8px rgba(52,210,122,0.06), 0 0 18px rgba(52,210,122,1); }
}

/* --- Centered editorial content ------------------------------- */
.hero-couture__content {
  position: relative;
  z-index: 4;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  color: #f5f1f3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Ribbon */
.hero-couture__ribbon {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  opacity: 0;
  animation: heroRiseFade 1s ease 0.2s forwards;
}
.hero-couture__ribbon-line {
  width: clamp(40px, 8vw, 90px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tpl-gold));
}
.hero-couture__ribbon-line:last-child {
  background: linear-gradient(90deg, var(--tpl-gold), transparent);
}
.hero-couture__ribbon-text {
  font-family: var(--font-tpl-sans);
  font-size: 11px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--tpl-gold);
  font-weight: 500;
}

/* Monogram crown + V */
.hero-couture__monogram {
  margin-bottom: 6px;
  opacity: 0;
  filter: drop-shadow(0 6px 22px rgba(217,184,118,0.35));
  animation: heroRiseFade 1s ease 0.35s forwards;
}

/* Foiled wordmark */
.hero-couture__wordmark {
  position: relative;
  line-height: 0.9;
  margin: 6px 0 4px;
  opacity: 0;
  animation: heroRiseFade 1.2s ease 0.5s forwards;
}
.hero-couture__wordmark-text {
  font-family: var(--font-tpl-serif);
  font-weight: 700;
  font-size: clamp(72px, 14vw, 180px);
  letter-spacing: clamp(4px, 0.8vw, 12px);
  background: linear-gradient(
    100deg,
    #c9a25a 0%,
    #f4d97a 18%,
    #fff4c7 32%,
    #f4d97a 46%,
    #c9a25a 60%,
    #f4d97a 78%,
    #c9a25a 100%
  );
  background-size: 240% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 12px 40px rgba(217,184,118,0.10);
  animation: heroFoilShift 6s ease-in-out infinite;
  display: inline-block;
}
@keyframes heroFoilShift {
  0%   { background-position:   0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position:   0% 50%; }
}

/* H1 title */
.hero-couture__title {
  font-family: var(--font-tpl-serif);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #e6dcd8;
  margin: 14px 0 6px;
  opacity: 0;
  animation: heroRiseFade 1s ease 0.7s forwards;
}
.hero-couture__title-mark {
  color: var(--tpl-gold);
  font-style: italic;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: none;
  font-family: var(--font-tpl-serif);
}

/* Tagline */
.hero-couture__tagline {
  font-family: var(--font-tpl-serif);
  font-style: italic;
  font-size: clamp(15px, 1.6vw, 19px);
  color: #d8c9c2;
  letter-spacing: .03em;
  margin: 0 0 22px;
  opacity: 0;
  animation: heroRiseFade 1s ease 0.85s forwards;
}
.hero-couture__tagline em {
  font-style: italic;
  position: relative;
  padding: 0 10px;
}
.hero-couture__tagline em + em::before {
  content: "·";
  position: absolute;
  left: -4px;
  color: var(--tpl-gold);
  font-style: normal;
}

/* Lead */
.hero-couture__lead {
  font-family: var(--font-tpl-sans);
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.7;
  color: rgba(245,241,243,0.82);
  max-width: 620px;
  margin: 0 auto 28px;
  opacity: 0;
  animation: heroRiseFade 1s ease 1.0s forwards;
}
.hero-couture__lead strong {
  color: var(--tpl-gold);
  font-weight: 600;
}

/* Trust pills */
.hero-couture__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  opacity: 0;
  animation: heroRiseFade 1s ease 1.15s forwards;
}
.hero-couture__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: rgba(13,13,13,0.55);
  border: 1px solid rgba(217,184,118,0.28);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-tpl-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #e6dcd8;
  transition: border-color .3s ease, transform .3s ease, color .3s ease;
}
.hero-couture__pill svg {
  width: 14px; height: 14px;
  color: var(--tpl-gold);
}
.hero-couture__pill:hover {
  border-color: var(--tpl-gold);
  color: #fff;
  transform: translateY(-1px);
}
.hero-couture__pill--accent {
  border-color: rgba(217,184,118,0.65);
  color: #fff;
  background: linear-gradient(135deg, rgba(217,184,118,0.12), rgba(255,77,166,0.10));
}

/* CTA buttons */
.hero-couture__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  animation: heroRiseFade 1s ease 1.3s forwards;
}
.hero-couture__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: var(--font-tpl-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, background-position .6s ease;
  cursor: pointer;
}
.hero-couture__cta--primary {
  color: #1a0f04;
  background: linear-gradient(120deg, #f4d97a 0%, #d4af37 35%, #fff4c7 50%, #d4af37 65%, #a07e1f 100%);
  background-size: 220% 100%;
  background-position: 0% 50%;
  box-shadow:
    0 18px 40px -10px rgba(217,184,118,0.55),
    0 0 0 1px rgba(255,255,255,0.4) inset,
    0 -2px 10px rgba(0,0,0,0.25) inset;
}
.hero-couture__cta--primary:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow:
    0 22px 50px -10px rgba(217,184,118,0.7),
    0 0 0 1px rgba(255,255,255,0.5) inset;
}
.hero-couture__cta--whatsapp {
  color: #fff;
  background: rgba(8,8,8,0.55);
  border: 1px solid rgba(255,77,166,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px -10px rgba(255,77,166,0.45);
}
.hero-couture__cta--whatsapp:hover {
  background: rgba(37, 211, 102, 0.95);
  border-color: rgba(37, 211, 102, 1);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(37, 211, 102, 0.55);
}
.hero-couture__cta-arrow {
  font-size: 18px;
  transition: transform .3s ease;
}
.hero-couture__cta:hover .hero-couture__cta-arrow {
  transform: translateX(4px);
}

/* Scroll cue */
.hero-couture__scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(22px, 4vh, 42px);
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: heroRiseFade 1s ease 1.5s forwards;
}
.hero-couture__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, transparent, var(--tpl-gold));
  position: relative;
  overflow: hidden;
}
.hero-couture__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, #fff4c7);
  animation: heroScrollFlow 2s ease-in-out infinite;
}
@keyframes heroScrollFlow {
  0%   { top: -50%; }
  100% { top: 100%; }
}
.hero-couture__scroll-text {
  font-family: var(--font-tpl-sans);
  font-size: 10px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--tpl-gold);
}

@keyframes heroRiseFade {
  0%   { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* --- Responsive ----------------------------------------------- */
@media (max-width: 1100px) {
  .hero-couture__float--tr { top: clamp(96px, 14vh, 130px); right: clamp(16px, 3vw, 36px); }
  .hero-couture__float--bl { bottom: clamp(96px, 12vh, 130px); left: clamp(16px, 3vw, 36px); }
}
@media (max-width: 860px) {
  .hero-couture__float { padding: 8px 12px; gap: 8px; }
  .hero-couture__float-body strong { font-size: 11px; }
  .hero-couture__float-body span { font-size: 10px; }
  .hero-couture__float-roman { width: 26px; height: 26px; font-size: 11px; }
  .hero-couture__wordmark-text { letter-spacing: 4px; }
  .hero-couture__title { font-size: 16px; letter-spacing: .2em; }
  .hero-couture__pills { gap: 8px; }
  .hero-couture__pill { font-size: 10px; padding: 7px 12px; letter-spacing: .1em; }
  .hero-couture__cta { padding: 14px 24px; font-size: 11px; letter-spacing: .16em; }
}
@media (max-width: 600px) {
  .hero-couture__float--tr,
  .hero-couture__float--bl { display: none; }
  .hero.hero-couture { padding-top: 90px; padding-bottom: 100px; }
}


/* ============================================================ */
/* TIDY-UP PASS tpl8 — Layout stabilizers                       */
/* ============================================================ */

/* Prevent any horizontal overflow that shifts layout */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}

/* Reserve space for fixed trust-bar (34px) + header (78px) */
body {
  padding-top: calc(var(--trust-bar-h, 34px) + 78px) !important;
}

/* Kill the loading screen leftover padding on hero */
.hero.hero-couture {
  margin-top: 0 !important;
  min-height: clamp(560px, 78vh, 760px) !important;
  padding-top: clamp(56px, 8vh, 96px) !important;
  padding-bottom: clamp(56px, 8vh, 96px) !important;
}

/* Trim the giant VALERY wordmark */
.hero-couture__wordmark-text {
  font-size: clamp(52px, 10vw, 120px) !important;
  letter-spacing: clamp(3px, 0.6vw, 8px) !important;
}
.hero-couture__monogram svg { width: 92px !important; height: 48px !important; }
.hero-couture__ribbon { margin-bottom: 18px !important; }
.hero-couture__lead { margin-bottom: 20px !important; }
.hero-couture__pills { margin-bottom: 24px !important; }

/* Container symmetry — kill any left-shift */
.container {
  margin-inline: auto !important;
  width: min(1120px, calc(100% - 32px)) !important;
}

/* Force any orphaned sections we removed to zero out if HTML still has them */
.brand-strip,
.sticky-bar,
.contact-floats,
#gallery,
.hero-couture__float,
#companions-legacy {
  display: none !important;
}

/* ============================================================ */
/* WhatsApp floating action button (single, clean)              */
/* ============================================================ */
.wa-fab {
  position: fixed !important;
  bottom: 22px !important;
  right: 22px !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  color: #fff !important;
  display: grid !important;
  place-items: center !important;
  z-index: 999 !important;
  text-decoration: none !important;
  box-shadow:
    0 12px 32px -6px rgba(37, 211, 102, 0.55),
    0 4px 14px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}
.wa-fab:hover,
.wa-fab:focus-visible {
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow:
    0 18px 40px -6px rgba(37, 211, 102, 0.75),
    0 6px 18px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset !important;
}
.wa-fab svg { display: block !important; }
.wa-fab__pulse {
  position: absolute !important;
  inset: 0 !important;
  border-radius: 50% !important;
  border: 2px solid #25D366 !important;
  animation: waFabPulse 2s ease-out infinite !important;
  pointer-events: none !important;
}
@keyframes waFabPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}
@media (max-width: 600px) {
  .wa-fab { bottom: 16px !important; right: 16px !important; width: 54px !important; height: 54px !important; }
}

/* ============================================================ */
/* Softer accents — less neon-pink, more gold                   */
/* ============================================================ */
.nav__link:hover,
.nav__link:focus {
  color: var(--tpl-gold) !important;
  border-bottom-color: var(--tpl-gold) !important;
}
.nav__link.active {
  color: var(--tpl-gold) !important;
}
.trust-bar {
  border-top: 1px solid rgba(217, 184, 118, 0.35) !important;
  border-bottom: 1px solid rgba(217, 184, 118, 0.35) !important;
}

/* Metrics — replace ambiguous rotating text with static gold */
.metric__value {
  color: var(--tpl-gold) !important;
  background: none !important;
  -webkit-text-fill-color: var(--tpl-gold) !important;
}


/* ============================================================ */
/* HD hero background override — for hero-london.jpg (tpl9)     */
/* Tuned for a real photo (natural night lights) not upscaled   */
/* ============================================================ */
.hero-couture__bg-img {
  object-fit: cover !important;
  object-position: center 45% !important;
  transform: scale(1.05) !important;
  animation: heroCoutureZoomHD 28s ease-in-out infinite alternate !important;
  filter: none !important;
  image-rendering: -webkit-optimize-contrast;
}
@keyframes heroCoutureZoomHD {
  0%   { transform: scale(1.05) translate3d(0, 0, 0); }
  100% { transform: scale(1.12) translate3d(-1%, -0.6%, 0); }
}

.hero-couture__bg-veil {
  background:
    linear-gradient(180deg, rgba(5,5,8,0.55) 0%, rgba(5,5,8,0.30) 45%, rgba(5,5,8,0.78) 100%),
    linear-gradient(90deg, rgba(5,5,8,0.30) 0%, rgba(5,5,8,0.05) 50%, rgba(5,5,8,0.30) 100%) !important;
}
.hero-couture__bg-vignette {
  background: radial-gradient(ellipse at center, transparent 35%, rgba(0,0,0,0.42) 78%, rgba(0,0,0,0.72) 100%) !important;
}
.hero-couture__bg-grain { opacity: 0.04 !important; }


/* ============================================================ */
/* Silky dark hero veil (tpl10)                                 */
/* ============================================================ */
.hero-couture__bg-veil {
  background:
    linear-gradient(180deg,
      rgba(4,4,6,0.72) 0%,
      rgba(4,4,6,0.52) 30%,
      rgba(4,4,6,0.58) 65%,
      rgba(4,4,6,0.82) 100%),
    linear-gradient(120deg,
      rgba(20,10,25,0.28) 0%,
      rgba(4,4,6,0.10) 45%,
      rgba(30,20,10,0.20) 100%) !important;
  mix-blend-mode: normal !important;
}
.hero-couture__bg-vignette {
  background: radial-gradient(ellipse at center,
    rgba(0,0,0,0.05) 20%,
    rgba(0,0,0,0.35) 55%,
    rgba(0,0,0,0.68) 85%,
    rgba(0,0,0,0.85) 100%) !important;
}
.hero-couture__bg-grain { opacity: 0.05 !important; }

/* Slight tint on image itself for silk feel */
.hero-couture__bg-img {
  filter: saturate(0.92) contrast(1.03) brightness(0.86) !important;
}

/* ============================================================ */
/* Silky dark hero veil (tpl10)                                 */
/* ============================================================ */
.hero-couture__bg-veil {
  background:
    linear-gradient(180deg,
      rgba(4,4,6,0.72) 0%,
      rgba(4,4,6,0.52) 30%,
      rgba(4,4,6,0.58) 65%,
      rgba(4,4,6,0.82) 100%),
    linear-gradient(120deg,
      rgba(20,10,25,0.28) 0%,
      rgba(4,4,6,0.10) 45%,
      rgba(30,20,10,0.20) 100%) !important;
  mix-blend-mode: normal !important;
}
.hero-couture__bg-vignette {
  background: radial-gradient(ellipse at center,
    rgba(0,0,0,0.05) 20%,
    rgba(0,0,0,0.35) 55%,
    rgba(0,0,0,0.68) 85%,
    rgba(0,0,0,0.85) 100%) !important;
}
.hero-couture__bg-grain { opacity: 0.05 !important; }

/* Slight tint on image itself for silk feel */
.hero-couture__bg-img {
  filter: saturate(0.92) contrast(1.03) brightness(0.86) !important;
}
