/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
  --bg: #080807;
  --bg-alt: #0c0b09;
  --bg-panel: #12100c;
  --bg-panel-2: #17140f;

  --ink: #eee8dc;
  --ink-dim: #a9a196;
  --ink-mute: #83796c;

  --gold: #d6a64a;
  --gold-soft: #e4b45b;
  --gold-light: #f0d39b;

  --gold-line: rgba(214, 166, 74, .2);
  --gold-line-soft: rgba(214, 166, 74, .12);
  --gold-line-strong: rgba(214, 166, 74, .35);

  --container: 1360px;
  --gutter: 7vw;
  --radius: 2px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Fine film-grain texture over the whole page for a tactile, non-digital feel */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Thin gold hairline used as a decorative section break */
.divider {
  position: relative;
  height: 1px;
  max-width: var(--container);
  margin: 0 auto;
  background: linear-gradient(to right, transparent, var(--gold-line-strong) 50%, transparent);
}
.divider::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 7px; height: 7px;
  background: var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 12px rgba(214, 166, 74, .5);
}

/* ==========================================================================
   Shared
   ========================================================================== */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--gold-soft);
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 600;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: .7;
  flex-shrink: 0;
}

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  height: 76px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 20;
  background: rgba(8, 8, 7, .4);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.nav.scrolled {
  background: rgba(8, 8, 7, .86);
  border-bottom-color: var(--gold-line-soft);
  box-shadow: 0 12px 30px -20px rgba(0, 0, 0, .6);
}
.nav-inner {
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  color: var(--gold);
  font-weight: 600;
}
.brand span, .seal span { font-size: 15px; }

.nav nav { display: flex; gap: 34px; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; }
.nav nav a { position: relative; padding: 4px 0; transition: color .25s var(--ease); }
.nav nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right .3s var(--ease);
}
.nav nav a:hover { color: var(--gold); }
.nav nav a:hover::after { right: 0; }

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

.select-wrap { position: relative; display: inline-flex; align-items: center; }
.select-wrap::after {
  content: '';
  position: absolute;
  right: 11px; top: 50%;
  width: 6px; height: 6px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.lang-select {
  background: var(--bg-panel);
  color: var(--gold);
  border: 1px solid var(--gold-line-strong);
  font: 600 12px 'Inter', sans-serif;
  padding: 6px 26px 6px 10px;
  border-radius: var(--radius);
  letter-spacing: 1px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .25s var(--ease);
}
.lang-select:hover { border-color: var(--gold); }
.lang-select option { background: var(--bg-panel); color: var(--ink); }

.menu { display: none; background: none; border: 0; color: var(--gold); font-size: 24px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050505;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 32% 20%;
  filter: blur(1px) brightness(.42) saturate(1.05);
  transform: scale(1.08);
  will-change: transform;
}
.hero-bg-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 78% 42%, rgba(164, 116, 35, .18), transparent 40%),
    linear-gradient(100deg, rgba(5, 5, 5, .94) 0%, rgba(5, 5, 5, .78) 42%, rgba(5, 5, 5, .55) 68%, rgba(5, 5, 5, .82) 100%),
    linear-gradient(to bottom, rgba(5, 5, 5, .3), transparent 22%, transparent 78%, rgba(5, 5, 5, .55));
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 110px var(--gutter) 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(70px, 10vw, 150px);
  line-height: .85;
  margin: 0 0 28px;
  letter-spacing: 4px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold) 75%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 35px rgba(214, 166, 74, .18));
}
.lead { max-width: 500px; color: var(--ink-dim); font-size: 18px; line-height: 1.8; margin-bottom: 34px; }

.gold-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  background: linear-gradient(180deg, rgba(214, 166, 74, .16), rgba(214, 166, 74, .04));
  padding: 14px 24px;
  border-radius: var(--radius);
  font: 600 12px 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.gold-btn::after { content: '\2192'; transition: transform .25s var(--ease); }
.gold-btn:hover { background: var(--gold); color: var(--bg); transform: translateY(-2px); }
.gold-btn:hover::after { transform: translateX(4px); }

.hero-art { position: relative; display: flex; justify-content: center; align-items: center; }
.glow { position: absolute; width: 65%; aspect-ratio: 1; border-radius: 50%; background: rgba(189, 137, 48, .14); filter: blur(70px); }

.art-frame { position: relative; z-index: 2; padding: 14px; border: 1px solid var(--gold-line-strong); }
.art-frame::before { content: ''; position: absolute; inset: 6px; border: 1px solid var(--gold-line); pointer-events: none; }
.art-frame img {
  width: min(560px, 100%);
  filter: drop-shadow(0 35px 35px rgba(0, 0, 0, .8));
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 50% { transform: translateY(-10px); } }

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 28px;
  width: 1px; height: 46px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, var(--gold-line-strong));
  pointer-events: none;
}
.scroll-cue::after {
  content: '';
  position: absolute;
  left: 50%; top: 0;
  width: 5px; height: 5px;
  margin-left: -2px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollDot 2.4s ease-in-out infinite;
}
@keyframes scrollDot { 0% { top: 0; opacity: 1; } 80%, 100% { top: 40px; opacity: 0; } }

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding: 110px var(--gutter); }
.section-heading { max-width: 760px; margin: 0 auto 55px; }
.section-heading h2, .producer h2 {
  font: 500 clamp(36px, 5vw, 64px) 'Cinzel', serif;
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--gold-light);
}
.section-heading p:not(.eyebrow), .producer p { color: var(--ink-dim); line-height: 1.8; }

.cards { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  position: relative;
  overflow: hidden;
  padding: 40px 34px 34px;
  background: linear-gradient(145deg, var(--bg-panel-2), var(--bg-panel));
  border: 1px solid var(--gold-line);
  min-height: 240px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--gold-line-strong); box-shadow: 0 24px 40px -20px rgba(0, 0, 0, .6); }
.card .number { position: absolute; top: -8px; right: 16px; font: 500 76px/1 'Cinzel', serif; color: var(--gold); opacity: .1; pointer-events: none; }
.card h3 { position: relative; font: 500 24px 'Cinzel', serif; color: var(--gold-light); margin: 0 0 12px; }
.card p { position: relative; color: var(--ink-dim); line-height: 1.7; margin: 0; }

.showcase {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--gold-line-soft);
  border-bottom: 1px solid var(--gold-line-soft);
}
.showcase-bg { position: absolute; inset: 0; z-index: 0; }
.showcase-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% 22%;
  filter: brightness(.85);
  will-change: transform;
}
.showcase-veil {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8, 8, 7, .95) 0%, rgba(8, 8, 7, .74) 40%, rgba(8, 8, 7, .28) 68%, rgba(8, 8, 7, .55) 100%);
  box-shadow: inset 0 0 90px 20px rgba(0, 0, 0, .5);
}
.showcase-inner { position: relative; z-index: 1; width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.showcase-copy { max-width: 460px; }
.showcase-text { font: 500 30px/1.6 'Cinzel', serif; color: var(--gold-light); max-width: 420px; margin: 0; }

.producer {
  padding: 90px var(--gutter);
  border-bottom: 1px solid var(--gold-line-soft);
  background: radial-gradient(circle at 12% 30%, rgba(214, 166, 74, .05), transparent 45%), var(--bg-alt);
}
.producer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.producer-inner > div:first-child { max-width: 780px; }
.producer-quote { position: relative; }
.quote-mark {
  position: absolute;
  top: -34px; left: -6px;
  font: 400 110px/1 'Cinzel', serif;
  color: var(--gold);
  opacity: .14;
  pointer-events: none;
}
.seal {
  width: 120px; height: 120px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font: 42px 'Cinzel', serif;
  box-shadow: inset 0 0 0 7px rgba(214, 166, 74, .08), 0 0 35px rgba(214, 166, 74, .08);
}

.contact-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }

.contact-info { border-top: 1px solid var(--gold-line-strong); }
.contact-row { display: flex; flex-direction: column; gap: 8px; padding: 22px 0; border-bottom: 1px solid var(--gold-line); }
.row-label { display: flex; align-items: center; gap: 10px; color: var(--ink-mute); font-size: 12px; text-transform: uppercase; letter-spacing: 2px; }
.row-icon { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.contact-row strong { font: 500 20px 'Cinzel', serif; color: var(--gold-light); }

.contact-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  background: linear-gradient(145deg, var(--bg-panel-2), var(--bg-panel));
  border: 1px solid var(--gold-line);
}
.contact-form label { display: grid; gap: 8px; color: var(--ink-dim); font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 15px;
  background: var(--bg-panel);
  border: 1px solid var(--gold-line);
  color: var(--ink);
  font: 15px 'Inter', sans-serif;
  outline: none;
  resize: vertical;
  transition: border-color .25s var(--ease);
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }
.form-message { margin: 0; color: var(--gold); font-size: 13px; min-height: 1em; }

/* ==========================================================================
   Footer
   ========================================================================== */
footer { padding: 45px var(--gutter); text-align: center; border-top: 1px solid var(--gold-line-soft); color: var(--ink-mute); }
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-brand { font: 28px 'Cinzel', serif; color: var(--gold); margin-bottom: 12px; }
footer p { font-size: 12px; }

.social { display: flex; justify-content: center; gap: 14px; margin: 18px 0 24px; }
.social-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold-line-strong);
  border-radius: 50%;
  color: var(--gold);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.social-icon:hover { background: var(--gold); color: var(--bg); transform: translateY(-2px); }
.social-icon svg { width: 18px; height: 18px; }

/* ==========================================================================
   Scroll reveal (progressive enhancement — see script.js)
   ========================================================================== */
.reveal.will-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.will-reveal.in-view { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 800px) {
  .nav nav { display: none; }
  .menu { display: block; }
  .nav.open nav {
    display: flex;
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: #0b0a08;
    border-bottom: 1px solid var(--gold-line);
  }
  .nav.open nav a { padding: 18px var(--gutter); }
  .nav nav a::after { display: none; }

  .hero-inner { grid-template-columns: 1fr; padding-top: 120px; text-align: center; }
  .hero-copy { order: 1; }
  .hero-art { order: 0; }
  .hero .eyebrow { justify-content: center; }
  .lead { margin-left: auto; margin-right: auto; }
  .scroll-cue { display: none; }

  .cards, .contact-grid { grid-template-columns: 1fr; }

  .showcase { min-height: 60vh; padding: 70px 0; }
  .showcase-bg img { object-position: 68% center; }
  .showcase-copy { text-align: center; margin: 0 auto; }
  .showcase-copy .eyebrow { justify-content: center; }
  .showcase-text { margin: 0 auto; }

  .producer-inner { align-items: flex-start; flex-direction: column; }
  .quote-mark { top: -26px; font-size: 80px; }
  .seal { width: 90px; height: 90px; font-size: 30px; }

  .section { padding: 80px var(--gutter); }
}
