:root {
  --bg: #1a1714;
  --bg-deep: #100e0c;
  --panel: #221d18;
  --gold: #c9a368;
  --gold-bright: #e0bd84;
  --amber: #8b5a2b;
  --cream: #f5efe6;
  --cream-dim: #b8afa1;
  --line: rgba(201, 163, 104, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: -20%;
  left: 50%;
  width: 140vw;
  height: 80vh;
  background: radial-gradient(ellipse at center, rgba(201,163,104,0.07) 0%, transparent 65%);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.display {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

a { color: inherit; text-decoration: none; }

/* ===== HEADER / NAV ===== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  background: rgba(26, 23, 20, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}
.brand .dot { color: var(--gold); }

nav.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}
nav.main-nav a {
  font-size: 0.88rem;
  color: var(--cream-dim);
  transition: color 0.2s ease;
  white-space: nowrap;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--gold-bright);
}

.header-cta {
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.header-cta:hover { background: var(--gold); color: var(--bg-deep); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 80px 6vw 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-glow {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 480px;
  height: 480px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201,163,104,0.16) 0%, rgba(201,163,104,0.04) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.eyebrow {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.hero h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.08;
  color: var(--cream);
  max-width: 16ch;
  font-style: normal;
}
.hero h1 em { color: var(--gold-bright); font-style: italic; }

.hero p {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  font-size: 1.05rem;
  color: var(--cream-dim);
  max-width: 46ch;
  line-height: 1.6;
}

.hero-actions {
  position: relative;
  z-index: 1;
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-subtle-link {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--cream-dim);
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.hero-subtle-link:hover { color: var(--gold-bright); border-color: var(--gold-bright); }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--gold);
  color: var(--bg-deep);
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-1px); }

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--cream-dim);
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--cream); }

.btn-tiktok {
  border: 1px solid var(--line);
  color: var(--cream);
  background: transparent;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.btn-tiktok:hover { border-color: var(--gold); background: rgba(201,163,104,0.08); transform: translateY(-1px); }
.btn-tiktok svg { width: 17px; height: 17px; flex-shrink: 0; }

/* ===== SECTION INTRO ===== */
.section-intro {
  padding: 70px 6vw 10px;
  text-align: center;
}
.section-intro .eyebrow { margin-bottom: 14px; }
.section-intro h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  color: var(--cream);
}
.section-intro p.sub {
  margin-top: 14px;
  color: var(--cream-dim);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px 6vw 10px;
}
.filter-chip {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream-dim);
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-chip:hover { border-color: var(--gold); color: var(--cream); }
.filter-chip.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-deep);
  font-weight: 600;
}

/* ===== PRODUCT GRID ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  padding: 40px 6vw 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,163,104,0.45);
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.55), 0 0 60px -20px rgba(201,163,104,0.35);
}

.card-photo-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at 50% 38%, rgba(201,163,104,0.22) 0%, rgba(201,163,104,0.05) 45%, transparent 72%), var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-photo-wrap img {
  width: 92%;
  height: 92%;
  object-fit: cover;
  border-radius: 10px;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.55));
  transition: transform 0.4s ease;
}
.card:hover .card-photo-wrap img { transform: scale(1.05); }

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(16,14,12,0.7);
  border: 1px solid var(--line);
  color: var(--gold-bright);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}

.card-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.card-cat {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.3;
}

.card-desc {
  font-size: 0.86rem;
  color: var(--cream-dim);
  line-height: 1.55;
  flex: 1;
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  gap: 12px;
  flex-wrap: wrap;
}

.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--gold-bright);
  font-weight: 600;
  white-space: nowrap;
}

.order-btn {
  background: var(--gold);
  color: var(--bg-deep);
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.order-btn:hover { background: var(--gold-bright); transform: translateY(-1px); }
.order-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ===== FEATURED STRIP (home page) ===== */
.featured-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  padding: 30px 6vw 80px;
  max-width: 1300px;
  margin: 0 auto;
}

/* ===== VISIT PAGE ===== */
.visit-page {
  padding: 70px 6vw 100px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 800px) {
  .visit-page { grid-template-columns: 1.1fr 1fr; align-items: start; }
}

.visit-page h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--cream);
  margin-bottom: 16px;
}
.visit-page p {
  color: var(--cream-dim);
  line-height: 1.7;
  font-size: 0.97rem;
  margin-bottom: 22px;
}

.visit-details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
}
.visit-row {
  display: flex;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.visit-row:last-child { border-bottom: none; }
.visit-row .label {
  color: var(--gold);
  min-width: 84px;
  flex-shrink: 0;
  font-weight: 500;
}
.visit-row .value { color: var(--cream-dim); }

.action-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--line);
  padding: 36px 6vw;
  text-align: center;
  color: var(--cream-dim);
  font-size: 0.82rem;
}
footer .brand-small {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 8px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

/* ===== LIGHTBOX ===== */
.card-photo-wrap {
  cursor: zoom-in;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(6px);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vw;
  cursor: zoom-out;
}
.lightbox-overlay.open {
  display: flex;
  animation: lightboxFade 0.2s ease;
}

@keyframes lightboxFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 28px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(26, 23, 20, 0.8);
  color: var(--cream);
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.lightbox-close:hover { border-color: var(--gold); color: var(--gold-bright); }

.lightbox-caption {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream-dim);
  font-size: 0.9rem;
  text-align: center;
  max-width: 80vw;
}