/* ============================================================
   CRYSTAL ART — Premium CSS
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white: #faf8f4;
  --beige: #f2ede4;
  --beige-2: #e8e0d0;
  --gold: #c9a96e;
  --gold-light: #e6c98a;
  --gold-pale: rgba(201,169,110,.12);
  --purple: #7b4fa6;
  --purple-light: #a87fd4;
  --purple-pale: rgba(123,79,166,.08);
  --dark: #1a1520;
  --text: #2a2030;
  --muted: #8a7e90;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --radius-lg: 20px;
  --radius-xl: 32px;
  --section-pad: 120px 24px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

@media (pointer: coarse) {
  body { cursor: auto; }
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
#cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s var(--ease-out), width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s;
  mix-blend-mode: multiply;
}

#cursor-trail {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,169,110,.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left 0.15s var(--ease-out), top 0.15s var(--ease-out), width 0.3s, height 0.3s, opacity 0.3s;
}

body:has(a:hover) #cursor,
body:has(button:hover) #cursor { width: 20px; height: 20px; background: var(--purple-light); }
body:has(a:hover) #cursor-trail,
body:has(button:hover) #cursor-trail { width: 52px; height: 52px; border-color: rgba(168,127,212,.5); }

@media (pointer: coarse) {
  #cursor, #cursor-trail { display: none; }
}

/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out), backdrop-filter 0.4s;
}

#nav.scrolled {
  background: rgba(250,248,244,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 40px;
  border-bottom: 1px solid rgba(201,169,110,.15);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--white);
  transition: color 0.4s;
}

#nav.scrolled .nav-logo { color: var(--text); }

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  text-decoration: none;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

#nav.scrolled .nav-links a { color: var(--muted); }
#nav.scrolled .nav-links a:hover { color: var(--text); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: background 0.3s, transform 0.3s;
}

#nav.scrolled .nav-burger span { background: var(--text); }

/* Language switch */
.lang-switch { display: flex; gap: 2px; }
.lang-switch button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: .7rem;
  letter-spacing: .1em;
  padding: 4px 6px;
  color: rgba(255,255,255,.55);
  transition: color 0.3s;
}
.lang-switch button:hover,
.lang-switch button.active { color: var(--gold-light); }
#nav.scrolled .lang-switch button { color: var(--muted); }
#nav.scrolled .lang-switch button.active { color: var(--gold); }

@media (max-width: 768px) {
  .lang-switch { margin-left: auto; margin-right: 12px; }
  #nav { padding: 20px 24px; }
  #nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* Mobile menu */
#mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

#mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mm-link {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: .05em;
  transition: color 0.2s;
}

.mm-link:hover { color: var(--gold); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: var(--gold);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .05em;
  border: none;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), background 0.4s;
  box-shadow: 0 4px 20px rgba(201,169,110,.3);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 36px rgba(201,169,110,.45);
  background: var(--gold-light);
}

.btn-outline {
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: .8rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: background 0.4s var(--ease-out), color 0.4s;
}

.btn-outline:hover {
  background: var(--gold);
  color: #fff;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--muted);
  padding: 16px 28px;
  border-radius: 50px;
  font-size: .875rem;
  border: 1px solid var(--beige-2);
  transition: border-color 0.3s, color 0.3s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--text);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-up.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--text);
}

h2 em {
  font-style: italic;
  color: var(--purple);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}

.hero-title .italic {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(.875rem, 2vw, 1rem);
  color: rgba(255,255,255,.65);
  margin-bottom: 24px;
  line-height: 1.8;
}

.hero-award {
  display: table;
  margin-left: auto;
  margin-right: auto;
  font-size: .75rem;
  letter-spacing: .06em;
  color: var(--gold-light);
  border: 1px solid rgba(201,169,110,.35);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 36px;
}

.br-hide { display: block; }
@media (max-width: 480px) { .br-hide { display: none; } }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll-hint span {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(201,169,110,.6), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); transform-origin: top; }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  padding: var(--section-pad);
  max-width: 1100px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

.about-text h2 { margin-bottom: 24px; }

.about-text p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: .95rem;
  line-height: 1.9;
}

.about-visual {
  position: relative;
  height: 560px;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  border-radius: var(--radius-xl);
}

.about-inset {
  position: absolute;
  top: 28px;
  left: -28px;
  width: 38%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 50% 58%;
  border-radius: 50%;
  border: 5px solid var(--white);
  box-shadow: 0 12px 32px rgba(26,21,32,.18);
}

@media (max-width: 768px) {
  .about-inset { left: 12px; top: 12px; width: 32%; }
}

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 40px; display: block; transition: filter 0.4s, height 0.4s; }
#nav.scrolled .nav-logo img { height: 34px; filter: invert(1) brightness(.35); }

.about-visual .about-card { top: auto; bottom: -28px; transform: translateX(-50%); }

.about-orb {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #c9a96e44, #7b4fa633 50%, transparent 70%),
              radial-gradient(circle at 70% 60%, #a87fd433, transparent 60%);
  filter: blur(2px);
  top: 0;
  left: 0;
  animation: orb-float 7s ease-in-out infinite;
}

.about-orb-2 {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #7b4fa622, transparent 70%);
  border: 1px solid rgba(201,169,110,.2);
  bottom: 0;
  right: 0;
  animation: orb-float 9s ease-in-out infinite reverse;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(8deg); }
}

.about-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(250,248,244,.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,169,110,.25);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex;
  gap: 40px;
  box-shadow: 0 8px 40px rgba(123,79,166,.08), 0 2px 8px rgba(201,169,110,.1);
  white-space: nowrap;
}

.about-stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   GALLERY
   ============================================================ */
#gallery {
  padding: 100px 0 120px;
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 40px;
}

.gallery-header h2 { margin-bottom: 12px; }

.gallery-sub {
  font-size: .875rem;
  color: var(--muted);
  letter-spacing: .05em;
}

.gallery-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 24px;
  margin-bottom: 48px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--beige-2);
  color: var(--muted);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  font-family: var(--font-sans);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

/* Horizontal track */
.gallery-track-wrapper {
  position: relative;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 24px;
  padding: 0 40px 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar { display: none; }

.gallery-item {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  background: var(--beige);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 60px rgba(123,79,166,.15), 0 4px 16px rgba(0,0,0,.08);
}

/* All cards the same size; 3:4 matches the product photos */
.gallery-item { aspect-ratio: 3 / 4; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,21,32,.85) 0%, rgba(26,21,32,.1) 50%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gi-cat {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.gi-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: #fff;
  font-weight: 300;
  margin-bottom: 4px;
}

.gi-desc {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}

/* Placeholder when no image */
.gallery-item-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e0d0, #d4c9e0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--muted);
  font-style: italic;
}

/* Arrows */
.track-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(250,248,244,.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,169,110,.25);
  color: var(--text);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.track-arrow:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.track-arrow.left { left: 12px; }
.track-arrow.right { right: 12px; }

/* Dots */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--beige-2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.gallery-dot.active { background: var(--gold); width: 20px; border-radius: 3px; }

@media (max-width: 900px) {
  .gallery-item { flex: 0 0 72vw; }
}

@media (max-width: 480px) {
  .gallery-item { flex: 0 0 88vw; min-width: 260px; }
  .gallery-track { padding: 0 16px 20px; gap: 16px; }
}

/* ============================================================
   PRICING
   ============================================================ */
#pricing {
  padding: var(--section-pad);
  background: var(--beige);
}

.pricing-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 64px;
}

.pricing-header h2 { margin-bottom: 16px; }
.pricing-header p { color: var(--muted); font-size: .95rem; }

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}

.pricing-grid > .pricing-card { flex: 0 1 270px; }

@media (max-width: 768px) {
  .pricing-grid { max-width: 400px; }
  .pricing-grid > .pricing-card { flex-basis: 100%; }
}

.pricing-card {
  background: var(--white);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(123,79,166,.1), 0 4px 16px rgba(0,0,0,.04);
}

.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,169,110,.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-icon { font-size: 2rem; margin-bottom: 16px; }

.pricing-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.price-range {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 24px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 28px;
  text-align: left;
}

.pricing-card ul li {
  font-size: .875rem;
  color: var(--muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--beige);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-card ul li::before {
  content: '·';
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 0;
  flex-shrink: 0;
}

/* ============================================================
   SHIPPING
   ============================================================ */
#shipping {
  padding: var(--section-pad);
  text-align: center;
}

.shipping-inner { max-width: 600px; margin: 0 auto; }
.shipping-inner h2 { margin-bottom: 40px; }

.shipping-flags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.flag-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--beige);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: var(--radius-lg);
  padding: 16px 28px;
  transition: transform 0.4s var(--ease-out);
}

.flag-item:hover { transform: translateY(-3px); }

.flag-icon { font-size: 1.8rem; }

.flag-item span:last-child {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
}

.flag-sep {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
}

.ship-note {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.8;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  position: relative;
  padding: 140px 24px;
  text-align: center;
  overflow: hidden;
  background: var(--dark);
}

.contact-bg-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(123,79,166,.25), rgba(201,169,110,.05) 50%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: orb-float 10s ease-in-out infinite;
}

.contact-inner { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }

.contact-inner .section-label { color: var(--gold-light); }

.contact-inner h2 {
  color: #fff;
  margin-bottom: 20px;
}

.contact-inner h2 em { color: var(--gold-light); }

.contact-sub {
  color: rgba(255,255,255,.55);
  margin-bottom: 44px;
  font-size: .95rem;
  line-height: 1.8;
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.insta-btn { background: linear-gradient(135deg, #c9a96e, #a87fd4); }
.insta-btn:hover { background: linear-gradient(135deg, #d4ba85, #b98fe0); box-shadow: 0 8px 36px rgba(168,127,212,.4); }

.btn-ghost { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.6); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

.contact-handle {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(255,255,255,.3);
  font-style: italic;
  letter-spacing: .05em;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 28px 24px;
}

.footer-links { font-size: .75rem; }
.footer-links a { color: rgba(255,255,255,.45); text-decoration: none; }
.footer-links a:hover { color: var(--gold-light); }
.of-privacy a { color: var(--gold-light); }

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 560px;
  margin: 0 auto;
  z-index: 900;
  background: var(--dark);
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(201,169,110,.3);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
  font-size: .85rem;
  line-height: 1.6;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner a { color: var(--gold-light); font-size: .75rem; }
.ck-actions { display: flex; gap: 10px; margin: 14px 0 10px; }
.ck-btn {
  flex: 1;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.ck-btn:hover { background: var(--gold); color: var(--dark); }

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: .1em;
}

.footer-inner p {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
}

.footer-admin {
  font-size: .9rem;
  color: rgba(255,255,255,.15);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-admin:hover { color: var(--gold); }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,21,32,.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 820px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.5s var(--ease-out);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .modal-box {
  transform: none;
}

@media (max-width: 600px) {
  .modal-box { grid-template-columns: 1fr; }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: rgba(250,248,244,.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--beige-2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: .9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: var(--text);
}

.modal-close:hover { background: var(--dark); color: #fff; border-color: var(--dark); }

.modal-img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: var(--beige);
}

.modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.modal-box:hover .modal-img-wrap img { transform: scale(1.03); }

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(250,248,244,.85);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s;
}
.modal-nav:hover { background: #fff; }
.modal-nav.prev { left: 12px; }
.modal-nav.next { right: 12px; }
.modal-nav[hidden], .modal-counter[hidden] { display: none; }

.modal-counter {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26,21,32,.6);
  color: #fff;
  font-size: .75rem;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
}

.modal-info {
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.modal-cat {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

.modal-info h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text);
}

.modal-info p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.8;
}

.gi-price {
  color: var(--gold-light);
  font-size: .95rem;
  margin-bottom: 4px;
}

.modal-info .modal-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  margin: 4px 0 16px;
}

.modal-size {
  font-size: .8rem;
  color: var(--muted);
  font-style: italic;
}

@media (max-width: 480px) {
  .modal-info { padding: 28px 24px; }
  #nav { padding: 16px 20px; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
::selection {
  background: rgba(201,169,110,.25);
  color: var(--text);
}

/* Empty state for gallery */
.gallery-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--muted);
}

.gallery-empty h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 8px;
}
/* ============================================================
   ORDER FORM
   ============================================================ */
.ship-small { font-size: .8rem; margin-top: 12px; }

.order-form { text-align: left; display: grid; gap: 16px; margin-bottom: 48px; }
.of-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .of-row { grid-template-columns: 1fr; } }

.order-form label {
  display: grid;
  gap: 6px;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  color: #fff;
  font: inherit;
  font-size: .95rem;
  letter-spacing: normal;
  text-transform: none;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.3s;
}
.order-form textarea { resize: vertical; }
.order-form select option { background: var(--dark); }
.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus { border-color: var(--gold); }

.order-form .btn-primary { justify-self: center; border: none; cursor: pointer; }
.order-form .btn-primary:disabled { opacity: .6; cursor: wait; }

.of-hp { position: absolute; left: -9999px; }
.of-privacy { font-size: .75rem; color: rgba(255,255,255,.4); text-align: center; }
.of-status { min-height: 1.2em; text-align: center; color: var(--gold-light); font-size: .9rem; }

.contact-alt { color: rgba(255,255,255,.45); font-size: .85rem; margin-bottom: 16px; }

/* ============================================================
   LENIS SMOOTH SCROLL (rules from lenis.css)
   ============================================================ */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis:not(.lenis-autoToggle).lenis-stopped { overflow: clip; }
.lenis [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-smooth iframe { pointer-events: none; }
