/* ==========================================================================
   GINVILLE™ — Dark Luxe
   A 1920s speakeasy meets modern luxury spirits brand.
   ========================================================================== */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  --denim: #1B3352;
  --denim-deep: #0F1F33;
  --denim-hover: #2A4A6B;
  --gold: #C9A84C;
  --gold-soft: #E1C97A;
  --gold-deep: #8E7630;
  --black: #0D0D0D;
  --ink: #161513;
  --cream: #F5F0E8;
  --cream-muted: #C9C3B8;
  --cream-faint: #7B7770;
  --border: rgba(201, 168, 76, 0.18);
  --border-strong: rgba(201, 168, 76, 0.35);

  /* Mode-aware */
  --bg: var(--black);
  --bg-elev: #141311;
  --surface: rgba(20, 19, 17, 0.72);
  --text: var(--cream);
  --text-muted: var(--cream-muted);
  --text-faint: var(--cream-faint);
  --accent: var(--gold);
  --accent-hover: var(--gold-soft);

  /* Type */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Radii + shadows */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 10px 40px rgba(201, 168, 76, 0.18);

  /* Easings */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0.05, 0.36, 1);
}

[data-theme="light"] {
  --bg: #F5F0E8;
  --bg-elev: #EDE6D9;
  --surface: rgba(245, 240, 232, 0.82);
  --text: #14110B;
  --text-muted: #4F4A41;
  --text-faint: #8A8578;
  --border: rgba(27, 51, 82, 0.16);
  --border-strong: rgba(27, 51, 82, 0.32);
  --shadow-soft: 0 20px 60px rgba(27, 51, 82, 0.18);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease-out); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; color: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.4rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { margin: 0 0 1em; color: var(--text-muted); }

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-block;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 0.8rem;
  opacity: 0.8;
}

.deco-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gold);
  margin: 1.8rem 0;
}
.deco-divider::before, .deco-divider::after {
  content: "";
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.deco-divider svg { opacity: 0.9; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
  position: relative;
  z-index: 2;
}
.section {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ---------- Full-bleed immersive background ---------- */
.section-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 28s ease-in-out infinite;
  will-change: transform;
}
.section-bg--slow { animation-duration: 38s; }
.section-bg--alt { animation-direction: alternate; }

@keyframes kenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  50%  { transform: scale(1.12) translate(-1.5%, -1%); }
  100% { transform: scale(1) translate(0, 0); }
}

.section-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(13,13,13,0.78) 0%, rgba(13,13,13,0.55) 40%, rgba(13,13,13,0.88) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(27,51,82,0.35) 0%, transparent 60%);
}
.section-overlay--dark {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.86) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.92) 100%);
}
.section-overlay--denim {
  background:
    linear-gradient(180deg, rgba(15,31,51,0.88) 0%, rgba(13,13,13,0.78) 100%);
}

[data-theme="light"] .section-overlay {
  background:
    linear-gradient(180deg, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0.35) 50%, rgba(13,13,13,0.7) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .section-bg { animation: none; }
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all .4s var(--ease-out);
  background: transparent;
  backdrop-filter: blur(0);
}
.nav.nav--scrolled {
  padding: 0.75rem 0;
  background: rgba(13, 13, 13, 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}
[data-theme="light"] .nav.nav--scrolled {
  background: rgba(245, 240, 232, 0.88);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream);
  flex-shrink: 0;
}
[data-theme="light"] .nav__logo { color: var(--denim-deep); }
.nav__logo svg { color: var(--gold); }
.nav__logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.22em;
}
.nav__logo-tm {
  font-size: 0.55em;
  vertical-align: super;
  color: var(--gold);
  margin-left: 2px;
  letter-spacing: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream);
  position: relative;
  padding: 4px 0;
}
[data-theme="light"] .nav__links a { color: var(--denim-deep); }
.nav__links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease-out);
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { width: 100%; }

.nav__tools {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: var(--cream);
  transition: all .3s var(--ease-out);
}
[data-theme="light"] .theme-toggle { color: var(--denim-deep); }
.theme-toggle:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
}
.nav__burger span {
  width: 16px; height: 1.5px;
  background: var(--cream);
  transition: all .3s var(--ease-out);
}
[data-theme="light"] .nav__burger span { background: var(--denim-deep); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.85) contrast(1.05) brightness(0.7);
}
.hero-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(27, 51, 82, 0.7) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(201, 168, 76, 0.35) 0%, transparent 55%),
    linear-gradient(135deg, #0D0D0D 0%, #1B3352 50%, #0D0D0D 100%);
  background-size: 200% 200%;
  animation: gradientShift 18s ease-in-out infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0.45) 50%, rgba(13,13,13,0.9) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(13,13,13,0.6) 100%);
}
.hero__content { position: relative; z-index: 2; padding: 2rem 1.5rem; max-width: 920px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  background: rgba(13,13,13,0.35);
  backdrop-filter: blur(8px);
}
.hero__badge::before, .hero__badge::after {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  color: var(--cream);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.55);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero h1 .tm {
  font-size: 0.3em;
  vertical-align: super;
  color: var(--gold);
  font-weight: 400;
  margin-left: 6px;
}
.hero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--cream-muted);
  margin-bottom: 2.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero__cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .35s var(--ease-out);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 10px 40px rgba(201,168,76,0.28);
}
.btn--gold:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 14px 50px rgba(201,168,76,0.4);
}
.btn--ghost {
  background: rgba(255,255,255,0.04);
  color: var(--cream);
  border-color: var(--border-strong);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  color: var(--gold);
}
.btn svg { width: 14px; height: 14px; transition: transform .3s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--cream);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  opacity: 0.85;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -20px; left: 0;
  width: 100%; height: 20px;
  background: var(--gold);
  animation: scrollDot 2.2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { top: -20px; opacity: 0; }
  30%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ==========================================================================
   SECTION HEADING
   ========================================================================== */
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
  color: var(--cream);
  position: relative;
  z-index: 2;
}
.section-head h2 {
  color: var(--cream);
  margin-bottom: 1rem;
}
.section-head h2 em { color: var(--gold); font-style: italic; }
.section-head p {
  font-size: 1.1rem;
  color: var(--cream-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Keep section content bright regardless of theme (bg is always dark overlay) */
.section-dark-content, .section-dark-content h2, .section-dark-content h3 { color: var(--cream); }
.section-dark-content p { color: var(--cream-muted); }

/* ==========================================================================
   ABOUT — feature cards (glass)
   ========================================================================== */
.about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 4rem;
}
.feature-card {
  padding: 2.5rem 2rem;
  background: rgba(20, 19, 17, 0.5);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all .45s var(--ease-out);
  position: relative;
  overflow: hidden;
  color: var(--cream);
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
  transition: transform .6s var(--ease-out);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  background: rgba(27, 51, 82, 0.35);
}
.feature-card:hover::before { transform: translateX(100%); }
.feature-card__icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.feature-card h3 {
  color: var(--cream);
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}
.feature-card p { color: var(--cream-muted); margin-bottom: 0; }

/* ==========================================================================
   REVIEWS — magazine grid
   ========================================================================== */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.review-card {
  background: rgba(13,13,13,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all .45s var(--ease-out);
  color: var(--cream);
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.review-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--denim-deep);
}
.review-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.review-card:hover .review-card__media img { transform: scale(1.08); }
.review-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,13,13,0.65) 100%);
}
.review-card__tag {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
  padding: 0.3rem 0.9rem;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(13,13,13,0.72);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(6px);
  border-radius: 2px;
}
.review-card__body {
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.review-card h3 { color: var(--cream); margin-bottom: 0.4rem; }
.review-card__origin {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.review-card__excerpt {
  color: var(--cream-muted);
  font-size: 0.95rem;
  flex: 1;
}
.review-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}
.rating { display: flex; gap: 4px; }
.rating__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
}
.rating__dot--on { background: var(--gold); }
.read-link {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap .3s var(--ease-out);
}
.read-link:hover { gap: 0.8rem; }

/* ==========================================================================
   RECIPES
   ========================================================================== */
.recipes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.recipe-card {
  padding: 2.2rem;
  background: rgba(13,13,13,0.55);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all .45s var(--ease-out);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.recipe-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(27,51,82,0.2) 100%);
  pointer-events: none;
}
.recipe-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: rgba(27,51,82,0.45);
}
.recipe-card__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 3.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.8;
}
.recipe-card h3 { color: var(--cream); margin-bottom: 0.5rem; }
.recipe-card__meta {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.recipe-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  color: var(--cream-muted);
  font-size: 0.95rem;
}
.recipe-card li {
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--border);
  display: flex;
  justify-content: space-between;
}
.recipe-card li:last-child { border: 0; }
.recipe-card__method {
  font-style: italic;
  color: var(--cream-faint);
  font-size: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ==========================================================================
   CLUB
   ========================================================================== */
.club__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.club__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-soft);
}
.club__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenBurns 30s ease-in-out infinite;
}
.club__visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,13,13,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
.club__visual-cap {
  color: var(--cream);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
}
.club__visual-cap strong {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.club__copy { color: var(--cream); }
.club__copy h2 { color: var(--cream); }
.club__copy h2 em { color: var(--gold); font-style: italic; }
.club__features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}
.club__features li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--cream-muted);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.club__features li::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.club__price {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--gold);
  font-weight: 700;
}
.club__price small {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--cream-faint);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ==========================================================================
   FORMS
   ========================================================================== */
.form {
  display: grid;
  gap: 1.2rem;
  max-width: 620px;
  margin: 0 auto;
}
.form--wide { max-width: 100%; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form__field { position: relative; }
.form__field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.form__field input,
.form__field textarea,
.form__field select {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(13,13,13,0.55);
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  color: var(--cream);
  font-size: 0.95rem;
  transition: all .3s var(--ease-out);
  backdrop-filter: blur(8px);
}
.form__field textarea { min-height: 140px; resize: vertical; }
.form__field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 2.5rem; }
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(27,51,82,0.35);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form__field input::placeholder,
.form__field textarea::placeholder { color: var(--cream-faint); }
.form__hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form__actions { display: flex; justify-content: center; margin-top: 0.5rem; }
.form__note { font-size: 0.78rem; color: var(--cream-faint); text-align: center; letter-spacing: 0.12em; }

/* ==========================================================================
   SHOP
   ========================================================================== */
.shop__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.product-card {
  background: rgba(13,13,13,0.55);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all .45s var(--ease-out);
  color: var(--cream);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.product-card__media {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--denim-deep) 0%, var(--black) 100%);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--gold);
}
.product-card__media svg { width: 40%; height: 40%; opacity: 0.7; transition: transform .6s var(--ease-out); }
.product-card:hover .product-card__media svg { transform: scale(1.1) rotate(-2deg); }
.product-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(13,13,13,0.7) 100%);
}
.product-card__badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  padding: 0.3rem 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
}
.product-card__badge--soon { background: rgba(13,13,13,0.8); color: var(--gold); border: 1px solid var(--gold); }
.product-card__body { padding: 1.8rem; display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.product-card h3 { color: var(--cream); margin: 0 0 0.3rem; font-size: 1.2rem; }
.product-card__desc { color: var(--cream-faint); font-size: 0.85rem; margin: 0; }
.product-card__price { font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold); font-weight: 700; white-space: nowrap; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  position: relative;
  padding: 5rem 0 2rem;
  background: #050505;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(27,51,82,0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 100%, rgba(201,168,76,0.1) 0%, transparent 50%);
  z-index: 0;
}
.footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.footer__brand .nav__logo { margin-bottom: 1.5rem; }
.footer__brand p { color: var(--cream-muted); font-size: 0.95rem; max-width: 320px; }
.footer__est {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border-strong);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
}
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}
.footer__links a {
  color: var(--cream-muted);
  font-size: 0.92rem;
  transition: color .3s var(--ease-out);
}
.footer__links a:hover { color: var(--gold); }

.social-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.social-row a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--cream-muted);
  transition: all .3s var(--ease-out);
}
.social-row a:hover {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.social-row svg { width: 16px; height: 16px; }

.footer__bottom {
  position: relative;
  z-index: 1;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--cream-faint);
  letter-spacing: 0.08em;
}
.footer__bottom a { color: var(--gold); }
.footer__bottom a:hover { color: var(--gold-soft); }

/* ==========================================================================
   NEWSROOM
   ========================================================================== */
.newsroom-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
}
.newsroom-hero__content { position: relative; z-index: 2; max-width: 820px; padding: 7rem 1.5rem 3rem; }
.newsroom-hero h1 { color: var(--cream); font-size: clamp(2.6rem, 6vw, 5rem); }
.newsroom-hero h1 em { color: var(--gold); font-style: italic; }
.newsroom-hero p { color: var(--cream-muted); font-size: 1.15rem; max-width: 600px; margin: 1.5rem auto 2rem; }
.lang-switch {
  display: inline-flex;
  gap: 0;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 4px;
  background: rgba(13,13,13,0.55);
  backdrop-filter: blur(10px);
}
.lang-switch a {
  padding: 0.45rem 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-muted);
  border-radius: 999px;
}
.lang-switch a.is-active { background: var(--gold); color: var(--black); }

.press-index {
  display: grid;
  gap: 1.2rem;
  margin-top: 3rem;
}
.press-index__item {
  display: grid;
  grid-template-columns: 140px 110px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 1.75rem;
  background: rgba(13,13,13,0.55);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all .4s var(--ease-out);
}
.press-index__item:hover {
  border-color: var(--gold);
  transform: translateX(4px);
  background: rgba(27,51,82,0.4);
}
.press-index__date {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-faint);
}
.press-index__tag {
  justify-self: start;
  padding: 0.3rem 0.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-strong);
  border-radius: 2px;
}
.press-index__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--cream);
  font-weight: 600;
  line-height: 1.3;
}
.press-index__title a:hover { color: var(--gold); }

.press-release {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
  isolation: isolate;
  scroll-margin-top: 90px;
}
.press-release__article {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(13,13,13,0.72);
  backdrop-filter: blur(14px) saturate(1.15);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--cream);
}
.press-release__meta {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.press-release__dateline {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-size: 0.9rem;
}
.press-release__category {
  padding: 0.3rem 0.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-strong);
  border-radius: 2px;
}
.press-release h2 {
  color: var(--cream);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 0.7rem;
}
.press-release h2 em { color: var(--gold); font-style: italic; }
.press-release__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--cream-muted);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.press-release__body p {
  color: var(--cream-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.3rem;
}
.press-release__body blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--gold);
  background: rgba(27,51,82,0.28);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--cream);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.press-release__about, .press-release__contact {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.press-release__about h3, .press-release__contact h3 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}
.press-release__contact a { color: var(--gold); }
.press-release__end {
  text-align: center;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin: 2rem 0 1rem;
  font-size: 0.9rem;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav.is-open .nav__links {
    display: flex;
    position: fixed;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(13,13,13,0.95);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-top: 1px solid var(--border);
    gap: 1.2rem;
    align-items: flex-start;
  }
  .about__grid, .reviews__grid, .recipes__grid, .shop__grid { grid-template-columns: 1fr; }
  .club__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: span 2; }
  .press-index__item {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 1.25rem 1.5rem;
  }
  .hero-video { display: none; }
  .hero { background-size: cover; background-position: center; }
}
@media (max-width: 600px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .section { padding: 4rem 0; }
  .hero__cta-row { flex-direction: column; align-items: stretch; }
  .hero__cta-row .btn { justify-content: center; }
}

/* AOS compatibility fallbacks (visible if JS disabled) */
[data-aos] { transition-property: transform, opacity; }
@media (prefers-reduced-motion: reduce) {
  [data-aos] { transform: none !important; opacity: 1 !important; transition: none !important; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
