/* =================================================================
   MAISON LUMIÈRE — Luxury Jewelry Store Template (Bilingual UA/EN)
   Style: Black velvet · gold & silver · antique serifs · asymmetrical
   ================================================================= */

:root {
  --bg: #0a0908;
  --bg-velvet: #0d0c0b;
  --bg-deep: #060504;
  --bg-panel: #14110e;
  --gold: #c9a449;
  --gold-bright: #e6c478;
  --gold-deep: #8a6d2a;
  --gold-light: #f5e4b0;
  --silver: #c5c5c5;
  --silver-deep: #8a8a8a;
  --champagne: #d4c4a8;
  --ivory: #f4f0e6;
  --pearl: #e8e0d0;
  --text: #e8e0d0;
  --text-dim: #9a8f7a;
  --text-faint: #5a5246;
  --line: rgba(201, 164, 73, 0.18);
  --line-bright: rgba(201, 164, 73, 0.45);
  --line-silver: rgba(197, 197, 197, 0.15);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-deep: 0 16px 50px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 0 30px rgba(201, 164, 73, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ============ VELVET TEXTURE ============ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 15% 10%, rgba(201, 164, 73, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 85% 80%, rgba(201, 164, 73, 0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(40, 35, 25, 0.4) 0%, transparent 70%),
    var(--bg);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.08 0 0 0 0 0.07 0 0 0 0 0.05 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* ============ TOP STRIP ============ */
.top-strip {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 1px;
}

.top-strip .star { color: var(--gold); margin: 0 16px; font-size: 10px; }

/* ============ HEADER ============ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}

.header-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.header-left, .header-right { display: flex; align-items: center; gap: 28px; }
.header-right { justify-content: flex-end; }

.header-link {
  color: var(--text-dim);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.4s ease;
  font-weight: 500;
}

.header-link:hover { color: var(--gold-bright); }

/* Language switcher */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 2px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-faint);
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.lang-btn.active { color: var(--gold-bright); }
.lang-btn:hover { color: var(--gold); }
.lang-sep { color: var(--text-faint); }

/* Logo */
.logo {
  text-align: center;
  text-decoration: none;
  color: var(--text);
}

.logo-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.logo-name {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 6px;
  color: var(--text);
  line-height: 1;
  background: linear-gradient(180deg, var(--gold-light), var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(201, 164, 73, 0.15);
}

.logo-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 10px;
  color: var(--text-faint);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 4px;
}

.icon-btn {
  color: var(--text-dim);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
  position: relative;
}

.icon-btn:hover { color: var(--gold-bright); }

.icon-btn .icon {
  font-size: 16px;
  color: var(--gold);
}

.icon-btn .count {
  color: var(--gold-bright);
  font-size: 11px;
  margin-left: 2px;
}

/* ============ MAIN NAV ============ */
.mainnav {
  background: var(--bg-velvet);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.mainnav-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: center;
  gap: 50px;
}

.mainnav a {
  color: var(--text-dim);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 18px 0;
  position: relative;
  transition: color 0.3s ease;
  font-weight: 500;
}

.mainnav a:hover, .mainnav a.active { color: var(--gold-bright); }

.mainnav a.active::after, .mainnav a:hover::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.mainnav a .en {
  color: var(--text-faint);
  font-size: 10px;
  margin-left: 6px;
  font-style: italic;
  letter-spacing: 1.5px;
  text-transform: none;
  font-family: 'Cormorant Garamond', serif;
}

/* ============ HERO ============ */
.hero {
  max-width: 1480px;
  margin: 80px auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 3px;
}

.hero-eyebrow .line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-title {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 900;
  font-size: 64px;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero-title em {
  font-family: 'Italiana', serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(180deg, var(--gold-light), var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-title .en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--text-dim);
  margin-top: 16px;
  letter-spacing: 2px;
  font-weight: 400;
}

.hero-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dim);
  margin-bottom: 36px;
  max-width: 480px;
  font-style: italic;
  font-weight: 400;
}

.hero-desc .en {
  display: block;
  color: var(--text-faint);
  font-size: 15px;
  margin-top: 10px;
}

.hero-cta { display: flex; gap: 20px; margin-bottom: 48px; }

.btn {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 18px 36px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 1px solid;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-primary {
  background: transparent;
  color: var(--gold-bright);
  border-color: var(--gold);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold), var(--gold-deep));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.btn-primary:hover {
  color: var(--bg);
  border-color: var(--gold-bright);
}

.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border-color: var(--line-bright);
}

.btn-ghost:hover {
  color: var(--gold-bright);
  border-color: var(--gold);
}

.hero-trust {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.trust-item {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--text-dim);
}

.trust-item .star { color: var(--gold); margin-right: 6px; }

/* ============ HERO VISUAL ============ */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(201, 164, 73, 0.08) 0%, transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-jewelry {
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--gold);
  box-shadow:
    0 0 60px rgba(201, 164, 73, 0.3),
    0 0 120px rgba(201, 164, 73, 0.15),
    inset 0 0 30px rgba(0,0,0,0.5);
  filter: brightness(1.05) contrast(1.05);
  animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { box-shadow: 0 0 60px rgba(201, 164, 73, 0.3), 0 0 120px rgba(201, 164, 73, 0.15), inset 0 0 30px rgba(0,0,0,0.5); }
  50% { box-shadow: 0 0 80px rgba(230, 196, 120, 0.5), 0 0 150px rgba(201, 164, 73, 0.25), inset 0 0 30px rgba(0,0,0,0.4); }
}

/* Ornamental corners */
.ornament-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  opacity: 0.5;
}

.ornament-corner.tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.ornament-corner.tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.ornament-corner.bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.ornament-corner.br { bottom: 0; right: 0; border-left: 0; border-top: 0; }

.ornament-corner::before {
  content: '✦';
  position: absolute;
  font-size: 14px;
  color: var(--gold);
  line-height: 1;
}

.ornament-corner.tl::before { top: 8px; left: 8px; }
.ornament-corner.tr::before { top: 8px; right: 8px; }
.ornament-corner.bl::before { bottom: 8px; left: 8px; }
.ornament-corner.br::before { bottom: 8px; right: 8px; }

/* Floating price tag */
.price-tag {
  position: absolute;
  bottom: 40px;
  right: -20px;
  background: var(--bg-deep);
  border: 1px solid var(--gold);
  padding: 20px 28px;
  text-align: center;
  box-shadow: var(--shadow-gold);
  z-index: 3;
}

.price-tag .label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.price-tag .value {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--gold-bright);
  letter-spacing: 1px;
}

/* Floating feature chip */
.feature-chip {
  position: absolute;
  top: 40px;
  left: -30px;
  background: var(--bg-deep);
  border: 1px solid var(--gold);
  padding: 12px 18px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--text);
  letter-spacing: 1px;
  z-index: 3;
  box-shadow: var(--shadow-soft);
}

.feature-chip .accent { color: var(--gold); }

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 24px 0;
  margin: 60px 0;
  background: var(--bg-velvet);
}

.marquee-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 8px;
  color: var(--text-faint);
  text-transform: uppercase;
}

.marquee-track span { display: inline-flex; align-items: center; gap: 80px; }
.marquee-track .accent { color: var(--gold); }
.marquee-track .star { color: var(--gold); font-size: 18px; }

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

/* ============ SECTION HEAD ============ */
.section-head {
  max-width: 1480px;
  margin: 100px auto 60px;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}

.section-num {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-num .line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: var(--text);
  letter-spacing: 2px;
}

.section-title em {
  font-family: 'Italiana', serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(180deg, var(--gold-light), var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-title .en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--text-dim);
  margin-top: 14px;
  letter-spacing: 2px;
  font-weight: 400;
}

.section-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-dim);
  max-width: 480px;
}

.section-intro .en {
  display: block;
  color: var(--text-faint);
  font-size: 14px;
  margin-top: 10px;
}

/* ============ COLLECTIONS ============ */
.collections {
  max-width: 1480px;
  margin: 0 auto 60px;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.col-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  padding: 32px 24px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.col-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 164, 73, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.col-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.col-card:hover::before { opacity: 1; }

.col-icon {
  font-family: 'Cinzel Decorative', serif;
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1;
  text-shadow: 0 0 12px rgba(201, 164, 73, 0.3);
  position: relative;
  z-index: 1;
}

.col-name {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.col-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.col-count {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1.5px;
  position: relative;
  z-index: 1;
}

/* ============ FEATURED PIECES ============ */
.pieces {
  max-width: 1480px;
  margin: 0 auto 80px;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.piece-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  padding: 24px;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.piece-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(201, 164, 73, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at center, rgba(201, 164, 73, 0.04) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.piece-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep), 0 0 40px rgba(201, 164, 73, 0.15);
}

.piece-card:hover::before { opacity: 1; }

.piece-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--bg-deep);
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  padding: 5px 12px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

.piece-badge.exclusive { background: var(--gold); color: var(--bg-deep); }

.piece-image-wrap {
  aspect-ratio: 1/1;
  background:
    radial-gradient(ellipse at center, rgba(201, 164, 73, 0.08) 0%, transparent 70%),
    var(--bg-deep);
  border: 1px solid var(--line);
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.piece-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.piece-image {
  width: 85%;
  height: 85%;
  object-fit: cover;
  transition: all 0.7s ease;
  filter: brightness(1.05) contrast(1.05);
}

.piece-card:hover .piece-image {
  transform: scale(1.08);
  filter: brightness(1.15) contrast(1.1);
}

.piece-info { position: relative; z-index: 1; }

.piece-cat {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.piece-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 6px;
  font-style: italic;
}

.piece-name-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.piece-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-bright), transparent);
  margin: 16px 0;
}

.piece-meta {
  display: flex;
  justify-content: space-between;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 18px;
}

.piece-meta .accent { color: var(--gold); }

.piece-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.piece-price {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--gold-bright);
  letter-spacing: 1px;
}

.piece-price .cur {
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
  margin-right: 4px;
  font-family: 'Cormorant Garamond', serif;
}

.add-btn {
  background: transparent;
  color: var(--gold-bright);
  border: 1px solid var(--gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-btn:hover {
  background: var(--gold);
  color: var(--bg-deep);
  transform: rotate(45deg);
}

/* ============ SIGNATURE SPLIT ============ */
.signature {
  background: var(--bg-velvet);
  margin: 100px 0;
  padding: 100px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.signature::before, .signature::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.signature::before { top: 30px; }
.signature::after { bottom: 30px; }

.signature-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.signature-image {
  position: relative;
  aspect-ratio: 4/5;
  border: 1px solid var(--line);
  padding: 16px;
  background: var(--bg-deep);
  box-shadow: var(--shadow-deep);
}

.signature-image::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid var(--line);
  pointer-events: none;
  z-index: 2;
}

.signature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.05);
}

.signature-content .section-num { margin-bottom: 24px; }

.signature-content h3 {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.signature-content h3 em {
  font-family: 'Italiana', serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(180deg, var(--gold-light), var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.signature-content .h3-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.signature-content p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.signature-content p.en {
  color: var(--text-faint);
  font-size: 14px;
}

.signature-quote {
  font-family: 'Italiana', serif;
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: var(--gold-bright);
  padding: 24px 0 24px 28px;
  border-left: 1px solid var(--gold);
  margin: 28px 0;
  position: relative;
}

.signature-quote::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 8px;
  font-size: 60px;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}

.signature-stats {
  display: flex;
  gap: 48px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sig-stat .value {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 28px;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 8px;
}

.sig-stat .label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 1px;
}

/* ============ CRAFTSMANSHIP ============ */
.craft {
  max-width: 1480px;
  margin: 100px auto;
  padding: 0 48px;
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.craft-card {
  text-align: center;
  padding: 48px 28px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  transition: all 0.5s ease;
  position: relative;
}

.craft-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--line);
  pointer-events: none;
  opacity: 0.4;
}

.craft-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.craft-num {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.craft-icon {
  font-family: 'Cinzel Decorative', serif;
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1;
  text-shadow: 0 0 16px rgba(201, 164, 73, 0.4);
}

.craft-title {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.craft-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.craft-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
}

/* ============ APPOINTMENT ============ */
.appointment {
  max-width: 1480px;
  margin: 100px auto;
  padding: 0 48px;
}

.appointment-frame {
  background:
    linear-gradient(135deg, var(--bg-velvet), var(--bg-deep)),
    radial-gradient(ellipse at center, rgba(201, 164, 73, 0.1), transparent 60%);
  border: 1px solid var(--gold);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

.appointment-frame::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: var(--gold);
  filter: blur(120px);
  opacity: 0.08;
  pointer-events: none;
}

.appointment-frame::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--gold);
  filter: blur(120px);
  opacity: 0.08;
  pointer-events: none;
}

.appointment-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }

.appointment-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.appointment h3 {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.appointment h3 em {
  font-family: 'Italiana', serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(180deg, var(--gold-light), var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.appointment .h3-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.appointment p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-dim);
  margin-bottom: 36px;
}

.appointment p .en {
  display: block;
  color: var(--text-faint);
  font-size: 14px;
  margin-top: 8px;
}

/* ============ FOOTER ============ */
footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--gold);
  padding: 80px 0 32px;
  margin-top: 80px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.footer-brand .logo { text-align: left; margin-bottom: 20px; }
.footer-brand p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-dim);
  max-width: 340px;
}

.footer-brand p.en {
  color: var(--text-faint);
  font-size: 12px;
  margin-top: 8px;
}

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--gold-bright);
  margin-bottom: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }

.footer-col a {
  color: var(--text-dim);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  transition: color 0.3s ease;
  font-style: italic;
}

.footer-col a:hover { color: var(--gold-bright); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 1px;
}

.footer-bottom .socials { display: flex; gap: 24px; }

.footer-bottom .socials a {
  color: var(--text-dim);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.footer-bottom .socials a:hover { color: var(--gold-bright); }

/* ============ ANIMATIONS ============ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content > * { animation: fadeIn 1s ease backwards; }
.hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.hero-content > *:nth-child(2) { animation-delay: 0.4s; }
.hero-content > *:nth-child(3) { animation-delay: 0.6s; }
.hero-content > *:nth-child(4) { animation-delay: 0.8s; }
.hero-content > *:nth-child(5) { animation-delay: 1s; }
.hero-content > *:nth-child(6) { animation-delay: 1.2s; }

.piece-card { animation: fadeIn 0.8s ease backwards; }
.pieces .piece-card:nth-child(1) { animation-delay: 0.1s; }
.pieces .piece-card:nth-child(2) { animation-delay: 0.2s; }
.pieces .piece-card:nth-child(3) { animation-delay: 0.3s; }
.pieces .piece-card:nth-child(4) { animation-delay: 0.4s; }
.pieces .piece-card:nth-child(5) { animation-delay: 0.5s; }
.pieces .piece-card:nth-child(6) { animation-delay: 0.6s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 60px; }
  .hero-title { font-size: 48px; }
  .section-head { grid-template-columns: 1fr; gap: 32px; }
  .section-title { font-size: 44px; }
  .collections { grid-template-columns: repeat(2, 1fr); }
  .pieces { grid-template-columns: repeat(2, 1fr); }
  .signature-inner { grid-template-columns: 1fr; gap: 48px; }
  .signature-content h3 { font-size: 40px; }
  .craft-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-strip { font-size: 11px; padding: 8px 16px; }
  .top-strip .star { margin: 0 8px; }
  .header-inner { grid-template-columns: 1fr auto 1fr; gap: 16px; padding: 0 20px; }
  .header-left { display: none; }
  .logo-name { font-size: 18px; letter-spacing: 3px; }
  .logo-eyebrow, .logo-sub { font-size: 9px; letter-spacing: 2px; }
  .mainnav-inner { gap: 24px; padding: 0 20px; overflow-x: auto; }
  .mainnav a { font-size: 10px; letter-spacing: 1.5px; padding: 14px 0; }
  .hero { padding: 0 20px; margin: 40px auto; }
  .hero-title { font-size: 36px; }
  .hero-cta { flex-direction: column; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .section-head { padding: 0 20px; margin: 60px auto 40px; }
  .section-title { font-size: 32px; }
  .collections { grid-template-columns: 1fr; padding: 0 20px 40px; }
  .pieces { grid-template-columns: 1fr; padding: 0 20px 40px; }
  .signature { padding: 60px 0; }
  .signature-inner { padding: 0 20px; }
  .signature-content h3 { font-size: 30px; }
  .craft { padding: 0 20px; }
  .appointment { padding: 0 20px; }
  .appointment-frame { padding: 48px 24px; }
  .appointment h3 { font-size: 30px; }
  .footer-inner { padding: 0 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
