html { scroll-behavior: smooth; }
:root {
  --bg: #FAFAF5;
  --bg-white: #FFFFFF;
  --gold: #D4AF37;
  --gold-grad: linear-gradient(120deg, #d4af37, #f1d97c);
  --text: #1f1b14;
  --muted: #5c5546;
  --shadow: 0 20px 40px rgba(0,0,0,0.08);
}
@property --rotate {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(circle at 20% 20%, rgba(212,175,55,0.08), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(241,217,124,0.06), transparent 25%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: rgba(212,175,55,0.18); color: var(--text); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Layout helpers */
.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}
.section {
  padding: 90px 0;
  position: relative;
  isolation: isolate;
}
.section::before,
.section::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(212,175,55,0.16), transparent 60%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.75;
}
.section::before { top: -40px; left: -120px; }
.section::after { bottom: -50px; right: -120px; }
.section > .container { position: relative; z-index: 1; }

/* Header */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(0,0,0,0.05);
  z-index: 30;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.12s ease-out;
}
header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 82px;
  font-weight: 500;
  letter-spacing: 0.4px;
  transition: height 0.25s ease, gap 0.25s ease, padding 0.25s ease;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  color: var(--text);
  text-decoration: none;
}
.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.12));
}
.logo-text {
  display: grid;
  gap: 4px;
  align-items: center;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.logo-tagline {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.cart-count {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--gold-grad);
  color: #2f2412;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.nav-checkbox { display: none; }
.nav-toggle {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-direction: column;
  transition-duration: 0.3s;
}
.nav-toggle .bars {
  width: 100%;
  height: 4px;
  background-color: var(--text);
  border-radius: 5px;
  transition-duration: 0.3s;
}
.nav.is-open .nav-toggle { transform: scale(1.02); }
.nav-checkbox:checked + .nav-toggle .bars { margin-left: 13px; }
.nav-checkbox:checked + .nav-toggle #bar2 {
  transform: rotate(135deg);
  margin-left: 0;
  transform-origin: center;
}
.nav-checkbox:checked + .nav-toggle #bar1 {
  transform: rotate(45deg);
  transform-origin: left center;
}
.nav-checkbox:checked + .nav-toggle #bar3 {
  transform: rotate(-45deg);
  transform-origin: left center;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold-grad);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-icon {
  min-width: 36px;
  height: 36px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.6);
  color: var(--gold);
  background: rgba(255,255,255,0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-icon::after { display: none; }
.flower-loader {
  overflow: hidden;
  position: relative;
  text-indent: -9999px;
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #e96;
  border-radius: 100%;
  -moz-box-shadow: white 0 0 15px 0, #7fb9ea -12px -12px 0 4px,
    #7fb9ea 12px -12px 0 4px, #7fb9ea 12px 12px 0 4px, #7fb9ea -12px 12px 0 4px;
  -webkit-box-shadow: white 0 0 15px 0, #7fb9ea -12px -12px 0 4px,
    #7fb9ea 12px -12px 0 4px, #7fb9ea 12px 12px 0 4px, #7fb9ea -12px 12px 0 4px;
  box-shadow: white 0 0 15px 0, #7fb9ea -12px -12px 0 4px, #7fb9ea 12px -12px 0 4px,
    #7fb9ea 12px 12px 0 4px, #7fb9ea -12px 12px 0 4px;
  -moz-animation: flower-loader 5s infinite ease-in-out;
  -webkit-animation: flower-loader 5s infinite ease-in-out;
  animation: flower-loader 5s infinite ease-in-out;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

@-moz-keyframes flower-loader {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
    -moz-box-shadow: white 0 0 15px 0, #7fb9ea -12px -12px 0 4px,
      #7fb9ea 12px -12px 0 4px, #7fb9ea 12px 12px 0 4px, #7fb9ea -12px 12px 0 4px;
    box-shadow: white 0 0 15px 0, #7fb9ea -12px -12px 0 4px, #7fb9ea 12px -12px 0 4px,
      #7fb9ea 12px 12px 0 4px, #7fb9ea -12px 12px 0 4px;
  }
  50% {
    -moz-transform: rotate(1080deg);
    transform: rotate(1080deg);
    -moz-box-shadow: white 0 0 15px 0, #7fb9ea 12px 12px 0 4px,
      #7fb9ea -12px 12px 0 4px, #7fb9ea -12px -12px 0 4px, #7fb9ea 12px -12px 0 4px;
    box-shadow: white 0 0 15px 0, #7fb9ea 12px 12px 0 4px, #7fb9ea -12px 12px 0 4px,
      #7fb9ea -12px -12px 0 4px, #7fb9ea 12px -12px 0 4px;
  }
}
@-webkit-keyframes flower-loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-box-shadow: white 0 0 15px 0, #7fb9ea -12px -12px 0 4px,
      #7fb9ea 12px -12px 0 4px, #7fb9ea 12px 12px 0 4px, #7fb9ea -12px 12px 0 4px;
    box-shadow: white 0 0 15px 0, #7fb9ea -12px -12px 0 4px, #7fb9ea 12px -12px 0 4px,
      #7fb9ea 12px 12px 0 4px, #7fb9ea -12px 12px 0 4px;
  }
  50% {
    -webkit-transform: rotate(1080deg);
    transform: rotate(1080deg);
    -webkit-box-shadow: white 0 0 15px 0, #7fb9ea 12px 12px 0 4px,
      #7fb9ea -12px 12px 0 4px, #7fb9ea -12px -12px 0 4px, #7fb9ea 12px -12px 0 4px;
    box-shadow: white 0 0 15px 0, #7fb9ea 12px 12px 0 4px, #7fb9ea -12px 12px 0 4px,
      #7fb9ea -12px -12px 0 4px, #7fb9ea 12px -12px 0 4px;
  }
}
@keyframes flower-loader {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -moz-box-shadow: white 0 0 15px 0, #7fb9ea -12px -12px 0 4px,
      #7fb9ea 12px -12px 0 4px, #7fb9ea 12px 12px 0 4px, #7fb9ea -12px 12px 0 4px;
    -webkit-box-shadow: white 0 0 15px 0, #7fb9ea -12px -12px 0 4px,
      #7fb9ea 12px -12px 0 4px, #7fb9ea 12px 12px 0 4px, #7fb9ea -12px 12px 0 4px;
    box-shadow: white 0 0 15px 0, #7fb9ea -12px -12px 0 4px, #7fb9ea 12px -12px 0 4px,
      #7fb9ea 12px 12px 0 4px, #7fb9ea -12px 12px 0 4px;
  }
  50% {
    -moz-transform: rotate(1080deg);
    -ms-transform: rotate(1080deg);
    -webkit-transform: rotate(1080deg);
    transform: rotate(1080deg);
    -moz-box-shadow: white 0 0 15px 0, #7fb9ea 12px 12px 0 4px,
      #7fb9ea -12px 12px 0 4px, #7fb9ea -12px -12px 0 4px, #7fb9ea 12px -12px 0 4px;
    -webkit-box-shadow: white 0 0 15px 0, #7fb9ea 12px 12px 0 4px,
      #7fb9ea -12px 12px 0 4px, #7fb9ea -12px -12px 0 4px, #7fb9ea 12px -12px 0 4px;
    box-shadow: white 0 0 15px 0, #7fb9ea 12px 12px 0 4px, #7fb9ea -12px 12px 0 4px,
      #7fb9ea -12px -12px 0 4px, #7fb9ea 12px -12px 0 4px;
  }
}
header.is-scrolled {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
header.is-scrolled .nav { height: 72px; gap: 18px; }
header.is-scrolled .logo img { height: 42px; }

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: clamp(40px, 8vw, 100px) 0 clamp(50px, 9vw, 120px);
  color: #111;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f7f2e5 100%);
}
.hero-headline {
  position: relative;
  z-index: 3;
  padding: 0 20px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: 1px;
  color: #111;
  text-shadow: 0 18px 36px rgba(0,0,0,0.12);
}
.hero-loop {
  position: relative;
  display: grid;
  place-items: center;
  pointer-events: auto;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}
.hero-track {
  max-width: 1220px;
  width: min(96vw, 1220px);
  margin: 0 auto;
}
.hero-track .carousel-item {
  opacity: 0.95;
}
.hero-track .carousel-item img {
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.35);
  mask-image: linear-gradient(black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(black 80%, transparent 100%);
}
.hero::before,
.hero::after { content: none; }
.hero-content {
  position: relative;
  z-index: 3;
  padding: 80px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 25px 60px rgba(0,0,0,0.28);
  backdrop-filter: blur(4px);
  text-align: left;
  max-width: 760px;
}
.eyebrow {
  letter-spacing: 4px;
  font-size: 11px;
  text-transform: uppercase;
  color: #f4e9c4;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6.5vw, 66px);
  margin: 16px 0 12px;
  font-weight: 700;
}
.hero p {
  max-width: 680px;
  margin: 0 0 18px;
  color: #efe7d6;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}
.hero-badges span {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(241,217,124,0.5);
  background: rgba(0,0,0,0.26);
  color: #f7e9c2;
  letter-spacing: 0.3px;
  font-weight: 600;
}
.hero-script {
  position: absolute;
  right: 6%;
  top: 22%;
  color: #f7e9c2;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(20px, 4vw, 28px);
  letter-spacing: 0.6px;
  max-width: 220px;
  text-align: right;
  text-shadow: 0 14px 26px rgba(0,0,0,0.34);
  z-index: 3;
}
.page-hero {
  min-height: 46vh;
  padding: clamp(32px, 6vw, 80px) 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fffaf0, #f4e3b9);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.15), rgba(212,175,55,0));
  filter: blur(60px);
  z-index: 0;
}
.page-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}
.page-hero h1 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 50px);
}
.page-hero p { margin: 0; color: var(--muted); }
.hero-script::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold-grad);
  margin: 12px 0 0 auto;
  opacity: 0.65;
  border-radius: 999px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border: 1px solid #f1d97c;
  color: #f8e9b8;
  background: transparent;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.6px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.btn:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -30%;
  width: 40%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255,255,255,0.65), rgba(255,255,255,0));
  transform: translateX(-120%) rotate(15deg);
  transition: transform 0.45s ease;
}
.btn:hover::before { transform: translateX(220%) rotate(15deg); }
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 36px;
  height: 60px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 30px;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10px;
  color: transparent;
  overflow: hidden;
  z-index: 3;
  backdrop-filter: blur(4px);
  background: rgba(0,0,0,0.12);
}
.scroll-indicator span {
  display: block;
  width: 4px;
  height: 12px;
  border-radius: 4px;
  background: #f8e9b8;
  animation: scroll 1.4s ease-in-out infinite;
}
@keyframes scroll {
  0% { transform: translateY(0); opacity: 0.9; }
  60% { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
@keyframes flower1 {
  0% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(365deg);
  }
}

@keyframes flower2 {
  0% {
    transform: rotate(35deg);
  }
  100% {
    transform: rotate(-325deg);
  }
}

@keyframes flower3 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes flower4 {
  0% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(375deg);
  }
}

@keyframes flower5 {
  0% {
    transform: rotate(25deg);
  }
  100% {
    transform: rotate(-335deg);
  }
}

@keyframes flower6 {
  0% {
    transform: rotate(30deg);
  }
  100% {
    transform: rotate(390deg);
  }
}

/* Brands */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 34px);
  margin-bottom: 14px;
  color: var(--text);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-sub {
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 32px;
}
.section-title::before {
  content: '';
  display: inline-block;
  width: 34px;
  height: 2px;
  background: var(--gold-grad);
  border-radius: 999px;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  perspective: 1200px;
}
.brand-card {
  --brand-card-height: 280px;
  position: relative;
  height: var(--brand-card-height);
  border-radius: 20px;
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: transform 0.2s ease, filter 0.3s ease;
  isolation: isolate;
  cursor: pointer;
  perspective: 1200px;
  transform-style: preserve-3d;
}
.brand-card.has-cta {
  height: auto;
  min-height: var(--brand-card-height);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.brand-shell {
  position: relative;
  width: 100%;
  height: var(--brand-card-height);
}
.brand-card:hover { filter: brightness(1.02); }
.brand-card:active { transform: scale(0.98); }
.brand-card:hover,
.brand-card.is-active { z-index: 5; }
.brand-canvas {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  gap: 0;
  grid-template-areas: "tr-1 tr-2 tr-3 tr-4 tr-5"
    "tr-6 tr-7 tr-8 tr-9 tr-10"
    "tr-11 tr-12 tr-13 tr-14 tr-15"
    "tr-16 tr-17 tr-18 tr-19 tr-20"
    "tr-21 tr-22 tr-23 tr-24 tr-25";
  perspective: 900px;
  z-index: 2;
}
.brand-tracker {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.brand-tracker:hover { cursor: pointer; }
.brand-face {
  --tx: 0deg;
  --ty: 0deg;
  --tz: 26px;
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  background-blend-mode: normal;
  color: #fff;
  transform: translateZ(var(--tz)) rotateX(var(--tx)) rotateY(var(--ty)) rotateZ(0deg);
  transform-style: preserve-3d;
  transition: transform 700ms ease, filter 300ms ease, background-position 220ms ease;
  will-change: transform, filter;
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
  filter: brightness(1.02) saturate(1.06);
}
.brand-face::before {
  content: '';
  background: linear-gradient(60deg, rgba(255,255,255,0.12), rgba(255,255,255,0));
  filter: blur(1.2rem);
  opacity: 0.12;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  inset: 0;
  transition: 200ms;
}
.brand-face::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.16), transparent 48%),
    linear-gradient(120deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
  opacity: 0.2;
  mix-blend-mode: screen;
  pointer-events: none;
  transition: opacity 200ms ease;
}
.brand-title {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 12px 24px rgba(0,0,0,0.45);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 300ms ease 80ms, transform 300ms ease 80ms;
}
.brand-subtitle {
  margin: 0;
  color: #f4e9c7;
  font-size: 14px;
  line-height: 1.5;
  max-width: 340px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 320ms ease 140ms, transform 320ms ease 140ms;
}
.brand-cta {
  height: 4em;
  width: 12em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}
.brand-cta:focus-visible {
  outline: 2px solid rgba(212,175,55,0.6);
  outline-offset: 4px;
}
.brand-cta .flower-wrapper {
  height: 2em;
  width: 8em;
  position: relative;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
.brand-cta .flower-text {
  font-size: 11px;
  z-index: 1;
  color: #000;
  padding: 4px 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: all 0.5s ease;
}
.brand-cta .flower {
  display: grid;
  grid-template-columns: 1em 1em;
  position: absolute;
  transition: grid-template-columns 0.8s ease;
}
.brand-cta .flower1 {
  top: -12px;
  left: -13px;
  transform: rotate(5deg);
}
.brand-cta .flower2 {
  bottom: -5px;
  left: 8px;
  transform: rotate(35deg);
}
.brand-cta .flower3 {
  bottom: -15px;
  transform: rotate(0deg);
}
.brand-cta .flower4 {
  top: -14px;
  transform: rotate(15deg);
}
.brand-cta .flower5 {
  right: 11px;
  top: -3px;
  transform: rotate(25deg);
}
.brand-cta .flower6 {
  right: -15px;
  bottom: -15px;
  transform: rotate(30deg);
}
.brand-cta .petal {
  height: 1em;
  width: 1em;
  border-radius: 40% 70% / 7% 90%;
  background: linear-gradient(#07a6d7, #93e0ee);
  border: 0.5px solid #96d1ec;
  z-index: 0;
  transition: width 0.8s ease, height 0.8s ease;
}
.brand-cta .two {
  transform: rotate(90deg);
}
.brand-cta .three {
  transform: rotate(270deg);
}
.brand-cta .four {
  transform: rotate(180deg);
}
.brand-cta:hover .petal,
.brand-cta:focus-visible .petal {
  background: linear-gradient(#0761d7, #93bdee);
  border: 0.5px solid #96b4ec;
}
.brand-cta:hover .flower,
.brand-cta:focus-visible .flower {
  grid-template-columns: 1.5em 1.5em;
}
.brand-cta:hover .flower .petal,
.brand-cta:focus-visible .flower .petal {
  width: 1.5em;
  height: 1.5em;
}
.brand-cta:hover .flower-text,
.brand-cta:focus-visible .flower-text {
  background: rgba(255, 255, 255, 0.4);
}
.brand-cta:hover .flower1,
.brand-cta:focus-visible .flower1 {
  animation: flower1 15s linear infinite;
}
.brand-cta:hover .flower2,
.brand-cta:focus-visible .flower2 {
  animation: flower2 13s linear 1s infinite;
}
.brand-cta:hover .flower3,
.brand-cta:focus-visible .flower3 {
  animation: flower3 16s linear 1s infinite;
}
.brand-cta:hover .flower4,
.brand-cta:focus-visible .flower4 {
  animation: flower4 17s linear 1s infinite;
}
.brand-cta:hover .flower5,
.brand-cta:focus-visible .flower5 {
  animation: flower5 20s linear 1s infinite;
}
.brand-cta:hover .flower6,
.brand-cta:focus-visible .flower6 {
  animation: flower6 15s linear 1s infinite;
}
.brand-prompt {
  position: absolute;
  bottom: 12px;
  left: 14px;
  z-index: 4;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #fff;
  max-width: 160px;
  text-align: left;
  transition: opacity 300ms ease;
}
.brand-tracker:hover ~ .brand-face,
.brand-card.is-active .brand-face,
.brand-card:focus-visible .brand-face {
  transition: 300ms;
  filter: brightness(1.12) saturate(1.08);
  --tz: 32px;
  background-position: center 48%;
}
.brand-tracker:hover ~ .brand-face .brand-title,
.brand-card.is-active .brand-title,
.brand-card:focus-visible .brand-title { opacity: 1; transform: translateY(0); }
.brand-tracker:hover ~ .brand-face .brand-subtitle,
.brand-card.is-active .brand-subtitle,
.brand-card:focus-visible .brand-subtitle { opacity: 1; transform: translateY(0); }
.brand-tracker:hover ~ .brand-face .brand-prompt,
.brand-card.is-active .brand-prompt,
.brand-card:focus-visible .brand-prompt { opacity: 0; }
.brand-card:focus-visible { outline: 2px solid rgba(212,175,55,0.6); outline-offset: 3px; }
.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.tr-1 { grid-area: tr-1; }
.tr-2 { grid-area: tr-2; }
.tr-3 { grid-area: tr-3; }
.tr-4 { grid-area: tr-4; }
.tr-5 { grid-area: tr-5; }
.tr-6 { grid-area: tr-6; }
.tr-7 { grid-area: tr-7; }
.tr-8 { grid-area: tr-8; }
.tr-9 { grid-area: tr-9; }
.tr-10 { grid-area: tr-10; }
.tr-11 { grid-area: tr-11; }
.tr-12 { grid-area: tr-12; }
.tr-13 { grid-area: tr-13; }
.tr-14 { grid-area: tr-14; }
.tr-15 { grid-area: tr-15; }
.tr-16 { grid-area: tr-16; }
.tr-17 { grid-area: tr-17; }
.tr-18 { grid-area: tr-18; }
.tr-19 { grid-area: tr-19; }
.tr-20 { grid-area: tr-20; }
.tr-21 { grid-area: tr-21; }
.tr-22 { grid-area: tr-22; }
.tr-23 { grid-area: tr-23; }
.tr-24 { grid-area: tr-24; }
.tr-25 { grid-area: tr-25; }
.brand-tracker.tr-1:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 20deg; --ty: -10deg; }
.brand-tracker.tr-2:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 20deg; --ty: -5deg; }
.brand-tracker.tr-3:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 20deg; --ty: 0deg; }
.brand-tracker.tr-4:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 20deg; --ty: 5deg; }
.brand-tracker.tr-5:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 20deg; --ty: 10deg; }
.brand-tracker.tr-6:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 10deg; --ty: -10deg; }
.brand-tracker.tr-7:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 10deg; --ty: -5deg; }
.brand-tracker.tr-8:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 10deg; --ty: 0deg; }
.brand-tracker.tr-9:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 10deg; --ty: 5deg; }
.brand-tracker.tr-10:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 10deg; --ty: 10deg; }
.brand-tracker.tr-11:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 0deg; --ty: -10deg; }
.brand-tracker.tr-12:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 0deg; --ty: -5deg; }
.brand-tracker.tr-13:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 0deg; --ty: 0deg; }
.brand-tracker.tr-14:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 0deg; --ty: 5deg; }
.brand-tracker.tr-15:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 0deg; --ty: 10deg; }
.brand-tracker.tr-16:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: -10deg; --ty: -10deg; }
.brand-tracker.tr-17:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: -10deg; --ty: -5deg; }
.brand-tracker.tr-18:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: -10deg; --ty: 0deg; }
.brand-tracker.tr-19:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: -10deg; --ty: 5deg; }
.brand-tracker.tr-20:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: -10deg; --ty: 10deg; }
.brand-tracker.tr-21:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: -20deg; --ty: -10deg; }
.brand-tracker.tr-22:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: -20deg; --ty: -5deg; }
.brand-tracker.tr-23:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: -20deg; --ty: 0deg; }
.brand-tracker.tr-24:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: -20deg; --ty: 5deg; }
.brand-tracker.tr-25:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: -20deg; --ty: 10deg; }
@media (max-width: 720px) {
  .brand-card { --brand-card-height: 240px; }
  .brand-canvas { pointer-events: none; }
  .brand-face { transform: none !important; }
  .brand-title,
  .brand-subtitle { opacity: 1; transform: none; }
  .brand-prompt { opacity: 0; }
}
.marquee {
  margin: 12px 0 36px;
  overflow: hidden;
  border-top: 1px solid rgba(212,175,55,0.3);
  border-bottom: 1px solid rgba(212,175,55,0.3);
  padding: 4px 0;
  background: linear-gradient(90deg, rgba(212,175,55,0.08), rgba(245,236,205,0.35));
}
.marquee-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  align-items: center;
  animation: marquee 18s linear infinite;
}
.logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: transparent;
  box-shadow: none;
  min-width: 140px;
  min-height: 52px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--text);
  text-transform: uppercase;
}
.logo-chip img {
  max-height: 52px;
  width: auto;
  display: block;
  filter: saturate(0.92) contrast(0.96);
}

/* Maison gallery */
body.no-scroll { overflow: hidden; }
.maison-gallery {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.maison-gallery.is-open {
  opacity: 1;
  pointer-events: auto;
}
.maison-gallery__backdrop {
  position: absolute;
  inset: 0;
  background: transparent;
  backdrop-filter: none;
}
.maison-gallery__panel {
  position: relative;
  width: min(1200px, 96vw);
  max-height: 92vh;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  display: flex;
  flex-direction: column;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s ease;
  z-index: 1;
}
.maison-gallery.is-open .maison-gallery__panel { transform: translateY(0) scale(1); }
.maison-gallery__header {
  display: none;
}
.maison-gallery__title {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
}
.maison-gallery__count {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.maison-gallery__grid {
  padding: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: center;
  justify-items: center;
  overflow: visible;
}
.maison-gallery__item {
  position: relative;
  width: 100%;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  aspect-ratio: auto;
  box-shadow: none;
}
.maison-gallery__item img {
  width: 100%;
  height: auto;
  max-height: clamp(180px, 40vh, 420px);
  object-fit: contain;
  transition: transform 0.35s ease;
}
.maison-gallery__item:hover img { transform: scale(1.04); }
@media (max-width: 640px) {
  .maison-gallery { padding: 16px; }
  .maison-gallery__grid {
    padding: 0;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  .maison-gallery__item img { max-height: clamp(140px, 30vh, 240px); }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Looping gallery */
.loop-shell {
  position: relative;
  margin-top: 32px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: clamp(22px, 4vw, 36px) clamp(14px, 3vw, 28px) 64px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.loop-images {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  background: linear-gradient(180deg, rgba(212,175,55,0.08), rgba(255,255,255,0.86));
  border-radius: 12px;
  padding: 18px 8px 56px;
}
.carousel-track {
  --item-size: clamp(200px, 22vw, 320px);
  --left: calc(-1 * var(--item-size) * var(--total));
  position: relative;
  width: 100%;
  height: var(--item-size);
  min-height: var(--item-size);
}
.carousel-item {
  position: absolute;
  top: 50%;
  left: 100%;
  width: var(--item-size);
  height: var(--item-size);
  display: flex;
  justify-content: center;
  perspective: 1000px;
  transform: translateY(-50%);
  transform-style: preserve-3d;
  animation: scroll-left var(--time) linear infinite;
  animation-delay: calc(var(--time) / var(--total) * (var(--i) - 1) - var(--time));
  will-change: left, transform;
  transition: transform 0.5s ease-in-out;
}
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #fff;
  transform: rotateY(-45deg);
  transition: transform 0.5s ease-in-out;
  mask-image: linear-gradient(black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(black 70%, transparent 100%);
}
.carousel-item:hover img { transform: rotateY(0deg) translateY(-6px); }
@keyframes scroll-left { to { left: var(--left); } }
.hero .hero-track {
  --item-size: clamp(200px, 26vw, 320px);
  --left: calc(-1 * var(--item-size) * var(--total));
  width: min(96vw, 1200px);
  max-width: 1200px;
}
.scroll-down {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  font-size: 14px;
  color: var(--text);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-weight: 600;
}
.scroll-down .arrow {
  display: inline-block;
  font-size: 16px;
  animation: scroll 1.6s ease-in-out infinite;
}

/* About */
.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  align-items: center;
}
.about .image-wrapper {
  position: relative;
  display: grid;
  place-items: center;
  padding: 12px;
  border-radius: 18px;
  overflow: visible;
  isolation: isolate;
}
.about .image-wrapper::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 16px;
  pointer-events: none;
}
.about .about-card {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 3 / 4;
  background: #f1efe7;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0,0,0,0.22);
}
.about .about-card > .child {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: clip-path 0.6s ease, filter 0.6s ease;
  z-index: 1;
  background-image: var(--photo-1, var(--photo));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: inherit;
}
.about .about-card .card-1 {
  clip-path: polygon(0% 0%, 75% 0%, 0% 75%);
  z-index: 3;
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.36), rgba(212, 175, 55, 0.18)),
    var(--photo-1, var(--photo));
}
.about .about-card .card-1:hover {
  clip-path: polygon(0% 0%, 170% 0%, 0% 170%);
}
.about .about-card .card-1:has(~ .card-2:hover),
.about .about-card .card-1:has(~ .card-3:hover) {
  clip-path: polygon(0% 0%, 15% 0%, 0% 15%);
}
.about .about-card .card-2 {
  z-index: 1;
  background-image:
    linear-gradient(145deg, rgba(0, 0, 0, 0.08), rgba(255, 255, 255, 0.12)),
    var(--photo-2, var(--photo));
}
.about .about-card .card-3 {
  clip-path: polygon(25% 100%, 100% 25%, 100% 100%);
  z-index: 2;
  background-image:
    linear-gradient(140deg, rgba(255, 255, 255, 0.28), rgba(0, 0, 0, 0.15)),
    var(--photo-3, var(--photo));
}
.about .about-card .card-3:hover {
  clip-path: polygon(-70% 100%, 100% -70%, 100% 100%);
}
.about .about-card .card-1:hover ~ .card-3,
.about .about-card .card-2:hover ~ .card-3 {
  clip-path: polygon(85% 100%, 100% 85%, 100% 100%);
}
.about .about-card:hover .child { filter: saturate(1.06); }
.quote {
  margin-top: 24px;
  padding: 16px 18px;
  background: rgba(212,175,55,0.08);
  border-left: 3px solid #d4af37;
  border-radius: 12px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--text);
}

/* Works */
.works {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  align-items: center;
}
.works-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.works-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.32);
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.4px;
}
.bounce-stage {
  position: relative;
  width: min(560px, 92vw);
  height: 320px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  perspective: 1400px;
  isolation: isolate;
}
.bounce-stage::after {
  content: '';
  position: absolute;
  inset: 12% 14%;
  background: radial-gradient(circle, rgba(212,175,55,0.15), rgba(212,175,55,0));
  filter: blur(10px);
  z-index: 0;
}
.work-card {
  position: absolute;
  width: 200px;
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 24px 50px rgba(0,0,0,0.22);
  transform: scale(0) var(--base-transform, none);
  opacity: 0;
  transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s ease;
  z-index: 1;
  cursor: pointer;
}
.work-card.is-in {
  transform: var(--base-transform, none);
  opacity: 1;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02);
}
.work-card::after {
  content: attr(data-title);
  position: absolute;
  inset: auto 12px 12px 12px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(0,0,0,0.55);
  color: #f7e9c2;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}
.work-card.is-active {
  z-index: 3;
  box-shadow: 0 26px 54px rgba(0,0,0,0.26);
}

/* Shop */
.shop {
  background: linear-gradient(180deg, #fff9ec 0%, #f8f1df 36%, #fafaf5 100%);
  overflow: hidden;
}
.shop::before,
.shop::after {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle at 30% 30%, rgba(212,175,55,0.22), transparent 60%);
  filter: blur(32px);
  opacity: 0.8;
  z-index: 0;
}
.shop::before { top: -120px; right: 8%; }
.shop::after {
  bottom: -140px;
  left: -6%;
  background: radial-gradient(circle at 60% 60%, rgba(132,96,28,0.18), transparent 62%);
}
.shop-header {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 28px;
}
.muted { color: var(--muted); }
.shop-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.4);
  background: rgba(255,255,255,0.85);
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--text);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.pill.ghost {
  background: rgba(0,0,0,0.04);
  border-style: dashed;
  color: var(--muted);
  box-shadow: none;
}
.filters {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  display: grid;
  gap: 12px;
}
.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.filter-label {
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-right: 4px;
}
.filter-chip {
  border: 1px solid rgba(212,175,55,0.38);
  background: rgba(255,255,255,0.85);
  color: var(--text);
  padding: 9px 14px;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.filter-chip:hover { transform: translateY(-1px); }
.filter-chip.is-active {
  background: linear-gradient(120deg, #d4af37, #f1d97c);
  color: #2f2412;
  box-shadow: 0 12px 30px rgba(212,175,55,0.35);
}
.color-chip {
  box-shadow: none;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(0,0,0,0.03);
}
.color-chip.is-active {
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);
  border-color: rgba(212,175,55,0.5);
}
.swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.06);
}
.swatch.oro { background: linear-gradient(135deg, #d4af37, #f7e4a3); }
.swatch.argento { background: linear-gradient(135deg, #c3c7ce, #f4f6fb); }
.swatch.rosa { background: linear-gradient(135deg, #e0a6a1, #f6d4c8); }
.swatch.nero { background: linear-gradient(135deg, #0f0f12, #2b2b32); }
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 10px;
}
.product-card {
  position: relative;
  display: grid;
  grid-template-rows: 220px auto;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 24px 40px rgba(0,0,0,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px rgba(0,0,0,0.16);
}
.product-visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(0,0,0,0.05));
}
.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}
.product-card:hover .product-visual img { transform: scale(1.06); }
.floating-tags {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.price-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(0,0,0,0.75);
  color: #f7e9b8;
  font-weight: 700;
  letter-spacing: 0.4px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.3);
}
.product-body {
  padding: 16px 16px 18px;
  display: grid;
  gap: 10px;
}
.product-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.product-name {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.product-sub {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.06);
}
.color-dot.oro { background: linear-gradient(135deg, #d4af37, #f1d97c); }
.color-dot.rosa { background: linear-gradient(135deg, #e0a6a1, #f6d4c8); }
.color-dot.argento { background: linear-gradient(135deg, #c3c7ce, #f4f6fb); }
.color-dot.nero { background: linear-gradient(135deg, #0f0f12, #2b2b32); }
.product-desc {
  margin: 0;
  color: var(--muted);
}
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.meta-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--muted);
}
.meta-value {
  font-weight: 700;
  color: var(--text);
}
.ghost-btn {
  border: 1px solid rgba(212,175,55,0.5);
  background: transparent;
  color: var(--text);
  padding: 9px 14px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ghost-btn:hover {
  background: linear-gradient(120deg, #d4af37, #f1d97c);
  color: #2f2412;
  box-shadow: 0 10px 24px rgba(212,175,55,0.3);
}
.shop-footer {
  margin-top: 24px;
  padding: 18px 16px;
  border-radius: 14px;
  border: 1px solid rgba(212,175,55,0.3);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 16px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.shop-note {
  margin: 0;
  color: var(--muted);
  max-width: 720px;
}
.shop-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Portal */
.portal {
  background: linear-gradient(180deg, #ffffff 0%, #faf6ea 60%, #ffffff 100%);
}
.portal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.portal-card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 18px 16px;
  border-radius: 16px;
  border: 1px solid rgba(212,175,55,0.26);
  background: #fff;
  box-shadow: 0 18px 36px rgba(0,0,0,0.1);
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.portal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(0,0,0,0.14);
}
.portal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.portal-title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}
.portal-text {
  margin: 0;
  color: var(--muted);
}

/* Curated selections */
.curated {
  background: linear-gradient(180deg, #f7f1df 0%, #ffffff 60%, #fafaf5 100%);
}
.curation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.curation-card {
  display: grid;
  grid-template-rows: 200px auto;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 18px 36px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.curation-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(0,0,0,0.16); }
.curation-image {
  background-size: cover;
  background-position: center;
  filter: saturate(1.02);
  transition: transform 0.45s ease;
}
.curation-card:hover .curation-image { transform: scale(1.04); }
.curation-body {
  padding: 16px 16px 18px;
  display: grid;
  gap: 8px;
}
.curation-title {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
}
.curation-text {
  margin: 0;
  color: var(--muted);
}

/* Perks */
.perks {
  background: #fff;
}
.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.perk {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(212,175,55,0.28);
  background: linear-gradient(180deg, rgba(212,175,55,0.08), #fff);
  box-shadow: 0 16px 30px rgba(0,0,0,0.08);
}
.perk-title {
  margin: 0 0 6px;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.perk-text {
  margin: 0;
  color: var(--muted);
}

/* Cart */
.cart {
  background: linear-gradient(180deg, #fff9ec 0%, #ffffff 70%);
}
.cart-shell {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: start;
  margin-top: 16px;
}
.cart-items {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.1);
  min-height: 200px;
}
.cart-empty {
  text-align: center;
  display: grid;
  gap: 10px;
  padding: 24px 0;
}
.cart-items.has-items .cart-empty { display: none; }
.cart-list {
  display: grid;
  gap: 12px;
}
.cart-item {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  background: #fdfbf3;
  border: 1px solid rgba(212,175,55,0.22);
}
.cart-thumb {
  width: 84px;
  height: 84px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}
.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-info {
  display: grid;
  gap: 4px;
}
.cart-name {
  margin: 0;
  font-weight: 700;
  color: var(--text);
}
.cart-meta {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.cart-price {
  font-weight: 800;
  color: var(--text);
}
.cart-remove {
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
}
.cart-summary {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.1);
  display: grid;
  gap: 10px;
}
.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
}
.cart-note {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}


/* Consult */
.consult-shell {
  position: relative;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}
.consult-shell::before {
  content: '';
  position: absolute;
  inset: -4%;
  border-radius: 20px;
  background-image: linear-gradient(var(--rotate), #fff6dd, #f6e0a3 35%, #d4af37 60%, #f6e0a3);
  animation: spin 3s linear infinite;
  z-index: 0;
}
.consult-shell::after {
  content: '';
  position: absolute;
  inset: 6%;
  border-radius: 18px;
  background-image: linear-gradient(var(--rotate), #fff6dd, #f6e0a3 35%, #d4af37 60%, #f6e0a3);
  filter: blur(26px);
  opacity: 0.9;
  animation: spin 3s linear infinite;
  z-index: 0;
}
.consult {
  position: relative;
  z-index: 1;
  background: var(--bg-white);
  border-radius: 16px;
  width: 98%;
  margin: 1% auto;
  padding: clamp(24px, 5vw, 42px);
  border: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: start;
  box-shadow: none;
}
@keyframes spin {
  0% { --rotate: 0deg; }
  100% { --rotate: 360deg; }
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
  color: var(--text);
}
.contact-list a { color: inherit; font-weight: 600; }
.contact-list strong { color: var(--text); font-weight: 700; }
form {
  display: grid;
  gap: 12px;
}
label {
  font-size: 12px;
  letter-spacing: 0.4px;
  color: var(--muted);
  text-transform: uppercase;
}
input, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.9);
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.18);
}
textarea { min-height: 120px; resize: vertical; }
.form-status {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(12px);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  padding: 12px 18px;
  border-radius: 12px;
  background: #1f1b14;
  color: #ffeab8;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  max-width: min(520px, 92vw);
  box-shadow: 0 18px 36px rgba(0,0,0,0.2);
  transition: opacity 0.3s ease, transform 0.3s ease;
  border: 1px solid rgba(212,175,55,0.35);
}
.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast.is-error {
  background: #4a1414;
  color: #ffecec;
  border-color: rgba(255,255,255,0.2);
}
.toast.is-info {
  background: #2c2519;
  color: #ffeab8;
  border-color: rgba(212,175,55,0.28);
}
.btn-dark {
  background: var(--text);
  color: #f6e6b3;
  border-color: transparent;
}
.btn-dark:hover { background: #2c2519; color: #ffeab8; }
.Btn {
  width: 160px;
  height: 46px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(to right,#77530a,#ffd277,#77530a,#77530a,#ffd277,#77530a);
  background-size: 250%;
  background-position: left;
  color: #ffd277;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-duration: 1s;
  overflow: hidden;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.Btn::before {
  position: absolute;
  content: attr(data-label);
  color: #ffd277;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 97%;
  height: 90%;
  border-radius: 8px;
  transition-duration: 1s;
  background-color: rgba(0, 0, 0, 0.842);
  background-size: 200%;
}
.Btn:hover {
  background-position: right;
  transition-duration: 1s;
}
.Btn:hover::before {
  background-position: right;
  transition-duration: 1s;
}
.Btn:active {
  transform: scale(0.95);
}
.Btn.is-disabled,
.Btn:disabled {
  cursor: not-allowed;
  opacity: 0.8;
}

/* Footer */
footer {
  padding: 36px 0 46px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid rgba(0,0,0,0.04);
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.footer-info { text-align: left; }
.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-social .card {
  max-width: fit-content;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  gap: 0.6rem;
  backdrop-filter: blur(15px);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.192),
    inset 0 0 5px rgba(255, 255, 255, 0.274), 0 5px 5px rgba(0, 0, 0, 0.164);
  transition: 0.5s;
}
.footer-social .card:hover {
  animation: ease-out 5s;
  background: rgba(173, 173, 173, 0.05);
}
.footer-social .card ul {
  padding: 0.7rem;
  margin: 0;
  display: flex;
  list-style: none;
  gap: 0.7rem;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  flex-direction: column;
}
.footer-social .card ul li {
  cursor: pointer;
  position: relative;
}
.footer-social .svg {
  transition: all 0.3s;
  padding: 0.7rem;
  height: 48px;
  width: 48px;
  border-radius: 100%;
  color: rgb(255, 174, 0);
  fill: currentColor;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3),
    inset 0 0 5px rgba(255, 255, 255, 0.5), 0 5px 5px rgba(0, 0, 0, 0.164);
}
.footer-social .text {
  opacity: 0;
  border-radius: 5px;
  padding: 4px 8px;
  transition: all 0.3s;
  color: rgb(255, 174, 0);
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  z-index: 9999;
  box-shadow: -5px 0 1px rgba(153, 153, 153, 0.2),
    -10px 0 1px rgba(153, 153, 153, 0.2),
    inset 0 0 20px rgba(255, 255, 255, 0.3),
    inset 0 0 5px rgba(255, 255, 255, 0.5), 0 5px 5px rgba(0, 0, 0, 0.082);
  font-size: 12px;
}
.footer-social .iso-pro { transition: 0.5s; }
.footer-social .iso-pro:hover a > .svg {
  transform: translate(12px, -12px);
  border-radius: 100%;
}
.footer-social .iso-pro:hover .text {
  opacity: 1;
  transform: translate(25px, -2px) skew(-5deg);
}
.footer-social .iso-pro:hover .svg { transform: translate(5px, -5px); }
.footer-social .iso-pro span {
  opacity: 0;
  position: absolute;
  color: #1877f2;
  border-color: #1877f2;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3),
    inset 0 0 5px rgba(255, 255, 255, 0.5), 0 5px 5px rgba(0, 0, 0, 0.164);
  border-radius: 50%;
  transition: all 0.3s;
  height: 48px;
  width: 48px;
}
.footer-social .iso-pro:hover span { opacity: 1; }
.footer-social .iso-pro:hover span:nth-child(1) { opacity: 0.2; }
.footer-social .iso-pro:hover span:nth-child(2) {
  opacity: 0.4;
  transform: translate(4px, -4px);
}
.footer-social .iso-pro:hover span:nth-child(3) {
  opacity: 0.6;
  transform: translate(8px, -8px);
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 10px 0 6px;
}
.footer-info .footer-links { justify-content: flex-start; }
.footer-links a:hover { color: var(--text); }
.footer-note {
  margin-top: 6px;
  color: var(--muted);
  letter-spacing: 0.6px;
}

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(24px); transition: all 0.7s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
    align-items: center;
    height: auto;
    padding: 12px 0 14px;
    gap: 10px;
  }
  header.is-scrolled .nav { height: auto; }
  .nav-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  .nav-toggle { display: inline-flex; margin-left: auto; order: 2; }
  .nav-links {
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    display: none;
    padding: 8px;
    border-radius: 14px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  }
  .nav.is-open .nav-links { display: flex; }
  .nav-links a {
    width: 100%;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(0,0,0,0.02);
    text-align: left;
  }
  .nav-links .nav-icon {
    width: auto;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(212,175,55,0.6);
    text-align: center;
  }
  .nav-cta { width: 100%; }
  header { backdrop-filter: blur(6px); }
  .hero { min-height: 68vh; background-attachment: scroll; }
  .hero-loop { inset: auto 0 14% 0; }
  .hero-track { --item-size: clamp(150px, 40vw, 220px); }
  .hero-script { top: auto; bottom: 18%; right: 8%; font-size: 19px; max-width: 200px; }
  .section { padding: 70px 0; }
  .shop-header { grid-template-columns: 1fr; }
  .filters { padding: 14px; }
  .product-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
  .shop-actions { width: 100%; }
  .shop-actions .btn { flex: 1; justify-content: center; }
  .cart-shell { grid-template-columns: 1fr; }
  .cart-summary { position: sticky; top: 90px; }
  .footer-content { flex-direction: column; align-items: center; }
  .footer-info { text-align: center; }
  .footer-links { justify-content: center; }
}
@media (max-width: 620px) {
  .logo-name { font-size: 18px; }
  .logo img { height: 40px; }
  .logo-tagline { display: none; }
  .nav-links { gap: 10px 14px; }
  .nav-links a { font-size: 14px; }
  .nav-cta { padding: 8px 14px; }
  .hero { padding: 36px 0 86px; min-height: 64vh; }
  .hero-headline { font-size: clamp(30px, 9vw, 44px); }
  .hero-content { padding: 64px 18px; text-align: center; }
  .hero-badges { justify-content: center; }
  .hero-badges span { background: rgba(0,0,0,0.36); }
  .hero-loop { inset: auto 0 18% 0; }
  .hero-track { --item-size: clamp(140px, 58vw, 180px); }
  .hero-script { right: 6%; bottom: 14%; max-width: 180px; font-size: 18px; }
  .marquee { margin: 6px 0 24px; }
  .marquee-track { gap: 18px; }
  .logo-chip {
    min-width: 120px;
    min-height: 44px;
    padding: 6px 12px;
  }
  .logo-chip img { max-height: 40px; }
  .bounce-stage { height: 280px; }
  .work-card { width: 170px; }
  .scroll-down { font-size: 12px; bottom: 12px; }
  .product-card { grid-template-rows: 200px auto; }
  .cart-item { grid-template-columns: 64px 1fr; grid-template-rows: auto auto; }
  .cart-price { justify-self: end; }
  .cart-remove { justify-self: end; }
  .curation-card { grid-template-rows: 160px auto; }
}
@media (max-width: 520px) {
  .nav { gap: 8px; }
  .logo-name { font-size: 17px; }
  .hero { padding: 32px 0 76px; }
  .hero-track { --item-size: clamp(120px, 55vw, 160px); }
  .carousel-item img { transform: none; }
  .scroll-down { font-size: 11px; }
  .section { padding: 60px 0; }
  .brand-card { --brand-card-height: 210px; }
  .brand-title { font-size: 20px; }
  .brand-subtitle { font-size: 13px; }
  .brand-cta { width: min(220px, 78vw); }
  .product-card { grid-template-rows: 180px auto; }
}
