/* ============================================
   AUREUM PR — Ultra Premium Spirits
   Noir & Gold Art Deco Luxury
   ============================================ */

:root {
  /* Gold Palette */
  --gold-100: #FAF3E0;
  --gold-200: #E8D5A3;
  --gold-300: #D4B96A;
  --gold-400: #C9A84C;
  --gold-500: #B8942E;
  --gold-600: #8B7332;
  --gold-700: #6B5A28;

  /* Noir Palette */
  --noir-50: #2A2A26;
  --noir-100: #1E1E1A;
  --noir-200: #181816;
  --noir-300: #141412;
  --noir-400: #101010;
  --noir-500: #0A0A0A;
  --noir-600: #060606;

  /* Accent */
  --burgundy: #4A1C2B;
  --cream: #F5F0E8;
  --cream-muted: #D6CFC3;

  /* Semantic */
  --text-primary: var(--cream);
  --text-secondary: var(--cream-muted);
  --text-gold: var(--gold-400);
  --bg-primary: var(--noir-500);
  --bg-elevated: var(--noir-300);
  --bg-card: var(--noir-200);
  --border-subtle: rgba(201, 168, 76, 0.15);
  --border-gold: rgba(201, 168, 76, 0.4);
  --border-gold-strong: rgba(201, 168, 76, 0.7);

  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-body: 'Cormorant Garamond', serif;

  /* Spacing */
  --section-pad: clamp(5rem, 10vw, 9rem);
  --container-max: 1200px;
  --container-pad: clamp(1.5rem, 4vw, 3rem);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --duration-slow: 1s;
  --duration-med: 0.6s;
  --duration-fast: 0.3s;
}

/* ---- Reset ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

.hidden {
  display: none !important;
}

/* ---- Shared Components ---- */
.section-label {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.65rem, 0.8vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-gold);
  margin-bottom: 1.2rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--cream);
  line-height: 1.2;
}

.section-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.8rem;
  margin-bottom: 2.5rem;
}

.section-rule span {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

/* ---- Reveal Animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out-expo),
              transform var(--duration-slow) var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.35s; }
.reveal:nth-child(6) { transition-delay: 0.4s; }
.reveal:nth-child(7) { transition-delay: 0.45s; }

/* ============================================
   AGE GATE
   ============================================ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--noir-600);
  transition: opacity 0.6s var(--ease-out-expo);
}

.age-gate.fade-out {
  opacity: 0;
  pointer-events: none;
}

.age-gate__inner {
  text-align: center;
  padding: 3rem 2.5rem;
  position: relative;
  max-width: 480px;
}

.age-gate__deco-top,
.age-gate__deco-bottom {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  margin: 0 auto 2rem;
}

.age-gate__deco-bottom {
  margin: 2rem auto 0;
}

.age-gate__brand {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--gold-400);
  margin-bottom: 2rem;
}

.age-gate__heading {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.age-gate__question {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.age-gate__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.age-gate__btn {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  transition: all var(--duration-fast) ease;
}

.age-gate__btn--yes {
  border: 1px solid var(--gold-400);
  color: var(--gold-400);
  background: transparent;
}

.age-gate__btn--yes:hover {
  background: var(--gold-400);
  color: var(--noir-500);
}

.age-gate__btn--no {
  border: 1px solid var(--noir-50);
  color: var(--text-secondary);
}

.age-gate__btn--no:hover {
  border-color: var(--text-secondary);
}

.age-gate__denied {
  color: #C97A4C;
  font-size: 0.95rem;
  margin-top: 1.5rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background var(--duration-fast) ease,
              padding var(--duration-fast) ease,
              backdrop-filter var(--duration-fast) ease;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.nav__brand-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold-400);
}

.nav__brand-sub {
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 0.9vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--gold-600);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav__link {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--duration-fast) ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-400);
  transition: width var(--duration-fast) var(--ease-out-expo);
}

.nav__link:hover {
  color: var(--gold-400);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--border-subtle);
  transition: border-color var(--duration-fast) ease;
}

.nav__lang:hover {
  border-color: var(--border-gold);
}

.nav__lang-option {
  cursor: pointer;
  transition: color var(--duration-fast) ease;
}

.nav__lang-option.active {
  color: var(--gold-400);
}

.nav__lang-divider {
  color: var(--noir-50);
  font-weight: 300;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold-400);
  transition: all var(--duration-fast) ease;
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(6, 6, 6, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-med) var(--ease-out-expo);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color var(--duration-fast) ease;
}

.mobile-menu__link:hover {
  color: var(--gold-400);
}

.nav__lang--mobile {
  margin-top: 1rem;
  font-size: 0.8rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(201, 168, 76, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 30% 80%, rgba(74, 28, 43, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--noir-600) 0%, var(--noir-500) 40%, var(--noir-400) 100%);
}

.hero__lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 10%;
  pointer-events: none;
}

.hero__line {
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(201, 168, 76, 0.04) 30%,
    rgba(201, 168, 76, 0.06) 50%,
    rgba(201, 168, 76, 0.04) 70%,
    transparent 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem var(--container-pad);
}

/* Art Deco Corner Frames */
.hero__deco-frame {
  position: absolute;
  inset: -2rem;
  pointer-events: none;
}

.hero__corner {
  position: absolute;
  width: 40px;
  height: 40px;
}

.hero__corner::before,
.hero__corner::after {
  content: '';
  position: absolute;
  background: var(--gold-400);
  opacity: 0.3;
}

.hero__corner--tl { top: 0; left: 0; }
.hero__corner--tl::before { top: 0; left: 0; width: 40px; height: 1px; }
.hero__corner--tl::after { top: 0; left: 0; width: 1px; height: 40px; }

.hero__corner--tr { top: 0; right: 0; }
.hero__corner--tr::before { top: 0; right: 0; width: 40px; height: 1px; }
.hero__corner--tr::after { top: 0; right: 0; width: 1px; height: 40px; }

.hero__corner--bl { bottom: 0; left: 0; }
.hero__corner--bl::before { bottom: 0; left: 0; width: 40px; height: 1px; }
.hero__corner--bl::after { bottom: 0; left: 0; width: 1px; height: 40px; }

.hero__corner--br { bottom: 0; right: 0; }
.hero__corner--br::before { bottom: 0; right: 0; width: 40px; height: 1px; }
.hero__corner--br::after { bottom: 0; right: 0; width: 1px; height: 40px; }

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(0.6rem, 0.9vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 2rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 2rem;
}

.hero__title-line {
  display: block;
  font-size: clamp(3.5rem, 10vw, 9rem);
  letter-spacing: 0.25em;
  color: var(--cream);
  text-shadow:
    0 0 80px rgba(201, 168, 76, 0.15),
    0 0 160px rgba(201, 168, 76, 0.05);
}

.hero__title-accent {
  color: var(--gold-400);
  text-shadow:
    0 0 40px rgba(201, 168, 76, 0.3),
    0 0 80px rgba(201, 168, 76, 0.1);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.hero__cta {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-400);
  border: 1px solid var(--border-gold);
  padding: 1rem 2.5rem;
  transition: all var(--duration-fast) ease;
  position: relative;
  overflow: hidden;
}

.hero__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-med) var(--ease-out-expo);
  z-index: -1;
}

.hero__cta:hover {
  color: var(--noir-500);
  border-color: var(--gold-400);
}

.hero__cta:hover::before {
  transform: scaleX(1);
}

/* Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--gold-400), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: var(--section-pad) 0;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, var(--gold-400), transparent);
  opacity: 0.3;
}

.about__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.about__header {
  text-align: center;
  margin-bottom: 4rem;
}

.about__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.about__paragraph {
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about__paragraph em {
  color: var(--gold-400);
  font-style: italic;
}

.about__stats {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 0.5rem;
  padding-left: clamp(1.5rem, 3vw, 3rem);
  border-left: 1px solid var(--border-subtle);
}

.about__stat {
  display: flex;
  flex-direction: column;
}

.about__stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.about__stat-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ============================================
   COLLECTION
   ============================================ */
.collection {
  padding: var(--section-pad) 0;
  position: relative;
  background:
    radial-gradient(ellipse 50% 30% at 20% 80%, rgba(74, 28, 43, 0.06) 0%, transparent 100%),
    radial-gradient(ellipse 40% 30% at 80% 20%, rgba(201, 168, 76, 0.04) 0%, transparent 100%),
    var(--bg-primary);
}

.collection__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.collection__header {
  text-align: center;
  margin-bottom: 4rem;
}

.collection__intro {
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
  font-weight: 300;
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Spirit Category Card */
.card {
  position: relative;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(20, 20, 18, 0.8));
  border: 1px solid var(--border-subtle);
  transition: all var(--duration-med) var(--ease-out-expo);
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  opacity: 0;
  transition: opacity var(--duration-med) ease;
}

.card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(30, 30, 26, 0.8), rgba(24, 24, 22, 0.9));
  box-shadow: 0 20px 60px -20px rgba(201, 168, 76, 0.08);
}

.card:hover::before {
  opacity: 1;
}

.card__border {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold-400);
  transition: width var(--duration-med) var(--ease-out-expo);
}

.card:hover .card__border {
  width: 60%;
}

.card__icon {
  width: 48px;
  height: 48px;
  color: var(--gold-400);
  margin-bottom: 1.5rem;
  opacity: 0.7;
  transition: opacity var(--duration-fast) ease;
}

.card:hover .card__icon {
  opacity: 1;
}

.card__icon svg {
  width: 100%;
  height: 100%;
}

.card__title {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.card__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--section-pad) 0;
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, var(--gold-400), transparent);
  opacity: 0.3;
}

.contact__container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.contact__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.contact__intro {
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  color: var(--text-secondary);
  font-style: italic;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form__group--full {
  grid-column: 1 / -1;
}

.form__label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-gold);
}

.form__input {
  background: rgba(20, 20, 18, 0.6);
  border: 1px solid var(--border-subtle);
  color: var(--cream);
  padding: 0.9rem 1rem;
  font-size: 1rem;
  font-weight: 300;
  transition: border-color var(--duration-fast) ease,
              box-shadow var(--duration-fast) ease;
  outline: none;
}

.form__input::placeholder {
  color: rgba(214, 207, 195, 0.3);
  font-style: italic;
}

.form__input:focus {
  border-color: var(--border-gold-strong);
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 140px;
}

.form__actions {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.form__submit {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--noir-500);
  background: var(--gold-400);
  border: 1px solid var(--gold-400);
  padding: 1rem 3rem;
  transition: all var(--duration-fast) ease;
  position: relative;
  overflow: hidden;
}

.form__submit:hover {
  background: var(--gold-300);
  border-color: var(--gold-300);
  box-shadow: 0 8px 30px -8px rgba(201, 168, 76, 0.3);
}

.form__submit:active {
  transform: scale(0.98);
}

.form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form__feedback {
  text-align: center;
  padding: 1rem;
  font-size: 0.95rem;
  border: 1px solid;
}

.form__feedback.success {
  color: var(--gold-400);
  border-color: var(--border-gold);
  background: rgba(201, 168, 76, 0.05);
}

.form__feedback.error {
  color: #C97A4C;
  border-color: rgba(201, 122, 76, 0.3);
  background: rgba(201, 122, 76, 0.05);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
  background: var(--noir-600);
}

.footer__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--gold-400);
}

.footer__brand-accent {
  color: var(--gold-600);
  font-weight: 400;
}

.footer__tagline {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  line-height: 1.6;
  font-weight: 300;
  max-width: 320px;
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.2rem;
}

.footer__link {
  display: block;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
  transition: color var(--duration-fast) ease;
  font-weight: 300;
}

.footer__link:hover {
  color: var(--gold-400);
}

.footer__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 0.6rem;
}

.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__legal {
  font-size: 0.85rem;
  color: var(--noir-50);
  font-weight: 300;
}

.footer__age {
  font-size: 0.8rem;
  color: var(--noir-50);
  font-weight: 300;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .about__body {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__stats {
    flex-direction: row;
    flex-wrap: wrap;
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border-subtle);
    padding-top: 2.5rem;
    gap: 2rem;
  }

  .about__stat {
    flex: 1;
    min-width: 120px;
  }

  .collection__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .form__row {
    grid-template-columns: 1fr;
  }

  .collection__grid {
    grid-template-columns: 1fr;
  }

  .hero__deco-frame {
    inset: -1rem;
  }

  .hero__corner {
    width: 25px;
    height: 25px;
  }

  .hero__corner::before { width: 25px !important; }
  .hero__corner::after { height: 25px !important; }

  .about__stats {
    flex-direction: column;
    gap: 2rem;
  }
}

/* ---- Print ---- */
@media print {
  .nav, .hero__scroll-indicator, .age-gate, .mobile-menu {
    display: none;
  }

  body {
    background: white;
    color: #111;
  }
}
