:root {
  --black: #000000;
  --ivory: #F8F5F0;
  --gold: #D4AF37;
  --gold-2: #C9A227;
  --gold-soft: #f2d983;
  --muted: #B9B3A8;
  --ink: #0A0A0A;
  --radius: 16px;
  --shadow: 0 12px 40px rgba(0,0,0,0.4);
  --max-w: 1200px;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Montserrat', system-ui, -apple-system, sans-serif;
  --gold-grad: linear-gradient(135deg, #D4AF37 0%, #b88910 35%, #f5e7a1 50%, #C9A227 65%, #d9bf6f 100%);
}

body.light-mode {
  --black: #F8F5F0;
  --ivory: #111111;
  --gold: #8B7500;
  --gold-2: #b0901a;
  --gold-soft: #e8d79a;
  --muted: #3d3a35;
  --ink: #ffffff;
  --shadow: 0 12px 40px rgba(0,0,0,0.15);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: dark light;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ivory);
  background:
    radial-gradient(1200px 800px at 70% -10%, rgba(212,175,55,0.08), transparent 60%),
    radial-gradient(900px 600px at 10% 110%, rgba(212,175,55,0.06), transparent 60%),
    var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.4s ease, color 0.3s ease;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold-soft); text-decoration: none; }
a:hover { color: var(--gold); }

.container {
  width: min(94%, var(--max-w));
  margin-inline: auto;
  padding-inline: max(2vw, env(safe-area-inset-left)) max(2vw, env(safe-area-inset-right));
}

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

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212,175,55,0.18);
}

.nav {
  display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 1rem;
  padding: 14px 0;
}

.logo { display: inline-flex; align-items: baseline; gap: 10px; font-weight: 700; letter-spacing: .02em; }

.logo-crest {
  font-family: var(--font-serif);
  font-size: 20px; line-height: 1; padding: 8px 10px; border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.4);
  background: rgba(212,175,55,0.06);
  color: var(--gold);
}

.logo-wordmark {
  font-family: var(--font-serif);
  font-size: 20px;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 10px;
  border: 1px solid rgba(212,175,55,0.35); background: transparent; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--gold); margin: 7px 10px; }

.nav-links {
  list-style: none; display: flex; gap: 24px; padding: 0; margin: 0;
}

.nav-link {
  position: relative; font-weight: 600; color: var(--ivory);
}

.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 100%;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}

.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-actions {
  display: flex; align-items: center; gap: 14px;
}

.social { display: flex; gap: 10px; align-items: center; }

.icon-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold); transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.icon-link:hover { transform: translateY(-2px); border-color: rgba(212,175,55,0.6); background: rgba(212,175,55,0.08); }
.icon { width: 18px; height: 18px; fill: currentColor; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 22px; border-radius: 999px; font-weight: 700; cursor: pointer; border: none;
  background: var(--gold-grad); color: #101010; box-shadow: var(--shadow);
  transition: filter .2s ease, transform .15s ease;
}
.btn:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-outline {
  background: transparent; color: var(--gold); border: 2px solid var(--gold);
  box-shadow: none;
}
.btn-outline:hover { background: rgba(212,175,55,0.12); }

.mode-icon { font-size: 16px; }

/* Ripple */
.ripple { position: relative; overflow: hidden; }
.ripple-circle {
  position: absolute; width: 120px; height: 120px; border-radius: 50%;
  background: rgba(255,255,255,0.35); transform: scale(0); pointer-events: none;
  animation: ripple .6s linear forwards;
}
@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}

/* Hero */
.hero {
  position: relative; isolation: isolate;
  min-height: 100svh; display: grid; place-items: center; text-align: center;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.75)),
    url('assets/hero-fallback.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(212,175,55,0.12), transparent 60%),
    radial-gradient(50% 30% at 30% 100%, rgba(212,175,55,0.08), transparent 60%);
}

.hero-inner { padding-top: 80px; }

.headline {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: .02em;
  margin: 0 0 10px;
  color: var(--ivory);
  text-shadow: 0 12px 40px rgba(0,0,0,0.6);
}

.subhead {
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 20px);
  margin-bottom: 26px;
}

.hero-actions { display: flex; gap: 12px; justify-content: center; }

/* Sections */
.section { padding: 96px 0; border-top: 1px solid rgba(212,175,55,0.12); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 40px);
  color: var(--gold-soft);
  margin: 0 0 8px;
}

.section-kicker { color: var(--muted); margin: 0 0 24px; }

/* Videos */
.video-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.video {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid rgba(212,175,55,0.1);
}
.video iframe { display: block; width: 100%; aspect-ratio: 16/9; border: 0; }

/* Photos */
.gallery {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.frame {
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden; position: relative;
  border: 1px solid rgba(212,175,55,0.18);
  background: #0c0c0c;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform .5s ease; }
.frame:hover img { transform: scale(1.06); }

/* Shop */
.shop-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.product {
  display: grid; grid-template-rows: auto 1fr;
  background: #0b0b0b; border-radius: var(--radius);
  border: 1px solid rgba(212,175,55,0.15);
  box-shadow: var(--shadow);
  overflow: hidden; transition: transform .2s ease, border-color .2s ease;
}
.product:hover { transform: translateY(-3px); border-color: rgba(212,175,55,0.35); }
.product-media img { width: 100%; height: 240px; object-fit: cover; }
.product-info { padding: 16px; display: grid; gap: 10px; }
.product-name { margin: 0; font-weight: 700; color: var(--ivory); }
.product-price { margin: 0; color: var(--gold-soft); font-weight: 700; }
.note { margin-top: 10px; color: var(--muted); }

/* Fade-in on scroll */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Footer */
.site-footer {
  margin-top: 80px; padding: 60px 0 24px;
  background: linear-gradient(180deg, rgba(212,175,55,0.07), rgba(0,0,0,0.8));
  border-top: 1px solid rgba(212,175,55,0.18);
}
.footer-grid {
  display: grid; gap: 28px; grid-template-columns: 2fr 1fr 1fr;
}
.footer-logo .logo-crest { background: rgba(212,175,55,0.08); }
.footer-copy { color: var(--muted); margin-top: 10px; }
.footer-title {
  font-family: var(--font-serif);
  color: var(--gold-soft); margin:

  .footer-title {
    font-family: var(--font-serif);
    color: var(--gold-soft);
    margin: 0 0 12px;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 8px;
  }
  
  .footer-links a {
    color: var(--ivory);
    font-weight: 500;
  }
  
  .footer-links a:hover {
    color: var(--gold);
  }
  
  .footer-social .social {
    flex-wrap: wrap;
  }
  
  .footer-legal {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 24px;
    color: var(--muted);
    font-size: 14px;
  }
  
  /* Responsive tweaks */
  @media (max-width: 960px) {
    .nav-toggle {
      display: inline-block;
    }
    .nav-links {
      display: none;
      flex-direction: column;
      background: rgba(0,0,0,0.9);
      position: absolute;
      top: 64px;
      left: 0;
      right: 0;
      padding: 20px;
    }
    .nav.open .nav-links {
      display: flex;
    }
    .footer-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }
  }