/* ============================================================
   AURELLE — Luxury Fashion House
   Design System: Deep Charcoal + Antique Gold, Serif-led
   ============================================================ */

:root {
  /* Palette */
  --ink: #0e0d0b;          /* near-black base */
  --ink-2: #17150f;        /* elevated surface */
  --ink-3: #211e16;        /* card surface */
  --gold: #c8a35c;         /* antique gold */
  --gold-soft: #ddbf85;
  --gold-dim: rgba(200, 163, 92, 0.55);
  --ivory: #f0ead9;        /* primary text on dark */
  --ivory-dim: rgba(240, 234, 217, 0.62);
  --ivory-faint: rgba(240, 234, 217, 0.38);
  --line: rgba(200, 163, 92, 0.22);       /* hairline gold border */
  --line-soft: rgba(240, 234, 217, 0.12);
  --light: #f6f1e6;        /* light-mode canvas (rare, for contrast cards) */

  /* Type */
  --serif: "Playfair Display", "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Jost", "Montserrat", "Helvetica Neue", Arial, sans-serif;

  /* Rhythm */
  --gutter: clamp(20px, 4vw, 64px);
  --section-y: clamp(88px, 11vw, 160px);
  --nav-h: 84px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.7s;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #3a3427; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dim); }

/* ---------- Typography ---------- */
h1, h2, h3, .serif { font-family: var(--serif); font-weight: 400; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.eyebrow::before {
  content: "";
  width: 42px; height: 1px;
  background: var(--gold-dim);
  display: inline-block;
}

.section-title {
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.14;
  letter-spacing: 0.01em;
  margin: 22px 0 0;
}
.section-title em { font-style: italic; color: var(--gold-soft); }

.lead {
  color: var(--ivory-dim);
  font-size: clamp(15px, 1.4vw, 17.5px);
  line-height: 1.9;
  font-weight: 300;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 17px 40px;
  border: 1px solid var(--gold);
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.55s var(--ease);
  z-index: 0;
}
.btn span { position: relative; z-index: 1; }
.btn:hover { color: var(--ink); }
.btn:hover::after { transform: translateY(0); }

.btn--solid {
  background: var(--gold);
  color: var(--ink);
}
.btn--solid::after { background: var(--ivory); }

.btn--link {
  border: none;
  padding: 0 0 8px;
  color: var(--ivory);
  border-bottom: 1px solid var(--line-soft);
  border-radius: 0;
}
.btn--link::after { display: none; }
.btn--link:hover { color: var(--gold); border-color: var(--gold); }

/* ---------- Layout ---------- */
.container {
  width: min(1280px, 100% - 2 * var(--gutter));
  margin-inline: auto;
}

section { padding-block: var(--section-y); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head .lead { max-width: 460px; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: all 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav-inner {
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav.scrolled {
  background: rgba(14, 13, 11, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}

.logo {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ivory);
  justify-self: start;
  white-space: nowrap;
}
.logo span { color: var(--gold); }

.nav-menu {
  display: flex;
  gap: clamp(22px, 3vw, 44px);
  justify-self: center;
}
.nav-menu a {
  font-size: 12.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.35s;
}
.nav-menu a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--ivory); }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); transform-origin: left; }

.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 26px;
}

/* Language switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.lang-switch button {
  background: none;
  border: none;
  color: var(--ivory-faint);
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  transition: color 0.3s;
  padding: 2px 0;
}
.lang-switch button.active { color: var(--gold); }
.lang-switch .sep { color: var(--line); }

.nav-cta {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 11px 22px;
  transition: all 0.4s;
}
.nav-cta:hover { background: var(--gold); color: var(--ink); }

/* Burger (mobile) */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 34px; height: 26px;
  position: relative;
  z-index: 120;
}
.burger span {
  position: absolute; left: 0;
  width: 100%; height: 1.5px;
  background: var(--ivory);
  transition: all 0.4s var(--ease);
}
.burger span:nth-child(1) { top: 4px; }
.burger span:nth-child(2) { top: 12px; }
.burger span:nth-child(3) { top: 20px; }
.burger.open span:nth-child(1) { top: 12px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 12px; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(14, 13, 11, 0.98);
  z-index: 110;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(26px, 6vw, 38px);
  color: var(--ivory);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .lang-row {
  margin-top: 18px;
  display: flex; gap: 16px;
  font-size: 13px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 calc(var(--nav-h) + 40px);
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 58%;
  opacity: 0;
  animation: heroCycle 21s ease-in-out infinite;
}
.hero-bg:nth-child(1) { animation-delay: 0s; }
.hero-bg:nth-child(2) { animation-delay: 7s; }
.hero-bg:nth-child(3) { animation-delay: 14s; }
@keyframes heroCycle {
  0%   { opacity: 0; transform: scale(1.1); }
  5%   { opacity: 1; transform: scale(1.05); }
  30%  { opacity: 1; }
  35%  { opacity: 0; transform: scale(1); }
  100% { opacity: 0; }
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,13,11,0.5) 0%, rgba(14,13,11,0.12) 36%, rgba(14,13,11,0.9) 100%),
    linear-gradient(90deg, rgba(14,13,11,0.6) 0%, rgba(14,13,11,0) 55%);
}
.hero-fallback {
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 75% 20%, #2c261a 0%, var(--ink) 62%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1280px, 100% - 2 * var(--gutter));
  margin-inline: auto;
  padding-bottom: clamp(40px, 7vh, 90px);
}
.hero .eyebrow { animation: riseIn 1.1s 0.15s var(--ease) both; }
.hero-title {
  font-size: clamp(44px, 9vw, 116px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  margin: 26px 0 30px;
  max-width: 12ch;
  animation: riseIn 1.2s 0.3s var(--ease) both;
}
.hero-title em { font-style: italic; color: var(--gold-soft); }
.hero-sub {
  max-width: 480px;
  color: rgba(240, 234, 217, 0.8);
  animation: riseIn 1.2s 0.48s var(--ease) both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 44px;
  animation: riseIn 1.2s 0.62s var(--ease) both;
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-meta {
  position: absolute;
  right: var(--gutter);
  bottom: 46px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  animation: riseIn 1.4s 0.9s var(--ease) both;
}
.hero-meta .v-line {
  width: 1px; height: 56px;
  background: linear-gradient(var(--gold), transparent);
  margin-top: 4px;
}
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 10.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: riseIn 1.4s 1s var(--ease) both;
}
.hero-scroll .line {
  width: 1px; height: 44px;
  background: linear-gradient(var(--gold-dim), transparent);
  animation: drip 2.2s ease-in-out infinite;
}
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: top; }
  56% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Marquee strip ---------- */
.strip {
  border-block: 1px solid var(--line-soft);
  background: var(--ink-2);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}
.strip-track {
  display: inline-flex;
  gap: 56px;
  animation: marquee 30s linear infinite;
  will-change: transform;
}
.strip-track span {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
.strip-track .diamond { color: var(--gold); font-size: 9px; vertical-align: 2px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Manifesto ---------- */
.manifesto { text-align: center; }
.manifesto .eyebrow { justify-content: center; }
.manifesto .eyebrow::before, .manifesto .eyebrow::after {
  content: "";
  width: 42px; height: 1px;
  background: var(--gold-dim);
}
.manifesto .eyebrow::after { display: inline-block; }
.manifesto .section-title { max-width: 18ch; margin-inline: auto; }
.manifesto .lead { max-width: 640px; margin: 30px auto 0; }
.manifesto-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  margin-top: clamp(48px, 7vw, 88px);
}
.m-col {
  background: var(--ink);
  padding: clamp(32px, 4vw, 52px) clamp(24px, 3vw, 44px);
  text-align: left;
  transition: background 0.5s;
}
.m-col:hover { background: var(--ink-2); }
.m-col .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-dim);
  font-size: 18px;
  display: block;
  margin-bottom: 18px;
}
.m-col h3 {
  font-size: 21px;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.m-col p { font-size: 14.5px; color: var(--ivory-dim); line-height: 1.85; }

/* ---------- Collection cards ---------- */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.c-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  display: block;
}
.c-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.c-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,13,11,0.05) 45%, rgba(14,13,11,0.88) 100%);
  transition: background 0.6s;
}
.c-card:hover img { transform: scale(1.07); }
.c-card:hover::after { background: linear-gradient(180deg, rgba(14,13,11,0.15) 40%, rgba(14,13,11,0.92) 100%); }
.c-card .info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 30px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}
.c-card .info h3 {
  font-size: clamp(19px, 2vw, 25px);
  letter-spacing: 0.05em;
}
.c-card .info p {
  font-size: 11.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  margin-top: 6px;
}
.c-card .arrow {
  font-size: 20px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-12px);
  transition: all 0.5s var(--ease);
}
.c-card:hover .arrow { opacity: 1; transform: translateX(0); }

/* ---------- Products ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 26px);
}
.p-card { position: relative; }
a.p-card { display: block; color: inherit; }
.p-card .media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ink-3);
}
.p-card .media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.3s var(--ease), opacity 0.4s;
}
.p-card .media img.second { position: absolute; inset: 0; opacity: 0; }
.p-card:hover .media img.first { opacity: 0; }
.p-card:hover .media img.second { opacity: 1; transform: scale(1.04); }
.p-card .tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: rgba(14, 13, 11, 0.78);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 7px 13px;
}
.p-card .g-badge {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 7px 13px;
  backdrop-filter: blur(6px);
  border: 1px solid;
}
.p-card .g-badge.women { background: rgba(74, 42, 58, 0.72); color: #e8c2cf; border-color: rgba(232, 194, 207, 0.4); }
.p-card .g-badge.men { background: rgba(38, 55, 76, 0.72); color: #b9d0e8; border-color: rgba(185, 208, 232, 0.4); }
.p-card .g-badge.unisex { background: rgba(46, 51, 40, 0.72); color: #d5d9a8; border-color: rgba(213, 217, 168, 0.4); }
.p-card .body {
  padding: 18px 2px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.p-card .body h3 { font-size: 16.5px; letter-spacing: 0.04em; }
.p-card .body .cat { font-size: 11px; color: var(--ivory-faint); letter-spacing: 0.22em; text-transform: uppercase; margin-top: 4px; }
.p-card .body .desc {
  font-size: 12px;
  color: var(--ivory-dim);
  letter-spacing: 0.03em;
  line-height: 1.7;
  margin-top: 8px;
  padding-left: 10px;
  border-left: 1px solid var(--gold-dim);
  max-width: 220px;
}
.p-card .price { font-family: var(--serif); font-size: 17px; color: var(--gold-soft); white-space: nowrap; }
.p-card .price s { color: var(--ivory-faint); font-size: 13px; margin-right: 6px; }

/* ---------- Banner / editorial split ---------- */
.banner {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.banner-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.banner-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(14,13,11,0.9) 8%, rgba(14,13,11,0.35) 100%);
}
.banner-content {
  position: relative;
  z-index: 2;
  width: min(1280px, 100% - 2 * var(--gutter));
  margin-inline: auto;
  max-width: 620px;
}
.banner-content .section-title { margin-top: 20px; }
.banner-content .lead { margin-top: 22px; }
.banner-content .btn { margin-top: 36px; }

/* ---------- Stats ---------- */
.stats {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  border-block: 1px solid var(--line-soft);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
}
.stat {
  background: var(--ink-2);
  text-align: center;
  padding: clamp(36px, 5vw, 64px) 20px;
}
.stat .value {
  font-family: var(--serif);
  font-size: clamp(40px, 5.4vw, 66px);
  color: var(--gold-soft);
  line-height: 1;
}
.stat .value sup { font-size: 0.45em; color: var(--gold); }
.stat .label {
  margin-top: 14px;
  font-size: 11.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}

/* ---------- Quote ---------- */
.quote {
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}
.quote blockquote {
  font-family: var(--serif);
  font-size: clamp(24px, 3.6vw, 40px);
  line-height: 1.45;
  font-style: italic;
  color: var(--ivory);
}
.quote blockquote .gold { color: var(--gold-soft); }
.quote cite {
  display: block;
  margin-top: 30px;
  font-style: normal;
  font-size: 11.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}

/* ---------- Subscribe ---------- */
.subscribe {
  background:
    radial-gradient(90% 130% at 85% 0%, rgba(200, 163, 92, 0.10) 0%, transparent 60%),
    var(--ink-2);
  border-block: 1px solid var(--line-soft);
  text-align: center;
}
.subscribe .section-title { margin-inline: auto; max-width: 20ch; }
.subscribe .lead { max-width: 520px; margin: 24px auto 0; }
.sub-form {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 42px auto 0;
  border-bottom: 1px solid var(--gold-dim);
}
.sub-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0.06em;
  padding: 14px 4px;
}
.sub-form input::placeholder { color: var(--ivory-faint); }
.sub-form button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 14px 6px 14px 22px;
  transition: color 0.3s;
}
.sub-form button:hover { color: var(--ivory); }
.form-note { font-size: 11px; color: var(--ivory-faint); margin-top: 14px; letter-spacing: 0.06em; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  padding: clamp(60px, 8vw, 100px) 0 40px;
  border-top: 1px solid var(--line-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.footer h4 {
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-family: var(--sans);
  font-weight: 400;
}
.footer .logo { font-size: 30px; }
.footer .about-txt { color: var(--ivory-dim); font-size: 14.5px; max-width: 320px; margin-top: 20px; }
.footer ul li { margin-bottom: 12px; }
.footer ul a {
  font-size: 14.5px;
  color: var(--ivory-dim);
  transition: color 0.3s, padding-left 0.3s;
}
.footer ul a:hover { color: var(--gold); padding-left: 6px; }
.footer .addr { color: var(--ivory-dim); font-size: 14.5px; line-height: 2; }
.footer .addr .city { color: var(--ivory); font-family: var(--serif); font-size: 16px; }
.footer-bottom {
  margin-top: 60px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ivory-faint);
}
.footer-bottom .socials { display: flex; gap: 26px; }
.footer-bottom .socials a { color: var(--ivory-faint); transition: color 0.3s; }
.footer-bottom .socials a:hover { color: var(--gold); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: calc(var(--nav-h) + clamp(70px, 11vw, 130px)) 0 clamp(50px, 7vw, 90px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(85% 120% at 88% 0%, rgba(200, 163, 92, 0.12) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero .eyebrow { animation: riseIn 1s 0.1s var(--ease) both; }
.page-hero h1 {
  font-size: clamp(42px, 7.4vw, 88px);
  margin-top: 24px;
  letter-spacing: 0.01em;
  animation: riseIn 1.1s 0.24s var(--ease) both;
}
.page-hero h1 em { font-style: italic; color: var(--gold-soft); }
.page-hero .lead {
  max-width: 560px;
  margin-top: 24px;
  animation: riseIn 1.1s 0.38s var(--ease) both;
}
.page-hero .rule {
  margin-top: 44px;
  width: 120px; height: 1px;
  background: var(--gold-dim);
  animation: riseIn 1.1s 0.5s var(--ease) both;
}

/* ---------- Collection page ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: clamp(36px, 5vw, 60px);
}
.filter-bar button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  padding: 6px 0;
  transition: color 0.3s;
  position: relative;
}
.filter-bar button::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}
.filter-bar button:hover { color: var(--ivory); }
.filter-bar button.active { color: var(--gold); }
.filter-bar button.active::after { transform: scaleX(1); }

/* ---------- About page ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about-split .media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.about-split .media img { width: 100%; height: 100%; object-fit: cover; }
.about-split .media .frame {
  position: absolute; inset: 18px;
  border: 1px solid var(--gold-dim);
  pointer-events: none;
}
.about-split .media .badge {
  position: absolute;
  left: -1px; bottom: 44px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.1em;
  padding: 14px 26px;
  z-index: 2;
}
.about-body .section-title { margin-top: 14px; }
.about-body .lead { margin-top: 24px; }
.about-body .lead + .lead { margin-top: 16px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  margin-top: clamp(50px, 7vw, 90px);
}
.value {
  background: var(--ink-2);
  padding: clamp(30px, 4vw, 48px);
}
.value .icon {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.value h3 { font-size: 19px; letter-spacing: 0.05em; margin-bottom: 10px; }
.value p { font-size: 14px; color: var(--ivory-dim); line-height: 1.85; }

.timeline { margin-top: clamp(46px, 6vw, 70px); }
.t-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: clamp(24px, 4vw, 60px);
  padding: 26px 0;
  border-top: 1px solid var(--line-soft);
  transition: padding-left 0.4s var(--ease);
}
.t-item:last-child { border-bottom: 1px solid var(--line-soft); }
.t-item:hover { padding-left: 14px; }
.t-item .year {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
}
.t-item h4 { font-family: var(--serif); font-size: 20px; letter-spacing: 0.03em; }
.t-item p { font-size: 14.5px; color: var(--ivory-dim); margin-top: 8px; max-width: 640px; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(44px, 7vw, 100px);
  align-items: start;
}
.contact-info .section-title { font-size: clamp(28px, 3.6vw, 44px); }
.contact-info .lead { margin-top: 22px; }
.info-list { margin-top: 40px; }
.info-row {
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: baseline;
}
.info-row .k {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.info-row .v { color: var(--ivory-dim); font-size: 15px; }
.info-row .v a { color: var(--ivory); border-bottom: 1px solid var(--line); transition: all 0.3s; }
.info-row .v a:hover { color: var(--gold); border-color: var(--gold); }

.form-card {
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  padding: clamp(28px, 4vw, 54px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.field { margin-bottom: 26px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  margin-bottom: 10px;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 15.5px;
  letter-spacing: 0.04em;
  padding: 12px 2px;
  outline: none;
  transition: border-color 0.35s;
  border-radius: 0;
}
.field select option { background: var(--ink-2); color: var(--ivory); }
.field input:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 120px; }
.field .err { display: none; font-size: 12px; color: #d98b7a; margin-top: 8px; letter-spacing: 0.04em; }

.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}
.form-success .mark {
  width: 64px; height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  color: var(--gold);
  font-size: 24px;
}
.form-success h3 { font-family: var(--serif); font-size: 26px; }
.form-success p { color: var(--ivory-dim); margin-top: 10px; }

.retail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.retail-card {
  border: 1px solid var(--line-soft);
  padding: 30px;
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.retail-card:hover { border-color: var(--gold-dim); transform: translateY(-6px); }
.retail-card .city {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.06em;
}
.retail-card .addr { font-size: 13.5px; color: var(--ivory-dim); margin-top: 12px; line-height: 1.9; }
.retail-card .hours { font-size: 12px; color: var(--gold); letter-spacing: 0.14em; margin-top: 16px; text-transform: uppercase; }

/* ---------- Product detail ---------- */
.pd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  margin-bottom: clamp(28px, 4vw, 44px);
}
.pd-breadcrumb a { color: var(--ivory-dim); transition: color 0.3s; }
.pd-breadcrumb a:hover { color: var(--gold); }
.pd-breadcrumb .sep { color: var(--line); }
.pd-breadcrumb span:last-child { color: var(--ivory); }

.pd-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.gallery-main {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink-3);
  border: 1px solid var(--line-soft);
}
.gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-main .kb {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 14s var(--ease) infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1) translate(0, 0); }
  50%  { transform: scale(1.12) translate(-1.5%, 1.5%); }
  100% { transform: scale(1.06) translate(1.2%, -1%); }
}
.gallery-main .badge {
  position: absolute;
  left: 0; top: 0;
  background: rgba(14, 13, 11, 0.82);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 8px 16px;
  z-index: 2;
}
.gallery-main .counter {
  position: absolute;
  right: 0; bottom: 0;
  background: rgba(14, 13, 11, 0.82);
  color: var(--ivory-dim);
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 7px 14px;
  z-index: 2;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.gallery-thumbs button {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line-soft);
  background: var(--ink-3);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.3s;
}
.gallery-thumbs button img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumbs button:hover { border-color: var(--gold-dim); }
.gallery-thumbs button.active { border-color: var(--gold); }
.gallery-thumbs button .lbl {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: rgba(14, 13, 11, 0.78);
  color: var(--gold-soft);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 2px;
  text-align: center;
}

.video-area {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line-soft);
}
.video-area video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-area .kb-wrap { position: absolute; inset: 0; }
.video-area .kb-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 16s var(--ease) infinite alternate;
}
.video-area .v-label {
  position: absolute;
  left: 0; top: 0;
  background: rgba(14, 13, 11, 0.82);
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 8px 16px;
  z-index: 2;
}
.video-area .v-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 3;
}
.video-area .v-play .pulse {
  width: 78px; height: 78px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 20px;
  background: rgba(14, 13, 11, 0.45);
  backdrop-filter: blur(4px);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.08); opacity: 1; }
}
.video-area .v-note {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  padding: 10px;
  background: rgba(14, 13, 11, 0.7);
  z-index: 3;
}

.pd-info .pd-name {
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.12;
  margin: 18px 0 6px;
  letter-spacing: 0.01em;
}
.pd-info .pd-cat {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
.pd-info .pd-price {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold-soft);
  margin: 22px 0;
}
.pd-info .pd-desc {
  color: var(--ivory-dim);
  font-size: 15.5px;
  line-height: 1.9;
  padding-left: 16px;
  border-left: 1px solid var(--gold-dim);
}
.pd-specs {
  margin-top: 30px;
  padding: 22px 0;
  border-block: 1px solid var(--line-soft);
}
.pd-specs h4 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.pd-specs p { color: var(--ivory-dim); font-size: 14.5px; letter-spacing: 0.04em; }
.pd-tags { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.pd-tags .tag {
  background: rgba(200, 163, 92, 0.1);
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 7px 14px;
}
.pd-notfound { text-align: center; padding: 80px 0; }

@media (max-width: 900px) {
  .pd-layout { grid-template-columns: 1fr; }
  .gallery-thumbs { grid-template-columns: repeat(6, 1fr); }
}

/* ---------- Social section ---------- */
.social-section { text-align: center; }
.social-section .eyebrow { justify-content: center; }
.social-section .section-title { max-width: 22ch; margin-inline: auto; }
.social-section .lead { max-width: 560px; margin: 24px auto 0; }
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: clamp(40px, 5vw, 60px);
  text-align: left;
}
.s-card {
  border: 1px solid var(--line-soft);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.4s, transform 0.4s var(--ease), background 0.4s;
  color: inherit;
}
.s-card:hover { border-color: var(--gold-dim); transform: translateY(-5px); background: var(--ink-2); }
.s-icon { width: 34px; height: 34px; color: var(--gold); }
.s-icon svg { width: 100%; height: 100%; fill: currentColor; }
.s-card h3 { font-family: var(--sans); font-weight: 400; font-size: 15px; letter-spacing: 0.18em; text-transform: uppercase; }
.s-card p { font-size: 12.5px; color: var(--ivory-faint); line-height: 1.7; }
.s-card .btn { margin-top: 8px; align-self: flex-start; padding: 10px 22px; font-size: 11px; }
.s-youtube-video {
  margin-top: 26px;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--ink-2);
}
.s-youtube-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.s-youtube-video .placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  color: var(--ivory-faint);
  font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase;
}
.s-youtube-video .placeholder .s-icon { width: 54px; height: 54px; opacity: 0.7; }
@media (max-width: 900px) { .social-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .social-grid { grid-template-columns: 1fr; } }

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed;
  right: 26px; bottom: 26px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1fa855;
  color: #fff;
  padding: 13px 20px 13px 15px;
  border-radius: 40px;
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55); }
.wa-float .s-icon { width: 22px; height: 22px; color: #fff; }
.wa-float .s-icon svg { fill: currentColor; }
.wa-float .wa-txt { white-space: nowrap; }

/* ---------- Footer socials ---------- */
.footer-bottom .socials a { display: inline-flex; align-items: center; gap: 7px; }
.footer-bottom .socials .s-icon { width: 16px; height: 16px; color: inherit; }
.footer-bottom .socials .s-icon svg { fill: currentColor; }
.footer-bottom .socials a:hover .s-icon { color: var(--gold); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-split .media { max-width: 620px; }
  .retail-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .burger { display: block; }
  .nav-right .lang-switch { margin-right: 18px; }
  .manifesto-cols, .stats-grid, .values-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero-meta { display: none; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .t-item { grid-template-columns: 90px 1fr; }
}

@media (max-width: 560px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .collection-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .retail-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   HAUTE COUTURE — 高端奢侈欧美风格增强
   ============================================================ */

/* 全局：极淡金色氛围光 */
body {
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(200,163,92,0.055) 0%, transparent 46%),
    var(--ink);
}

/* 标题：香槟金渐变斜体 + 金色装饰线 */
.section-title em {
  font-style: italic;
  background: linear-gradient(115deg, #f2e2b6 0%, var(--gold-soft) 45%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-title { position: relative; padding-bottom: 20px; }
.section-title::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 84px; height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(200,163,92,0.15) 100%);
}
.section-title::before {
  content: "◆";
  position: absolute; left: 90px; bottom: -5.5px;
  font-size: 9px; color: var(--gold);
}
.manifesto .section-title::after, .quote .section-title::after,
.social-section .section-title::after, .subscribe .section-title::after,
.banner-content .section-title::after, .pd-info .section-title::after { left: 50%; transform: translateX(-50%); }
.manifesto .section-title::before, .quote .section-title::before,
.social-section .section-title::before, .subscribe .section-title::before,
.banner-content .section-title::before, .pd-info .section-title::before { left: calc(50% + 96px); }

/* 小标签：字距拉大更显奢侈 */
.eyebrow { letter-spacing: 0.46em; font-weight: 300; }

/* Hero 标题：更大更张扬 */
.hero-title { font-size: clamp(52px, 9.6vw, 128px); font-weight: 500; letter-spacing: 0.005em; }

/* Hero 品牌徽章 */
.hero-crest {
  position: absolute;
  right: clamp(24px, 6vw, 90px);
  top: calc(var(--nav-h) + clamp(28px, 6vh, 70px));
  z-index: 3;
  width: clamp(92px, 12vw, 132px);
  animation: riseIn 1.4s 1.1s var(--ease) both;
}
.hero-crest svg { width: 100%; height: auto; display: block; }
.hero-crest::after {
  content: "";
  position: absolute; left: 50%; bottom: -26px;
  width: 1px; height: 22px;
  background: linear-gradient(var(--gold-dim), transparent);
}

/* 导航：EST. 1998 小字 */
.nav-est {
  font-size: 9.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  justify-self: start;
  margin-top: 2px;
  white-space: nowrap;
}
.nav-inner { grid-template-columns: auto auto 1fr auto 1fr; }
.nav-menu { grid-column: 3; }
.nav-right { grid-column: 5; }
.nav-est { grid-column: 2; }

/* 按钮：双线描边（高级感） */
.btn { outline: 1px solid transparent; outline-offset: 4px; transition: all var(--dur) var(--ease), outline-color .4s; }
.btn:hover { outline-color: rgba(200,163,92,.4); }

/* 引言：编辑风大引号 */
.quote blockquote { position: relative; }
.quote blockquote::before {
  content: "“";
  font-family: var(--serif);
  font-size: 5.5em;
  line-height: 0.6;
  color: rgba(200,163,92,.35);
  display: block;
  margin-bottom: -0.25em;
}
.quote cite { letter-spacing: 0.4em; }

/* 页脚品牌装饰行 */
.footer-crest {
  text-align: center;
  padding: 34px 0 26px;
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  border-top: 1px solid var(--line-soft);
}
.footer-crest .diamond { color: var(--gold); font-size: 8px; vertical-align: 2px; padding: 0 12px; }

/* 细分隔：区块标题区更透气 */
.section-head { margin-bottom: clamp(48px, 6vw, 84px); }

/* 卡片微光 */
.c-card::before, .p-card .media::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 40% at 50% 0%, rgba(200,163,92,.08), transparent);
  opacity: 0; z-index: 1; pointer-events: none;
  transition: opacity .6s;
}
.c-card:hover::before, .p-card:hover .media::before { opacity: 1; }

/* 跑马灯：加大字距 */
.strip-track span { letter-spacing: 0.52em; }

/* ============================================================
   TOOLBAR — 搜索 / 排序
   ============================================================ */
.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 34px 0 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
}
.search-box {
  flex: 1;
  max-width: 380px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 11px 2px;
  outline: none;
  transition: border-color .3s;
}
.search-box::placeholder { color: var(--ivory-faint); letter-spacing: 0.16em; }
.search-box:focus { border-color: var(--gold); }
.sort-box {
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  color: var(--ivory-dim);
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  padding: 10px 14px;
  outline: none;
  cursor: pointer;
}
.sort-box option { background: var(--ink-2); color: var(--ivory); }
.empty-products { color: var(--ivory-faint); font-size: 14px; letter-spacing: .2em; padding: 60px 0; text-align: center; }
@media (max-width: 560px) { .toolbar { flex-direction: column; align-items: stretch; } .search-box { max-width: none; } }

/* ============================================================
   LIGHTBOX — 图片放大查看
   ============================================================ */
.gallery-main .kb { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8, 7, 5, 0.94);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  animation: lbFade .3s ease both;
}
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lb-inner { position: relative; max-width: min(92vw, 1200px); }
.lb-inner img {
  max-width: 92vw; max-height: 88vh;
  object-fit: contain;
  display: block;
  border: 1px solid var(--line);
  animation: rise .45s var(--ease) both;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(14, 13, 11, 0.7);
  border: 1px solid var(--line);
  color: var(--gold);
  cursor: pointer;
  font-family: var(--serif);
  line-height: 1;
  transition: background .3s;
}
.lb-close { top: -52px; right: 0; font-size: 26px; padding: 8px 16px; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); font-size: 34px; padding: 10px 18px; }
.lb-prev { left: -64px; }
.lb-next { right: -64px; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--gold); color: #14120e; }
.lb-count {
  position: absolute; bottom: -40px; left: 0; right: 0;
  text-align: center;
  color: var(--ivory-dim);
  font-size: 12px; letter-spacing: .3em;
}
@media (max-width: 900px) { .lb-prev { left: 6px; } .lb-next { right: 6px; } }

/* ============================================================
   HERO DOTS — 轮播指示点
   ============================================================ */
.hero-dots {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; gap: 12px;
}
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(240, 234, 217, 0.32);
  animation: dotCycle 21s infinite;
}
.hero-dot:nth-child(1) { animation-delay: 0s; }
.hero-dot:nth-child(2) { animation-delay: 7s; }
.hero-dot:nth-child(3) { animation-delay: 14s; }
@keyframes dotCycle {
  0%, 3%   { background: var(--gold); transform: scale(1.45); }
  30%      { background: var(--gold); }
  33%, 100% { background: rgba(240, 234, 217, 0.32); transform: scale(1); }
}
