/* ============================================================
   BLOSSOMS & BLOOM — Luxury Floral Boutique
   Design System & Global Styles
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Palette */
  --white: #ffffff;
  --ink: #111111;
  --ink-soft: #3a3a3a;
  --muted: #6b6b6b;
  --gold: #d4af37;
  --gold-deep: #b8941f;
  --pink: #f8edeb;
  --cream: #faf8f6;
  --grey: #f5f5f5;
  --line: #ececec;
  --wa: #25d366;
  --wa-deep: #1da851;

  /* Typography */
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Fluid type scale */
  --fs-hero: clamp(2.6rem, 6.2vw, 6rem);
  --fs-h1: clamp(2.2rem, 5vw, 4rem);
  --fs-h2: clamp(1.9rem, 3.6vw, 3rem);
  --fs-h3: clamp(1.3rem, 2.2vw, 1.85rem);
  --fs-lead: clamp(1.05rem, 1.4vw, 1.3rem);
  --fs-body: clamp(0.98rem, 1vw, 1.05rem);
  --fs-small: clamp(0.78rem, 0.85vw, 0.9rem);
  --fs-eyebrow: clamp(0.7rem, 0.8vw, 0.8rem);

  /* Spacing */
  --space-section: clamp(4.5rem, 9vw, 9rem);
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --radius: 4px;
  --radius-lg: 14px;
  --radius-pill: 999px;

  /* Effects */
  --shadow-sm: 0 4px 18px rgba(17, 17, 17, 0.06);
  --shadow-md: 0 18px 50px rgba(17, 17, 17, 0.1);
  --shadow-lg: 0 30px 80px rgba(17, 17, 17, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.25s;
  --t: 0.45s;
  --t-slow: 0.8s;

  --maxw: 1480px;
  --header-h: 86px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* clip (not hidden) so horizontal overflow is contained WITHOUT breaking position:sticky */
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; }

::selection { background: var(--gold); color: #fff; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--space-section); }
.section--tight { padding-block: clamp(3rem, 6vw, 6rem); }
.bg-cream { background: var(--cream); }
.bg-pink { background: var(--pink); }
.bg-grey { background: var(--grey); }
.bg-ink { background: var(--ink); color: #fff; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Section heading kit ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow--center::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--fs-h2); margin: 1rem 0 1rem; }
.section-head p { color: var(--muted); font-size: var(--fs-lead); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink);
  --fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
  background: var(--bg);
  border-radius: var(--radius-pill);
  overflow: hidden;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  isolation: isolate;
  will-change: transform;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform var(--t) var(--ease);
  z-index: -1;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: #fff; }
.btn:hover::before { transform: translateY(0); }
.btn:active { transform: translateY(-1px) scale(0.99); }

.btn--ghost { --bg: transparent; --fg: var(--ink); border: 1px solid rgba(17,17,17,0.25); }
.btn--ghost:hover { border-color: var(--gold); }
.btn--light { --bg: transparent; --fg: #fff; border: 1px solid rgba(255,255,255,0.5); }
.btn--gold { --bg: var(--gold); --fg: #fff; }
.btn--gold::before { background: var(--ink); }

.btn--wa { --bg: var(--wa); --fg: #fff; }
.btn--wa::before { background: var(--wa-deep); }
.btn--wa:hover { color: #fff; }

.btn--sm { padding: 0.7rem 1.4rem; }
.btn--block { width: 100%; }

/* Ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255, 255, 255, 0.45);
  animation: ripple 0.6s linear;
  pointer-events: none;
  z-index: 0;
}
@keyframes ripple { to { transform: scale(3.5); opacity: 0; } }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: var(--fs-small);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.text-link svg { transition: transform var(--t-fast) var(--ease); }
.text-link:hover svg { transform: translateX(5px); }
.text-link::after {
  content: "";
  position: absolute;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease), height var(--t) var(--ease);
  height: var(--header-h);
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo { display: inline-flex; align-items: center; line-height: 0; }
.logo__img {
  height: clamp(52px, 5vw, 64px);
  width: auto; display: block;
  transition: height var(--t) var(--ease);
}
.logo__img--color { display: none; }
.header.is-scrolled .logo__img--white,
.header--solid .logo__img--white { display: none; }
.header.is-scrolled .logo__img--color,
.header--solid .logo__img--color { display: block; }
.header.is-scrolled .logo__img { height: 50px; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 1.8vw, 2.1rem); }
.nav__list { display: flex; align-items: center; gap: clamp(1rem, 1.8vw, 2.1rem); }
.nav__link {
  position: relative;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 0;
  transition: color var(--t-fast) var(--ease);
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t) var(--ease);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.nav__actions { display: flex; align-items: center; gap: 0.9rem; }
.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  color: #fff;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.icon-btn:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.icon-btn svg { width: 20px; height: 20px; }

.nav__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--wa);
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.nav__wa:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35); }
.nav__wa svg { width: 18px; height: 18px; }

/* Scrolled state */
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(17, 17, 17, 0.07);
  height: 70px;
}
.header.is-scrolled .logo { color: var(--ink); font-size: 1.3rem; }
.header.is-scrolled .nav__link { color: var(--ink); }
.header.is-scrolled .icon-btn { color: var(--ink); }
.header.is-scrolled .icon-btn:hover { background: var(--grey); }
.header.is-scrolled .burger span { background: var(--ink); }

/* Solid header for inner pages (no hero video) */
.header--solid {
  position: sticky;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(17,17,17,0.06);
}
.header--solid .logo,
.header--solid .nav__link,
.header--solid .icon-btn { color: var(--ink); }
.header--solid .burger span { background: var(--ink); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
}
.burger span {
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.mobile-nav.is-open ~ * .burger span,
.burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--cream);
  padding: calc(var(--header-h) + 1rem) var(--gutter) 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform var(--t) var(--ease), visibility var(--t);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); visibility: visible; }
.mobile-nav__list { display: flex; flex-direction: column; }
.mobile-nav__list a {
  font-family: var(--font-head);
  font-size: 1.6rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  opacity: 0;
  transform: translateY(14px);
}
.mobile-nav.is-open .mobile-nav__list a {
  animation: fadeUpNav var(--t) var(--ease) forwards;
}
@keyframes fadeUpNav { to { opacity: 1; transform: translateY(0); } }
.mobile-nav__footer { margin-top: auto; padding-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media video,
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17,17,17,0.55) 0%, rgba(17,17,17,0.25) 40%, rgba(17,17,17,0.65) 100%),
    radial-gradient(120% 80% at 70% 30%, rgba(212,175,55,0.18), transparent 60%);
}
.hero__inner { max-width: 880px; padding-block: clamp(7rem, 14vh, 11rem); }
.hero__eyebrow { color: var(--gold); }
.hero h1 {
  font-size: var(--fs-hero);
  margin: 1.4rem 0 1.6rem;
  letter-spacing: -0.02em;
}
.hero__sub {
  font-size: var(--fs-lead);
  max-width: 620px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.4rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Scroll indicator */
.scroll-cue {
  position: absolute;
  left: 50%; bottom: 2rem;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  z-index: 2;
}
.scroll-cue__line {
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.4);
  position: relative; overflow: hidden;
}
.scroll-cue__line::after {
  content: "";
  position: absolute; top: -50%; left: 0;
  width: 100%; height: 50%;
  background: var(--gold);
  animation: scrollLine 2s var(--ease) infinite;
}
@keyframes scrollLine { 0%{top:-50%} 100%{top:100%} }

/* Floating petals */
.petals { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.petal {
  position: absolute;
  width: 18px; height: 18px;
  background: radial-gradient(circle at 30% 30%, rgba(248,237,235,0.95), rgba(212,175,55,0.5));
  border-radius: 80% 0 55% 50% / 55% 0 80% 50%;
  opacity: 0;
  animation: floatPetal linear infinite;
}
@keyframes floatPetal {
  0% { transform: translateY(-10vh) translateX(0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.6; }
  100% { transform: translateY(110vh) translateX(40px) rotate(360deg); opacity: 0; }
}

/* ============================================================
   HERO SLIDER (homepage)
   ============================================================ */
.hero-slider {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  color: #fff;
  cursor: grab;
  isolation: isolate;
}
.hero-slider.is-dragging { cursor: grabbing; }
.hero-slider__viewport { position: absolute; inset: 0; }
.hero-slider .petals { z-index: 4; }

.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 1.1s var(--ease), visibility 1.1s;
  z-index: 1;
}
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 2; }

.hero-slide__media { position: absolute; inset: 0; overflow: hidden; }
.hero-slide__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  will-change: transform;
  -webkit-user-drag: none; user-select: none;
}
.hero-slide.is-active .hero-slide__img { animation: heroKen 8s ease-out forwards; }
@keyframes heroKen { from { transform: scale(1.06); } to { transform: scale(1.17) translate(-1.5%, -1%); } }

.hero-slide__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,8,0.62) 0%, rgba(8,8,8,0.2) 42%, rgba(8,8,8,0) 68%),
    linear-gradient(180deg, rgba(8,8,8,0.34) 0%, rgba(8,8,8,0.08) 32%, rgba(8,8,8,0.55) 100%);
}

.hero-slide__content {
  position: relative; z-index: 3; height: 100%;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  /* keep the copy clear of the fixed header (top) and the slider controls (bottom) */
  padding-top: calc(var(--header-h) + 1rem);
  padding-bottom: clamp(4.5rem, 11vh, 7rem);
}
.hero-slide__inner { max-width: 600px; width: 100%; }
.hero-eyebrow { color: var(--gold); }
/* cap the headline by viewport height too, so it never grows too tall on short screens */
.hero-slide__title { font-size: min(var(--fs-hero), 8.5vh); margin: 1rem 0 1.15rem; letter-spacing: -0.02em; }

/* letter-by-letter reveal */
.hero-slide__title .word { display: inline-block; }
.hero-slide__title .char { display: inline-block; opacity: 0; transform: translateY(0.5em); filter: blur(10px); }
.hero-slide.is-active .hero-slide__title .char { animation: heroChar 0.72s var(--ease-out) forwards; }
@keyframes heroChar { to { opacity: 1; transform: none; filter: none; } }

.hero-slide__desc { font-size: var(--fs-lead); max-width: 540px; color: rgba(255,255,255,0.9); }
.hero-slide__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.hero-eyebrow, .hero-slide__desc, .hero-slide__cta { opacity: 0; transform: translateY(28px); filter: blur(6px); }
.hero-slide.is-active .hero-eyebrow { animation: heroUp 0.8s var(--ease-out) 0.1s forwards; }
.hero-slide.is-active .hero-slide__desc { animation: heroUp 0.85s var(--ease-out) 0.5s forwards; }
.hero-slide.is-active .hero-slide__cta { animation: heroUp 0.85s var(--ease-out) 0.68s forwards; }
@keyframes heroUp { to { opacity: 1; transform: none; filter: none; } }

/* Glass CTA */
.btn--glass { --bg: rgba(255,255,255,0.1); --fg: #fff; border: 1px solid rgba(255,255,255,0.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.btn--glass::before { background: rgba(255,255,255,0.22); }
.btn--glass:hover { color: #fff; box-shadow: 0 12px 34px rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.85); }

/* Arrows */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), border-color var(--t-fast);
}
.hero-arrow svg { width: 24px; height: 24px; }
.hero-arrow:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.7); }
/* both arrows paired at right-centre, clear of the left-aligned copy */
.hero-arrow--prev { right: calc(clamp(1rem, 3vw, 2.5rem) + 66px); }
.hero-arrow--next { right: clamp(1rem, 3vw, 2.5rem); }
.hero-arrow--prev:hover { transform: translateY(-50%) translateX(-3px); }
.hero-arrow--next:hover { transform: translateY(-50%) translateX(3px); }

/* Bottom nav: numbers, progress, dots */
.hero-nav {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: clamp(1.5rem, 4vh, 3rem); z-index: 5;
  display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 1.8rem);
}
.hero-nav__count { font-family: var(--font-head); font-size: 1.05rem; letter-spacing: 0.08em; white-space: nowrap; }
.hero-nav__count b { color: var(--gold); font-weight: 600; }
.hero-nav__count i { opacity: 0.5; margin: 0 0.35rem; font-style: normal; }
.hero-nav__progress { position: relative; flex: 1; min-width: 90px; max-width: 240px; height: 2px; background: rgba(255,255,255,0.3); overflow: hidden; border-radius: 2px; }
.hero-nav__progress span { position: absolute; inset: 0; background: var(--gold); transform: scaleX(0); transform-origin: left; }
.hero-nav__progress span.run { animation: heroProg var(--hero-dur, 6.5s) linear; }
@keyframes heroProg { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.hero-slider.is-paused .hero-nav__progress span.run { animation-play-state: paused; }
.hero-slider.is-paused .hero-slide.is-active .hero-slide__img { animation-play-state: paused; }
.hero-dots { display: flex; gap: 0.6rem; }
.hero-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.4); transition: width var(--t-fast) var(--ease), background var(--t-fast) var(--ease); }
.hero-dot:hover { background: rgba(255,255,255,0.75); }
.hero-dot.is-active { background: var(--gold); width: 26px; border-radius: 99px; }

@media (max-width: 700px) {
  .hero-slide__content { align-items: center; text-align: center; padding-top: calc(var(--header-h) - 0.25rem); padding-bottom: clamp(4rem, 13vh, 5.5rem); }
  .hero-slide__inner { max-width: 100%; }
  .hero-slide__desc { margin-inline: auto; font-size: 1rem; }
  .hero-slide__cta { flex-direction: column; align-items: stretch; width: min(100%, 340px); margin-inline: auto; }
  .hero-slide__cta .btn { width: 100%; }
  .hero-arrow { display: none; }
  .hero-nav { width: calc(100% - 2 * var(--gutter)); }
  .hero-nav__progress { order: 3; max-width: none; width: 100%; flex-basis: 100%; }
}

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.page-banner {
  position: relative;
  padding-block: clamp(7rem, 16vh, 11rem) clamp(3.5rem, 7vw, 6rem);
  color: #fff;
  overflow: hidden;
}
.page-banner__media { position: absolute; inset: 0; z-index: -2; }
.page-banner__media img { width: 100%; height: 100%; object-fit: cover; }
.page-banner__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.45), rgba(17,17,17,0.65));
}
.page-banner h1 { font-size: var(--fs-h1); margin: 1rem 0 0.8rem; max-width: 18ch; }
.page-banner p { max-width: 56ch; color: rgba(255,255,255,0.85); font-size: var(--fs-lead); }
.breadcrumb { font-size: var(--fs-small); color: rgba(255,255,255,0.7); margin-top: 1.2rem; }
.breadcrumb a:hover { color: var(--gold); }

/* ============================================================
   TRUST / COUNTERS
   ============================================================ */
.trust { border-block: 1px solid var(--line); }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
}
.trust__item { text-align: center; padding: 0.5rem; position: relative; }
.trust__item:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 15%; height: 70%; width: 1px; background: var(--line);
}
.trust__num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--ink);
  line-height: 1;
}
.trust__num .stars { color: var(--gold); letter-spacing: 0.1em; }
.trust__label {
  margin-top: 0.6rem;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
  font-weight: 600;
}
.trust__sub { font-size: var(--fs-small); color: var(--muted); }

/* ============================================================
   OCCASION CARDS
   ============================================================ */
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: clamp(1rem, 1.8vw, 1.6rem);
}
.occasion-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.occasion-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: -2;
  transition: transform var(--t-slow) var(--ease);
}
.occasion-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(17,17,17,0) 30%, rgba(17,17,17,0.8) 100%);
  transition: background var(--t) var(--ease);
}
.occasion-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.occasion-card:hover img { transform: scale(1.08); }
.occasion-card:hover::after { background: linear-gradient(180deg, rgba(212,175,55,0.15) 0%, rgba(17,17,17,0.85) 100%); }
.occasion-card__body { padding: clamp(1rem, 2vw, 1.6rem); color: #fff; }
.occasion-card__body h3 { font-size: var(--fs-h3); }
.occasion-card__body span {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.8);
  display: inline-flex; align-items: center; gap: 0.4rem;
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
}
.occasion-card:hover .occasion-card__body span { opacity: 1; transform: translateY(0); }

/* ============================================================
   PRODUCT / COLLECTION CARDS
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(1.4rem, 2.4vw, 2.4rem);
}
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  border: 1px solid var(--line);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.product-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.product-card:hover .product-card__media img { transform: scale(1.07); }
.product-card__tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 4;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  color: var(--ink);
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600;
  padding: 0.35rem 0.8rem; border-radius: var(--radius-pill);
}

/* ---- Product card image slider ---- */
.card-slider {
  position: absolute; inset: 0; overflow: hidden;
  cursor: grab;
  touch-action: pan-y;           /* horizontal drag handled by JS, vertical scroll stays native */
  user-select: none;
  -webkit-user-select: none;
}
.card-slider.is-dragging { cursor: grabbing; }
.card-slider__track {
  display: flex; height: 100%;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}
.card-slider__track.no-anim { transition: none; }
.card-slider__track img {
  flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;          /* let the track receive the drag, not the image */
  -webkit-user-drag: none;
  user-select: none;
}
/* keep slides steady — the slider is the interaction, not a hover-zoom */
.product-card:hover .card-slider__track img { transform: none; }
.card-slider__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.9); color: var(--ink);
  display: grid; place-items: center; z-index: 3;
  opacity: 0; transition: opacity var(--t) var(--ease), background var(--t-fast), box-shadow var(--t-fast);
  box-shadow: var(--shadow-sm);
}
.card-slider__btn svg { width: 18px; height: 18px; }
.card-slider__btn:hover { background: #fff; box-shadow: var(--shadow-md); }
.card-slider__btn--prev { left: 10px; }
.card-slider__btn--next { right: 10px; }
.product-card:hover .card-slider__btn,
.card-slider:focus-within .card-slider__btn { opacity: 1; }
.card-slider__dots {
  position: absolute; bottom: 12px; left: 0; right: 0; z-index: 3;
  display: flex; justify-content: center; gap: 6px;
}
.card-slider__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.55);
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
  transition: width var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.card-slider__dot.is-active { background: #fff; width: 20px; border-radius: 99px; }
/* On touch devices there is no hover — keep controls visible */
@media (hover: none) {
  .card-slider__btn { opacity: 0.92; }
}
.product-card.is-hidden { display: none; }
.product-card__body { padding: clamp(1.2rem, 2vw, 1.6rem); display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.product-card__body h3 { font-size: var(--fs-h3); }
.product-card__desc { color: var(--muted); font-size: var(--fs-small); flex: 1; }
.product-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 0.6rem; }
.product-card__price { font-family: var(--font-head); font-size: 1.15rem; color: var(--gold-deep); }
.product-card__price small { color: var(--muted); font-family: var(--font-body); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; display: block; }

/* ============================================================
   SIGNATURE HORIZONTAL SCROLL
   ============================================================ */
.hscroll {
  display: flex;
  gap: clamp(1rem, 2vw, 1.8rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem var(--gutter) 2rem;
  margin-inline: calc(-1 * var(--gutter));
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.hscroll { cursor: grab; }
.hscroll.is-grabbing { cursor: grabbing; scroll-snap-type: none; }
.hscroll.is-grabbing .hscroll__item { pointer-events: none; }
.hscroll::-webkit-scrollbar { height: 6px; }
.hscroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 99px; }
.hscroll::-webkit-scrollbar-track { background: var(--line); }
.hscroll__item {
  flex: 0 0 clamp(260px, 38vw, 460px);
  scroll-snap-align: center;
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
  display: flex; align-items: flex-end;
  isolation: isolate;   /* contain the z-index:-2 image so it renders above the section bg */
}
.hscroll__item img { pointer-events: none; -webkit-user-drag: none; }
.hscroll__item img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transition: transform var(--t-slow) var(--ease);
}
.hscroll__item::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, transparent 40%, rgba(17,17,17,0.82)); }
.hscroll__item:hover img { transform: scale(1.06); }
.hscroll__body { padding: clamp(1.2rem, 2.4vw, 2rem); }
.hscroll__body h3 { font-size: var(--fs-h3); margin-bottom: 0.4rem; }
.hscroll__body p { font-size: var(--fs-small); color: rgba(255,255,255,0.82); }
.hscroll-hint { font-size: var(--fs-small); color: var(--muted); display: inline-flex; gap: 0.5rem; align-items: center; margin-top: 0.5rem; }

/* ============================================================
   LATEST / FEATURED COLLECTIONS
   ============================================================ */
.fc-filters {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(0.8rem, 2vw, 2.1rem);
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}
.fc-filter {
  position: relative; padding: 0.4rem 0.15rem;
  font-size: var(--fs-small); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); transition: color 0.3s var(--ease);
}
.fc-filter::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: center;
  transition: transform 0.35s var(--ease);
}
.fc-filter:hover { color: var(--ink); }
.fc-filter:hover::after, .fc-filter.is-active::after { transform: scaleX(1); }
.fc-filter.is-active { color: var(--ink); }

.fc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 2.2vw, 2rem);
}
@media (max-width: 1024px) { .fc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px) { .fc-grid { grid-template-columns: 1fr; } }

.fc-card {
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(24px) scale(0.98); filter: blur(6px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), filter 0.5s var(--ease-out);
  will-change: opacity, transform;
}
.fc-card.is-in { opacity: 1; transform: none; filter: none; }
.fc-card.is-hidden { display: none; }

.fc-card__media {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  border-radius: 20px; isolation: isolate;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s var(--ease);
}
.fc-card__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s var(--ease), filter 0.4s var(--ease);
}
.fc-card:hover { }
.fc-card:hover .fc-card__media { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.fc-card__media { transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease); }
.fc-card:hover .fc-card__img { transform: scale(1.08) rotate(0.5deg); filter: brightness(1.05); }
.fc-card__media::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: 3; pointer-events: none;
  box-shadow: inset 0 0 0 0 rgba(212,175,55,0);
  transition: box-shadow 0.4s var(--ease);
}
.fc-card:hover .fc-card__media::after { box-shadow: inset 0 0 0 2px rgba(212,175,55,0.85); }

.fc-badges { position: absolute; top: 0.9rem; left: 0.9rem; z-index: 4; display: flex; gap: 0.4rem; }
.fc-badge { font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; padding: 0.35rem 0.7rem; border-radius: 99px; backdrop-filter: blur(4px); }
.fc-badge--new { background: var(--ink); color: #fff; }
.fc-badge--sale { background: var(--gold); color: #fff; }

.fc-card__wa {
  position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.9rem; z-index: 4;
  padding: 0.75rem 1rem; font-size: 0.72rem;
  transform: translateY(150%); opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease), box-shadow 0.3s var(--ease);
}
.fc-card:hover .fc-card__wa, .fc-card__wa:focus-visible { transform: none; opacity: 1; }
.fc-card__wa svg { transition: transform 0.3s var(--ease); }
.fc-card__wa:hover svg { transform: translateX(-3px); }
/* always show the CTA where hover isn't available or on mobile widths */
@media (hover: none), (max-width: 768px) { .fc-card__wa { transform: none; opacity: 1; } }

.fc-card__body { padding: 1rem 0.2rem 0; }
.fc-card__name { font-size: clamp(1.1rem, 1.5vw, 1.3rem); }
.fc-card__desc { font-size: var(--fs-small); color: var(--muted); margin-top: 0.25rem; }
.fc-card__price { margin-top: 0.55rem; display: flex; align-items: baseline; gap: 0.6rem; transition: transform 0.4s var(--ease); }
.fc-card:hover .fc-card__price { transform: translateY(-3px); }
.fc-card__now { font-family: var(--font-head); font-size: 1.15rem; color: var(--gold-deep); }
.fc-card__was { font-size: 0.9rem; color: var(--muted); text-decoration: line-through; }

.fc-more-wrap { text-align: center; margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.fc-more-wrap [hidden] { display: none; }

.fc-empty { text-align: center; color: var(--muted); padding: clamp(2rem, 5vw, 4rem) 0; font-size: var(--fs-lead); }
.fc-empty[hidden] { display: none; }

/* Sticky filter + search bar (shop) */
.fc-bar {
  position: sticky; top: 70px; z-index: 500;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
.fc-bar__inner { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); padding-block: 0.9rem; }
.fc-bar .fc-filters {
  margin-bottom: 0; flex: 1; justify-content: flex-start;
  flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px;
}
.fc-bar .fc-filters::-webkit-scrollbar { display: none; }
.fc-bar .fc-filter { white-space: nowrap; }

.fc-search { position: relative; flex: none; }
.fc-search__field {
  display: flex; align-items: center; gap: 0.5rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 0.55rem 0.9rem 0.55rem 1rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.fc-search__field:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.15); }
.fc-search__field > svg { width: 18px; height: 18px; color: var(--muted); flex: none; }
.fc-search__field input { border: none; outline: none; background: none; width: clamp(120px, 16vw, 210px); font-size: 0.9rem; min-width: 0; }
.fc-search__clear { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; color: var(--muted); flex: none; }
.fc-search__clear:hover { color: var(--ink); background: var(--grey); }
.fc-suggest {
  position: absolute; top: calc(100% + 8px); right: 0;
  width: min(300px, 82vw);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 0.5rem;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 30; max-height: 60vh; overflow: auto;
}
.fc-search.has-suggest .fc-suggest { opacity: 1; visibility: visible; transform: none; }
.fc-suggest__item { display: block; width: 100%; text-align: left; padding: 0.55rem 0.7rem; border-radius: var(--radius); font-size: 0.9rem; }
.fc-suggest__item:hover { background: var(--cream); }
.fc-suggest__empty { padding: 0.6rem 0.7rem; color: var(--muted); font-size: 0.85rem; }

@media (max-width: 760px) {
  .fc-bar__inner { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .fc-search__field input { width: 100%; }
  .fc-suggest { width: 100%; }
}

/* ============================================================
   FEATURE / WHY CHOOSE US
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(212,175,55,0.5); }
.feature-card__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: var(--gold-deep);
  margin-bottom: 1.2rem;
  transition: transform var(--t) var(--ease), background var(--t) var(--ease);
}
.feature-card:hover .feature-card__icon { transform: rotate(-8deg) scale(1.05); background: var(--gold); color: #fff; }
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: var(--fs-small); color: var(--muted); }

/* ============================================================
   EDITORIAL SPLIT (weddings / corporate / about)
   ============================================================ */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}
.editorial--reverse .editorial__media { order: 2; }
.editorial__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.editorial__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.editorial__media--stack { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.editorial__media--stack img:first-child { aspect-ratio: 3/4; margin-top: 2.5rem; }
.editorial__media--stack img:last-child { aspect-ratio: 3/4; }
.editorial h2 { font-size: var(--fs-h2); margin: 1rem 0 1.2rem; }
.editorial p { color: var(--muted); margin-bottom: 1.2rem; }
.editorial__list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1.4rem; margin: 1.4rem 0 2rem; }
.editorial__list li { display: flex; gap: 0.6rem; align-items: center; font-size: var(--fs-small); }
.editorial__list li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: none; }

/* ============================================================
   GALLERY (masonry)
   ============================================================ */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 2.5rem; }
.filter-btn {
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  transition: all var(--t-fast) var(--ease);
}
.filter-btn:hover { border-color: var(--gold); }
.filter-btn.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.masonry { columns: 4 240px; column-gap: clamp(0.8rem, 1.5vw, 1.4rem); }
.masonry__item {
  break-inside: avoid;
  margin-bottom: clamp(0.8rem, 1.5vw, 1.4rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}
.masonry__item img { width: 100%; transition: transform var(--t) var(--ease); }
.masonry__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(17,17,17,0.4));
  opacity: 0; transition: opacity var(--t) var(--ease);
}
.masonry__item:hover img { transform: scale(1.06); }
.masonry__item:hover::after { opacity: 1; }
.masonry__item.is-hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1500;
  background: rgba(10,10,10,0.92);
  display: grid; place-items: center;
  padding: 2rem;
  opacity: 0; visibility: hidden;
  transition: opacity var(--t) var(--ease), visibility var(--t);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(92vw, 1000px); max-height: 86vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav {
  position: absolute; color: #fff; width: 52px; height: 52px;
  display: grid; place-items: center; border-radius: 50%;
  background: rgba(255,255,255,0.1); transition: background var(--t-fast);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,0.25); }
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__nav--prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { overflow: hidden; }
.testi-track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.8rem);
  transition: transform var(--t-slow) var(--ease);
  will-change: transform;
}
.testi-card {
  flex: 0 0 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 3rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}
.testi-card__media { width: clamp(110px, 14vw, 170px); }
.testi-card__media img { aspect-ratio: 1; border-radius: var(--radius-lg); object-fit: cover; }
.testi-card__stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 0.8rem; }
.testi-card blockquote { font-family: var(--font-head); font-size: clamp(1.2rem, 2.2vw, 1.7rem); line-height: 1.4; margin-bottom: 1.2rem; }
.testi-card__name { font-weight: 600; }
.testi-card__verified { display: inline-flex; align-items: center; gap: 0.4rem; font-size: var(--fs-small); color: var(--wa-deep); margin-top: 0.2rem; }
.testi-card__verified svg { width: 16px; height: 16px; }
.testi-card__role { font-size: var(--fs-small); color: var(--muted); }
.testi-dots { display: flex; gap: 0.5rem; justify-content: center; margin-top: 2rem; }
.testi-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); transition: all var(--t-fast); }
.testi-dot.is-active { background: var(--gold); width: 28px; border-radius: 99px; }

/* ============================================================
   INSTAGRAM
   ============================================================ */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(0.5rem, 1vw, 1rem);
}
.insta-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t) var(--ease); }
.insta-item::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(212,175,55,0.35);
  opacity: 0; transition: opacity var(--t) var(--ease);
  display: grid; place-items: center;
}
.insta-item .insta-icon {
  position: absolute; inset: 0; display: grid; place-items: center; z-index: 2;
  color: #fff; opacity: 0; transform: scale(0.6); transition: all var(--t) var(--ease);
}
.insta-item:hover img { transform: scale(1.1); }
.insta-item:hover::after { opacity: 1; }
.insta-item:hover .insta-icon { opacity: 1; transform: scale(1); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.cta-band__media { position: absolute; inset: 0; z-index: -2; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__media::after { content:""; position:absolute; inset:0; background: linear-gradient(rgba(17,17,17,0.6), rgba(17,17,17,0.7)); }
.cta-band h2 { font-size: var(--fs-h1); max-width: 18ch; margin: 1rem auto 1.2rem; }
.cta-band p { max-width: 52ch; margin: 0 auto 2rem; color: rgba(255,255,255,0.85); font-size: var(--fs-lead); }
.cta-band__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--ink);
}
.faq-q__icon {
  flex: none; width: 34px; height: 34px;
  display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--line);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t);
  position: relative;
}
.faq-q__icon::before, .faq-q__icon::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px;
}
.faq-q__icon::before { width: 13px; height: 2px; }
.faq-q__icon::after { width: 2px; height: 13px; transition: transform var(--t) var(--ease); }
.faq-item.is-open .faq-q__icon { background: var(--gold); color: #fff; border-color: var(--gold); }
.faq-item.is-open .faq-q__icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t) var(--ease); }
.faq-a__inner { padding-bottom: 1.5rem; color: var(--muted); max-width: 60ch; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); }
.contact-info__row { display: flex; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.contact-info__row svg { width: 22px; height: 22px; color: var(--gold-deep); flex: none; margin-top: 3px; }
.contact-info__row h4 { font-family: var(--font-body); font-size: var(--fs-small); text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.2rem; font-weight: 600; }
.contact-info__row p, .contact-info__row a { font-size: 1.05rem; }
.contact-info__row a:hover { color: var(--gold-deep); }

.form { display: grid; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: var(--fs-small); font-weight: 600; letter-spacing: 0.04em; }
.field input, .field textarea, .field select {
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); line-height: 0; }
.map-embed iframe { width: 100%; height: 320px; border: 0; }

/* ============================================================
   TIMELINE (about)
   ============================================================ */
.timeline { position: relative; max-width: 820px; margin-inline: auto; }
.timeline::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: var(--line); transform: translateX(-50%); }
.timeline__item { position: relative; width: 50%; padding: 0 2.5rem 2.5rem; }
.timeline__item:nth-child(odd) { left: 0; text-align: right; }
.timeline__item:nth-child(even) { left: 50%; }
.timeline__dot { position: absolute; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--gold); border: 3px solid #fff; box-shadow: 0 0 0 1px var(--gold); }
.timeline__item:nth-child(odd) .timeline__dot { right: -7px; }
.timeline__item:nth-child(even) .timeline__dot { left: -7px; }
.timeline__year { font-family: var(--font-head); font-size: 1.6rem; color: var(--gold-deep); }
.timeline__item h3 { font-size: 1.15rem; margin: 0.3rem 0; }
.timeline__item p { font-size: var(--fs-small); color: var(--muted); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(1.4rem, 3vw, 2.4rem); }
.team-card__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; margin-bottom: 1rem; }
.team-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t) var(--ease); }
.team-card:hover .team-card__media img { transform: scale(1.05); }
.team-card h3 { font-size: 1.3rem; }
.team-card span { font-size: var(--fs-small); color: var(--gold-deep); text-transform: uppercase; letter-spacing: 0.1em; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding-top: clamp(3.5rem, 7vw, 6rem); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.6fr; gap: clamp(2rem, 4vw, 3.5rem); padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer__brand .logo__img { height: clamp(74px, 9vw, 94px); }
.footer__brand p { margin: 1.2rem 0 1.5rem; font-size: var(--fs-small); max-width: 32ch; }
.footer__social { display: flex; gap: 0.8rem; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); display: grid; place-items: center; color: #fff; transition: all var(--t-fast); }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__col h4 { font-family: var(--font-body); color: #fff; font-size: var(--fs-small); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.2rem; }
.footer__col ul { display: grid; gap: 0.7rem; }
.footer__col a { font-size: var(--fs-small); transition: color var(--t-fast), padding var(--t-fast); }
.footer__col a:hover { color: var(--gold); padding-left: 5px; }
.footer__news p { font-size: var(--fs-small); margin-bottom: 1rem; }
.news-form { display: flex; gap: 0.5rem; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-pill); padding: 0.35rem 0.35rem 0.35rem 1.1rem; }
.news-form input { flex: 1; background: none; border: none; color: #fff; outline: none; }
.news-form input::placeholder { color: rgba(255,255,255,0.5); }
.news-form button { background: var(--gold); color: #fff; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; flex: none; transition: transform var(--t-fast); }
.news-form button:hover { transform: scale(1.08); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.8rem; font-size: var(--fs-small); }
.footer__bottom nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer__bottom a:hover { color: var(--gold); }
.footer__pay { display: flex; gap: 0.5rem; align-items: center; opacity: 0.7; }
.footer__pay span { border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; padding: 0.2rem 0.5rem; font-size: 0.65rem; letter-spacing: 0.05em; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  z-index: 900;
  display: flex; align-items: center; gap: 0;
  background: var(--wa);
  color: #fff;
  height: 60px;
  border-radius: var(--radius-pill);
  padding: 0;
  box-shadow: 0 12px 30px rgba(37,211,102,0.45);
  overflow: hidden;
  transition: gap var(--t) var(--ease), padding var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.wa-float__icon { width: 60px; height: 60px; display: grid; place-items: center; flex: none; }
.wa-float__icon svg { width: 30px; height: 30px; }
.wa-float__label { max-width: 0; white-space: nowrap; font-weight: 600; font-size: 0.9rem; overflow: hidden; transition: max-width var(--t) var(--ease), padding var(--t) var(--ease); }
.wa-float:hover { padding-right: 1.4rem; }
.wa-float:hover .wa-float__label { max-width: 220px; padding-left: 0.2rem; }
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.5);
  animation: waPulse 2.6s ease-out infinite;
}
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Mobile sticky enquiry bar (product pages) */
.sticky-enquire {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 800;
  background: #fff; border-top: 1px solid var(--line);
  padding: 0.8rem var(--gutter);
  display: none;
  box-shadow: 0 -8px 30px rgba(17,17,17,0.08);
}

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  z-index: 1100;
  transition: width 0.1s linear;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal="left"] { transform: translateX(-46px); }
[data-reveal="right"] { transform: translateX(46px); }
[data-reveal="down"] { transform: translateY(-36px); }
[data-reveal="scale"] { transform: scale(0.9); }
[data-reveal="zoom"] { transform: scale(1.08); opacity: 0; }
[data-reveal="blur"] { filter: blur(14px); transform: translateY(20px); }
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }
[data-reveal-delay="6"] { transition-delay: 0.6s; }

/* Text reveal */
.text-reveal .word { display: inline-block; overflow: hidden; vertical-align: top; }
.text-reveal .word > span { display: inline-block; transform: translateY(110%); transition: transform 0.8s var(--ease-out); }
.text-reveal.is-visible .word > span { transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav__list { display: none; }
  .burger { display: flex; }
  .nav__wa span { display: none; }
  .nav__actions .icon-btn--search { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 860px) {
  .editorial { grid-template-columns: 1fr; }
  .editorial--reverse .editorial__media { order: 0; }
  .editorial__list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testi-card { grid-template-columns: 1fr; text-align: center; }
  .testi-card__media { width: clamp(120px, 30vw, 160px); margin-inline: auto; }
  .timeline::before { left: 8px; }
  .timeline__item { width: 100%; left: 0 !important; text-align: left !important; padding-left: 2.5rem; padding-right: 0; }
  .timeline__item .timeline__dot { left: 1px !important; right: auto !important; }
  .masonry { columns: 2 160px; }
  .sticky-enquire { display: flex; gap: 0.8rem; }
  .sticky-enquire .btn { flex: 1; }
}
@media (max-width: 600px) {
  .trust__grid { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .trust__item:nth-child(2)::after { display: none; }
  .trust__item:not(:last-child)::after { display: none; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .field--row { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .cta-band__btns { flex-direction: column; }
  .cta-band__btns .btn { width: 100%; }
}

/* ============================================================
   SHOP — INTERACTIVE DRAGGABLE LUXURY GALLERY
   ============================================================ */
.shop-hero { position: relative; overflow: hidden; }
.shop-hero__petals { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }

/* Sticky glass filter bar */
.shop-filterbar {
  position: sticky;
  top: var(--header-h);
  z-index: 500;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
.shop-filterbar__inner {
  display: flex; align-items: center; gap: 1rem;
  padding-block: 0.9rem;
}
.shop-chips {
  display: flex; gap: 0.55rem; overflow-x: auto; flex: 1;
  scrollbar-width: none; padding-bottom: 2px;
  scroll-snap-type: x proximity;
}
.shop-chips::-webkit-scrollbar { display: none; }
.shop-chip {
  flex: none;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.6);
  font-size: var(--fs-small); font-weight: 600; letter-spacing: 0.03em;
  color: var(--ink-soft); white-space: nowrap;
  transition: transform var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), color var(--t-fast);
}
.shop-chip:hover { transform: translateY(-2px) scale(1.04); border-color: var(--gold); background: var(--cream); box-shadow: 0 6px 18px rgba(212,175,55,0.18); }
.shop-chip.is-active {
  color: var(--ink); border-color: var(--gold);
  background: #fff;
  box-shadow: 0 8px 22px rgba(212,175,55,0.28), inset 0 0 0 1px var(--gold);
}

/* Search */
.shop-search { position: relative; flex: none; }
.shop-search__toggle {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; color: var(--ink);
  border: 1px solid var(--line); background: #fff;
  transition: background var(--t-fast), transform var(--t-fast);
}
.shop-search__toggle:hover { background: var(--cream); transform: scale(1.05); }
.shop-search__toggle svg { width: 19px; height: 19px; }
.shop-search__field {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 0; opacity: 0; pointer-events: none;
  display: flex; align-items: center; gap: 0.5rem;
  background: #fff; border: 1px solid var(--gold); border-radius: var(--radius-pill);
  padding: 0 0.4rem 0 1.1rem; height: 44px; overflow: hidden;
  transition: width var(--t) var(--ease), opacity var(--t) var(--ease);
  box-shadow: var(--shadow-md);
}
.shop-search.is-open .shop-search__field { width: min(78vw, 340px); opacity: 1; pointer-events: auto; }
.shop-search.is-open .shop-search__toggle { opacity: 0; pointer-events: none; }
.shop-search__field input { flex: 1; border: none; outline: none; background: none; font-size: 0.95rem; min-width: 0; }
.shop-search__field button { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: var(--muted); flex: none; }
.shop-search__field button:hover { color: var(--ink); background: var(--grey); }
.shop-suggest {
  position: absolute; right: 0; top: calc(100% + 8px);
  width: min(86vw, 340px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 0.8rem;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), visibility var(--t-fast);
  z-index: 20; max-height: 60vh; overflow: auto;
}
.shop-search.is-open .shop-suggest { opacity: 1; visibility: visible; transform: none; }
.shop-suggest h5 { font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin: 0.4rem 0.4rem 0.5rem; }
.shop-suggest__list { display: flex; flex-direction: column; }
.shop-suggest__item {
  display: flex; align-items: center; gap: 0.75rem; width: 100%;
  padding: 0.5rem 0.5rem; border-radius: var(--radius); text-align: left;
  transition: background var(--t-fast);
}
.shop-suggest__item:hover { background: var(--cream); }
.shop-suggest__item img { width: 38px; height: 38px; border-radius: 8px; object-fit: cover; flex: none; }
.shop-suggest__item span { font-size: 0.9rem; }
.shop-suggest__item small { display: block; color: var(--muted); font-size: 0.72rem; }
.shop-suggest__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0 0.4rem; }
.shop-suggest__tag { font-size: 0.75rem; padding: 0.3rem 0.7rem; border-radius: 99px; background: var(--cream); border: 1px solid var(--line); }
.shop-suggest__tag:hover { border-color: var(--gold); }
.shop-suggest__empty { padding: 0.6rem 0.4rem; color: var(--muted); font-size: 0.85rem; }

/* Gallery frame */
.shop-gallery { position: relative; padding-block: clamp(2rem, 4vw, 3.5rem) clamp(1rem, 2vw, 2rem); }
.shop-gallery__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 0.5rem; }
.shop-gallery__count { font-size: var(--fs-small); color: var(--muted); }

.hgallery {
  display: flex;
  gap: clamp(1rem, 2vw, 1.8rem);
  overflow-x: auto;
  overflow-y: hidden;
  padding: clamp(1.5rem, 3vw, 2.5rem) var(--gutter);
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  overscroll-behavior-x: contain;
}
.hgallery::-webkit-scrollbar { display: none; }
.hgallery.is-grabbing { cursor: grabbing; }
.hgallery.is-grabbing .lux-card { pointer-events: none; } /* smoother dragging */
.hgallery.has-cursor { cursor: none; }

/* Luxury product card */
.lux-card {
  position: relative;
  flex: 0 0 clamp(255px, 30vw, 380px);
  aspect-ratio: 3 / 4.1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: center;
  background: var(--grey);
  box-shadow: var(--shadow-md);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  will-change: transform;
}
.lux-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: 4; pointer-events: none;
  box-shadow: inset 0 0 0 0 rgba(212,175,55,0);
  transition: box-shadow 0.5s var(--ease);
}
.lux-card:hover, .lux-card:focus-visible { transform: translateY(-10px); box-shadow: var(--shadow-lg); outline: none; }
.lux-card:hover::after, .lux-card:focus-visible::after { box-shadow: inset 0 0 0 2px rgba(212,175,55,0.85); }

.lux-card__media { position: absolute; inset: 0; overflow: hidden; }
.lux-card__skeleton {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, #ece4da 30%, #f7f1ea 50%, #ece4da 70%);
  background-size: 220% 100%;
  animation: shimmer 1.5s infinite linear;
  transition: opacity 0.5s var(--ease);
}
.lux-card.img-loaded .lux-card__skeleton { opacity: 0; }
@keyframes shimmer { to { background-position: -220% 0; } }
.lux-card__imgwrap { position: absolute; inset: -3% -7%; z-index: 2; will-change: transform; }
.lux-card__img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.02);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  -webkit-user-drag: none; user-select: none;
}
.lux-card__img.is-loaded { opacity: 1; transform: scale(1); }
.lux-card:hover .lux-card__img { transform: scale(1.08); }
.lux-card__media::before {
  content: ""; position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(to top, rgba(17,17,17,0.86) 2%, rgba(17,17,17,0.25) 42%, rgba(17,17,17,0) 68%);
  transition: background 0.5s var(--ease);
}
.lux-card__badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 5;
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  color: var(--ink);
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(6px);
  padding: 0.4rem 0.85rem; border-radius: var(--radius-pill);
}
.lux-card__panel {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 5;
  padding: clamp(1.1rem, 2vw, 1.6rem);
  color: #fff;
}
.lux-card__name {
  font-family: var(--font-head); font-size: clamp(1.25rem, 2vw, 1.6rem); line-height: 1.1;
  transition: transform 0.5s var(--ease);
}
.lux-card:hover .lux-card__name { transform: translateY(-4px); }
.lux-card__desc, .lux-card__row {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.lux-card__desc { font-size: var(--fs-small); color: rgba(255,255,255,0.85); margin-top: 0.3rem; }
.lux-card__row { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; margin-top: 0.9rem; }
.lux-card:hover .lux-card__desc, .lux-card:focus-within .lux-card__desc,
.lux-card:hover .lux-card__row, .lux-card:focus-within .lux-card__row { opacity: 1; transform: none; }
.lux-card__price { font-family: var(--font-head); font-size: 1.1rem; color: #fff; }
.lux-card__price small { display: block; font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.lux-card__wa {
  padding: 0.6rem 1.05rem; font-size: 0.7rem;
}
.lux-card__view {
  position: absolute; top: 1rem; right: 1rem; z-index: 5;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.82); color: var(--ink);
  backdrop-filter: blur(6px);
  opacity: 0; transform: scale(0.7);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background var(--t-fast);
}
.lux-card:hover .lux-card__view { opacity: 1; transform: scale(1); }
.lux-card__view:hover { background: var(--gold); color: #fff; }
.lux-card__view svg { width: 18px; height: 18px; }
@media (hover: none) {
  .lux-card__desc, .lux-card__row, .lux-card__view { opacity: 1; transform: none; }
}
.lux-card.is-hidden { display: none; }

/* Custom drag cursor */
.hgallery-cursor {
  position: fixed; z-index: 700; top: 0; left: 0; pointer-events: none;
  padding: 0.6rem 1rem; border-radius: var(--radius-pill);
  background: rgba(17,17,17,0.9); color: #fff;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.45rem;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.25s var(--ease);
  backdrop-filter: blur(4px);
  white-space: nowrap;
}
.hgallery-cursor.is-visible { transform: translate(-50%, -50%) scale(1); }

/* Drag hint tooltip */
.drag-hint {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  z-index: 6; pointer-events: none;
  background: rgba(17,17,17,0.82); color: #fff;
  padding: 0.75rem 1.4rem; border-radius: var(--radius-pill);
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.7rem;
  box-shadow: var(--shadow-lg);
  animation: hintFloat 2.6s ease-in-out infinite;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.drag-hint.is-hidden { opacity: 0; visibility: hidden; }
@keyframes hintFloat { 0%,100% { transform: translate(-50%, -50%); } 50% { transform: translate(-50%, calc(-50% - 6px)); } }

/* Gallery nav + progress */
.hgallery-nav { display: flex; gap: 0.6rem; }
.hgallery-btn {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  display: grid; place-items: center;
  transition: background var(--t-fast), transform var(--t-fast), border-color var(--t-fast);
}
.hgallery-btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }
.hgallery-btn svg { width: 20px; height: 20px; }
.hgallery-progress {
  height: 3px; border-radius: 99px; background: var(--line);
  margin: 0.5rem var(--gutter) 0; overflow: hidden;
}
.hgallery-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-deep)); border-radius: 99px; }

/* ---- Luxury product modal ---- */
.lux-modal {
  position: fixed; inset: 0; z-index: 1600;
  display: grid; place-items: center;
  padding: clamp(0.8rem, 3vw, 2.5rem);
  background: rgba(17,17,17,0.5);
  backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.lux-modal.is-open { opacity: 1; visibility: visible; }
.lux-modal__dialog {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: min(1040px, 100%);
  max-height: 92vh; overflow: hidden;
  display: grid; grid-template-columns: 1.05fr 1fr;
  box-shadow: var(--shadow-lg);
  transform: scale(0.92) translateY(14px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.lux-modal.is-open .lux-modal__dialog { transform: none; opacity: 1; }
.lux-modal__close {
  position: absolute; top: 1rem; right: 1rem; z-index: 6;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.9); color: var(--ink);
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
  transition: background var(--t-fast), transform var(--t-fast);
}
.lux-modal__close:hover { background: var(--gold); color: #fff; transform: rotate(90deg); }
.lux-modal__media { background: var(--cream); display: flex; flex-direction: column; }
.lux-modal__main { position: relative; flex: 1; overflow: hidden; min-height: 300px; }
.lux-modal__main img { width: 100%; height: 100%; object-fit: cover; }
.lux-modal__thumbs { display: flex; gap: 0.5rem; padding: 0.8rem; }
.lux-modal__thumbs img {
  width: 60px; height: 60px; border-radius: 8px; object-fit: cover; cursor: pointer;
  border: 2px solid transparent; transition: border-color var(--t-fast), transform var(--t-fast); opacity: 0.7;
}
.lux-modal__thumbs img:hover { transform: translateY(-2px); opacity: 1; }
.lux-modal__thumbs img.is-active { border-color: var(--gold); opacity: 1; }
.lux-modal__body { padding: clamp(1.5rem, 3vw, 2.6rem); overflow-y: auto; }
.lux-modal__badge { display: inline-block; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; margin-bottom: 0.6rem; }
.lux-modal__body h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.lux-modal__price { font-family: var(--font-head); font-size: 1.3rem; color: var(--gold-deep); margin: 0.4rem 0 1rem; }
.lux-modal__body > p { color: var(--muted); margin-bottom: 1.3rem; }
.lux-modal__spec { margin-bottom: 1.1rem; }
.lux-modal__spec h4 { font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.5rem; }
.lux-modal__spec p { font-size: var(--fs-small); color: var(--muted); }
.lux-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.lux-chips span { font-size: 0.78rem; padding: 0.35rem 0.85rem; border-radius: 99px; background: var(--cream); border: 1px solid var(--line); }
.lux-dots { display: flex; gap: 0.5rem; }
.lux-dots span { width: 22px; height: 22px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.12); }
.lux-modal__wa { margin-top: 1.4rem; }

@media (max-width: 820px) {
  .lux-modal__dialog { grid-template-columns: 1fr; max-height: 90vh; overflow-y: auto; }
  .lux-modal__main { min-height: 46vw; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }
  .petals, .scroll-cue__line::after { display: none; }
  .text-reveal .word > span { transform: none; }
  .lux-card__skeleton { animation: none; }
  .drag-hint { animation: none; }
  .hgallery-cursor { display: none; }
  .hero-slide.is-active .hero-slide__img { animation: none; transform: scale(1.02); }
  .hero-slide__title .char, .hero-slide.is-active .hero-slide__title .char,
  .hero-eyebrow, .hero-slide__desc, .hero-slide__cta { opacity: 1 !important; transform: none !important; filter: none !important; animation: none !important; }
  .hero-nav__progress span { transform: scaleX(1); }
  .fc-card { opacity: 1; transform: none; filter: none; }
}
